diff --git a/parse/train/BJg_roAcK7/BJg_roAcK7.md b/parse/train/BJg_roAcK7/BJg_roAcK7.md new file mode 100644 index 0000000000000000000000000000000000000000..cde20abab39f5977218014a26c87eb7b790d3e6e --- /dev/null +++ b/parse/train/BJg_roAcK7/BJg_roAcK7.md @@ -0,0 +1,480 @@ +# INVASE: INSTANCE-WISE VARIABLE SELECTION USING NEURAL NETWORKS + +Jinsung Yoon +Department of Electrical and Computer Engineering +UCLA, California, USA +jsyoon0823@g.ucla.edu +James Jordon +Engineering Science Department +University of Oxford, UK +james.jordon@wolfson.ox.ac.uk +Mihaela van der Schaar +University of Cambridge, UK +Department of Electrical and Computer Engineering, UCLA, California, USA +Alan Turing Institute, London, UK +mihaela@ee.ucla.edu + +# ABSTRACT + +The advent of big data brings with it data with more and more dimensions and thus a growing need to be able to efficiently select which features to use for a variety of problems. While global feature selection has been a well-studied problem for quite some time, only recently has the paradigm of instance-wise feature selection been developed. In this paper, we propose a new instance-wise feature selection method, which we term INVASE. INVASE consists of 3 neural networks, a selector network, a predictor network and a baseline network which are used to train the selector network using the actor-critic methodology. Using this methodology, INVASE is capable of flexibly discovering feature subsets of a different size for each instance, which is a key limitation of existing state-of-the-art methods. We demonstrate through a mixture of synthetic and real data experiments that INVASE significantly outperforms state-of-the-art benchmarks. + +# 1 INTRODUCTION + +High-dimensional data is becoming more readily available, and it brings with it a growing need to be able to efficiently select which features to use for a variety of problems. When doing predictions, it is well known that using too many variables with too few samples can lead to overfitting, which can significantly hinder the performance of predictive models. In the realm of interpretability, the large dimensionality of the data is often too much information to present to a human who may be using the machine learning model as a support system. Understanding which features are most relevant to an outcome or to a model output is an important first step in improving predictions and interpretability and many works exist that tackle feature selection on a global level. However, in the heterogeneous data we typically encounter, the prediction made by a model (and indeed the true label) may rely on a different subset of the features for different subgroups within the data [14]. In this paper we propose a novel instance-wise feature selection method, INVASE (INstance-wise VAriable SElection), which attempts to learn which subset of the features is relevant for each sample, allowing us to display the minimal information required to explain each prediction and also to reduce overfitting of predictive models. + +Discovering a global subset of relevant features for a particular task is a well-studied problem and there are several existing methods for solving it such as Sequential Correlation Feature Selection [11], Mutual Information Feature Selection [21], Knockoff models [3], and more [10; 16]. However, global feature selection suffers from a key limitation - the features discovered by global feature selection are the same for all samples. In many cases, in particular when populations are highly heterogeneous, the relevant features may differ across samples [33; 32]. For instance, different patient subgroups have different relevant features for predicting heart failure [14]. Instance-wise feature selection methods such as [4; 27] instead try to discover the features that are relevant for each sample. When the goal is to provide an interpretable explanation of the predictions made, a key challenge is in ensuring that we do not over-explain by providing too much information (i.e. choosing too many features). Naturally, by performing feature selection on an individualized level we are able to select features that are more relevant to each sample, rather than having to choose the top $k$ features globally, which may not explain the predictions for some samples very well, but simply perform well on average across all samples. + +In this paper, we propose a novel instance-wise feature selection method which we term INVASE. We draw influence from actor-critic models [22] to solve the problem of backpropagating through subset sampling. Our model consists of 3 neural networks: a selector network, a predictor network and a baseline network. During training, each of these are trained iteratively, with the selector network being trained to minimize a Kullback-Leibler (KL) divergence between the full conditional distribution and the selected-features-only conditional distribution of the outcome. Our model is capable of discovering a different number of relevant variables for each sample which is a key limitation in existing instance-wise approaches (such as [4]). We show significant improvements over the state-of-the-art in both synthetic data and real-word data in terms of true positive rates, false discovery rates, and show better predictive performance with respect to several prediction metrics. Our model can also be easily extended to handle both continuous and discrete outputs and time-series inputs (see the Appendix for details). + +# 1.1 RELATED WORKS + +There are many existing works on global variable selection (see [10] for a good summary paper). [21] and [11] use max-dependency min-redundancy criteria [17] with mutual information and Pearson correlation, respectively. [3] uses multiple hypothesis testing for global variable selection. As noted above, these global selection methods are not capable of learning sample-specific relevance. + +Instance-wise variable selection is also closely related to model interpretation methods. Some previous works are based on backpropagation from the output of the predictive model to the input variables [29]. DeepLIFT [27] decomposes the output of the neural network on a reference input to compute the contribution of each input variable. However, both methods need white-box access to the pre-trained predictive models to compute the gradient and decomposition. [2] approximates the predictive models using a Parzen window approximator when there is only black-box access to the predictive models. Some other works are based on input perturbation such as [1], [15], [30] and [5]. [18] uses Shapley values to compute the variable importance, and [24] uses locally linear models to explain the linear dependency for each sample. [19] tries to interpret tree ensemble models using Shapley values but cannot generalize to other predictive models such as neural networks. + +Our work is most closely related to L2X (Learning to Explain) [4]. However, there are 3 key differences between our work and theirs. In L2X, they try to maximize a lower bound of the mutual information between the target $Y$ and the selected input variables $X _ { S }$ . In contrast, we try to minimize the KL divergence between the conditional distributions $Y | X$ and $Y | X _ { S }$ . In order to be able to backpropagate through subset sampling, L2X use the Gumbel-softmax trick [13] to approximately discretize the continuous outputs of the neural network. In our work, we use methods from actorcritic models [22] to bypass backpropagation through the sampling and instead use the predictor network to provide a reward to the selector network. Finally, due to the Gumbel-softmax used in L2X, the number of variables to be detected must be fixed in advance and is necessarily the same for every sample. The actor-critic methodology used in our model has no such limitations and so we are able to flexibly select a different number of relevant variables for each sample and instead induce sparsity using an $l _ { 0 }$ penalty term. In fact, using the actor-critic methodology allows us to directly use the $l _ { 0 }$ penalty term (which is not differentiable and therefore not practical to use in general). A summary table highlighting the key features of all of the related works can be found in the Appendix. + +# 2 PROBLEM FORMULATION + +Let ${ \mathcal { X } } = { \mathcal { X } } _ { 1 } \times \ldots \times { \mathcal { X } } _ { d }$ be a $d$ -dimensional feature space and $\boldsymbol { \mathcal { V } } = \{ 1 , . . . , c \}$ be a discrete label space1. Let $\mathbf { X } = ( X _ { 1 } , . . . , X _ { d } ) \in \mathcal { X }$ and $Y \in \mathcal { D }$ be random variables with joint density (or mass) $p$ and marginal densities (or masses) $p _ { X }$ and $p _ { Y }$ respectively. We will refer to $\mathbf { s } \in \{ 0 , 1 \} ^ { d }$ as the selection vector, where $s _ { i } = 1$ will indicate that variable $i$ is selected, and $s _ { i } ~ = ~ 0$ will indicate that variable $i$ is not selected. Let $^ *$ be any point not in any of the spaces $\mathcal { X } _ { 1 } , . . . , \mathcal { X } _ { d }$ and define ${ { \mathcal { X } } _ { i } ^ { * } } = { { \mathcal { X } } _ { i } } \cup \left\{ * \right\}$ and $\mathcal { X } ^ { * } = \mathcal { X } _ { 1 } ^ { * } \times \ldots \times \mathcal { X } _ { d } ^ { * }$ . Given $\mathbf { x } \in \mathcal { X }$ we will write $\mathbf { x } ^ { ( \mathbf { s } ) }$ to denote the suppressed feature vector defined by + +$$ +x _ { i } ^ { ( \mathbf { s } ) } = \left\{ { \atop * \operatorname { i f } s _ { i } = 0 } \right. +$$ + +so that $^ *$ represents that a feature is not selected. + +In the global feature selection literature, the goal is to find the smallest s (i.e. the one with fewest 1s) such that $\mathbb { E } ( Y | \mathbf { X } ^ { ( \mathbf { s } ) } ) = \mathbb { E } ( Y | \mathbf { X } )$ , or equivalently such that the conditional distribution of $Y$ given $\mathbf { X } ^ { ( \mathbf { s } ) }$ is the same as $Y$ given all of $\mathbf { X }$ . Note that this definition is given fully in terms of random variables, rather than realizations of those random variables. + +In contrast, our problem necessarily needs to be defined in terms of realizations since we are aiming to select features for a given realization. We will write $\mathbf { x }$ to denote realizations of the random variable $\mathbf { X }$ . Then we formalize our problem as one of finding a selector function, $S : \mathcal { X } \{ 0 , 1 \} ^ { d }$ such that for almost every $\mathbf { x } \in \mathcal { X }$ (w.r.t. $p _ { X }$ ) we have + +$$ +( Y | \mathbf { X } ^ { ( S ( \mathbf { x } ) ) } = \mathbf { x } ^ { ( S ( \mathbf { x } ) ) } ) \overset { d . } { = } ( Y | \mathbf { X } = \mathbf { x } ) +$$ + +where $\underline { { \underline { { d . } } } }$ denotes equality in distribution and $S ( \mathbf { x } )$ is minimal (i.e. fewest 1s) such that (1) holds. + +We suppose that we have a dataset $\mathbfcal { D } = \{ ( \mathbf { x } _ { j } , y _ { j } ) \} _ { j = 1 } ^ { n }$ consisting of $n$ i.i.d. realizations of the pair $( \mathbf { X } , Y )$ .2 Note that $Y$ can be viewed as having either come from a dataset, in which case the problem is of selecting predictive features, or as having come from a predictive model, in which case the problem is of explaining the model’s predictions. + +# 2.1 OPTIMIZATION PROBLEM + +In order to learn a suitable selector function, we transform the constraint (1) into a soft constraint using the Kullback-Leibler (KL) divergence which, for random variables $W$ and $V$ with densities $p _ { W }$ and $p _ { V }$ is defined as + +$$ +K L ( W | | V ) = \mathbb { E } \left[ \log \left( \frac { p _ { W } ( W ) } { p _ { V } ( W ) } \right) \right] . +$$ + +We define the following loss for our selector function $S$ + +$$ +\mathcal { L } ( S ) = \mathbb { E } _ { \mathbf { x } \sim p _ { X } } \left[ K L ( Y | \mathbf { X } = \mathbf { x } | | Y | \mathbf { X } ^ { ( S ( \mathbf { x } ) ) } = \mathbf { x } ^ { ( S ( \mathbf { x } ) ) } ) + \lambda | | S ( \mathbf { x } ) | | \right] +$$ + +where $| | \cdot | |$ simply denotes the number of non-zero entries of a vector (or equivalently in this case, the number of 1s) and $\lambda$ is a hyper-parameter that trades off between the constraint in (1) and the number of selected features. The KL divergence in (2) can be rewritten as + +$$ +\begin{array} { l } { { \displaystyle K L ( Y | { \bf X } = { \bf x } | | Y | { \bf X } ^ { ( S ( { \bf x } ) ) } = { \bf x } ^ { ( S ( { \bf x } ) ) } ) = \mathbb { E } _ { y \sim Y | { \bf X } = { \bf x } } \left[ \log \left( \frac { p _ { Y } ( y | { \bf x } ) } { p _ { Y } ( y | { \bf x } ^ { ( S ( { \bf x } ) ) } ) } \right) \right] } \ ~ } \\ { { \displaystyle = \mathbb { E } _ { y \sim Y | { \bf X } = { \bf x } } \left[ \log ( p _ { Y } ( y | { \bf x } ) ) - \log ( p _ { Y } ( y | { \bf x } ^ { ( S ( { \bf x } ) ) } ) ) \right] } \ ~ } \\ { { \displaystyle = \int _ { y } p _ { Y } ( y | { \bf x } ) \left[ \log ( p _ { Y } ( y | { \bf x } ) ) - \log ( p _ { Y } ( y | { \bf x } ^ { ( S ( { \bf x } ) ) } ) ) \right] d y } , } \end{array} +$$ + +where $p _ { Y } ( \cdot | \cdot )$ denotes the appropriate conditional densities of $Y$ . We will write + +$$ +l ( \mathbf { x } , \mathbf { s } ) = \int _ { \mathcal { V } } p _ { Y } ( y | \mathbf { x } ) \left[ \log ( p _ { Y } ( y | \mathbf { x } ) ) - \log ( p _ { Y } ( y | \mathbf { x } ^ { ( s ) } ) ) \right] d y +$$ + +so that our final loss can be written as + +$$ +\mathcal { L } ( S ) = \mathbb { E } _ { \mathbf { x } \sim p _ { X } } \left[ l ( \mathbf { x } , S ( \mathbf { x } ) ) + \lambda | | S ( \mathbf { x } ) | | \right] +$$ + +where $| | \cdot | |$ denotes the $l _ { 0 }$ (pseudo-)norm. + +# 3 PROPOSED MODEL + +There are two main challenges in minimizing the loss in (4). First, the output space of the selector function $( \{ 0 , 1 \} ^ { d } )$ is large - its size increases exponentially with the dimension of the feature space; thus a complete search is impractical in high dimensional settings (and it should be noted that it is in high dimensional settings where feature selection is most necessary). Second, we do not have access to the densities $p _ { Y } \big ( \cdot | \mathbf { x } ^ { ( S ( \mathbf { x } ) ) } \big )$ and $p _ { Y } ( y \vert \mathbf { x } )$ required to compute (4). + +# 3.1 LOSS ESTIMATION + +To approximate the densities in (3), we introduce a pair of functions $f ^ { \phi } : \mathcal { X } ^ { * } \times \{ 0 , 1 \} ^ { d } \to [ 0 , 1 ] ^ { c }$ parametrized by $\phi$ and $f ^ { \gamma } : \mathcal { X } \to [ 0 , 1 ] ^ { c }$ parametrized by $\gamma$ that will estimate $p _ { Y } \big ( \cdot | \mathbf { x } ^ { ( S ( \mathbf { x } ) ) } \big )$ and $p _ { Y } ( \cdot | \mathbf { x } )$ respectively. + +# 3.1.1 PREDICTOR NETWORK + +We refer to $f ^ { \phi }$ as the predictor network. This will take as input a suppressed3 feature vector $\mathbf { x } ^ { ( \mathbf { s } ) }$ and its corresponding selection vector s and will output a probability distribution (using a softmax layer) over the $c$ -dimensional output space. + +$f ^ { \phi }$ is trained to minimize the cross entropy loss given by + +$$ +l _ { 1 } ( \phi ) = - \mathbb { E } _ { ( \mathbf { x } , y ) \sim p , \mathbf { s } \sim \pi _ { \theta } ( \mathbf { x } , \cdot ) } \Big [ \sum _ { i = 1 } ^ { c } y _ { i } \log ( f _ { i } ^ { \phi } ( \mathbf { x } ^ { ( \mathbf { s } ) } , \mathbf { s } ) ) \Big ] +$$ + +where $y _ { i }$ is the $i$ th component of the one-hot encoding of $y$ and $\pi _ { \theta }$ is the distribution induced by our selector network which will be defined in the following section. $f ^ { \phi }$ is implemented as a fully connected neural network4. + +# 3.1.2 BASELINE NETWORK + +We refer to $f ^ { \gamma }$ as the baseline network, which is standard in the actor-critic literature for variance reduction. $f ^ { \gamma }$ is implemented as a fully connected neural network and is trained to minimize + +$$ +l _ { 3 } ( \gamma ) = - \mathbb { E } _ { ( \mathbf { x } , y ) \sim p } \Big [ \sum _ { i = 1 } ^ { c } y _ { i } \log ( f _ { i } ^ { \gamma } ( \mathbf { x } ) ) \Big ] . +$$ + +For fixed $\phi , \gamma$ we define our loss estimator, $\hat { l }$ , by + +$$ +\hat { l } ( \mathbf { x } , \mathbf { s } ) = - \left[ \sum _ { i = 1 } ^ { c } y _ { i } \log ( f _ { i } ^ { \phi } ( \mathbf { x ^ { ( s ) } } , \mathbf { s } ) ) - \sum _ { i = 1 } ^ { c } y _ { i } \log ( f _ { i } ^ { \gamma } ( \mathbf { x } ) ) \right] . +$$ + +# 3.2 SELECTOR FUNCTION OPTIMIZATION + +We approximate the selector function $S : \mathcal { X } \{ 0 , 1 \} ^ { d }$ by using a single neural network, $\hat { S } ^ { \theta } : \mathcal { X } $ $[ 0 , 1 ] ^ { \bar { d } }$ parameterized by weights $\theta$ , that outputs a probability for selecting each feature (i.e. the ith component of $\hat { S } ^ { \theta } ( \mathbf { x } )$ will denote the probability with which we select the ith feature). The selector network induces a probability distribution over the selection space $( \{ 0 , 1 \} ^ { d } )$ , with the probability of a given joint selection vector $\mathbf { s } \in \{ 0 , 1 \} ^ { d }$ being given by5 + +$$ +\pi _ { \boldsymbol \theta } ( \mathbf { x } , \mathbf { s } ) = \Pi _ { i = 1 } ^ { d } \hat { S } _ { i } ^ { \theta } ( \mathbf { x } ) ^ { s _ { i } } ( 1 - \hat { S } _ { i } ^ { \theta } ( \mathbf { x } ) ) ^ { 1 - s _ { i } } . +$$ + +![](images/dab836e1e2e287b6c85e1510eb3ffcad658b59e83e87918824fa99ded51229df.jpg) +Figure 1: Block diagram of INVASE. Instances are fed into the selector network which outputs a vector of selection probabilities. The selection vector is then sampled according to these probabilities. The predictor network then receives the selected features and makes a prediction and the baseline network is given the entire feature vector and makes a prediction. Each of these networks are trained using backpropagation using the real label. The loss of the baseline network is then subtracted from the prediction network’s loss and this is used to update the selector network. + +Using this, we define the following loss for our selector network + +$$ +\begin{array} { l } { l _ { 2 } ( \theta ) = \mathbb { E } _ { ( \mathbf { x } , y ) \sim p } \left[ \mathbb { E } _ { \mathbf { s } \sim \pi _ { \theta } ( \mathbf { x } , \cdot ) } \Big [ \hat { l } ( \mathbf { x } , \mathbf { s } ) + \lambda | | \mathbf { s } | | _ { 0 } \Big ] \right] } \\ { \displaystyle = \int _ { \mathcal { X } \times \mathcal { Y } } p ( \mathbf { x } , y ) \left( \sum _ { \mathbf { s } \in \{ 0 , 1 \} ^ { d } } \pi _ { \theta } ( \mathbf { x } , \mathbf { s } ) \left( \hat { l } ( \mathbf { x } , \mathbf { s } ) + \lambda | | \mathbf { s } | | _ { 0 } \right) \right) d x d y . } \end{array} +$$ + +Taking the gradient of this loss with respect to $\theta$ gives us + +$$ +\begin{array} { l } { { \displaystyle \nabla _ { \theta } l _ { 2 } ( \theta ) = \int _ { \mathcal { X } \times \mathcal { Y } } p ( { \bf x } , y ) \left( \sum _ { { \bf s \in \{ 0 , 1 \} } ^ { d } } \nabla _ { \theta } \pi _ { \theta } ( { \bf x } , { \bf s } ) \left( \hat { l } ( { \bf x } , { \bf s } ) + \lambda | | { \bf s } | | _ { 0 } \right) \right) d x d y } \ ~ } \\ { { \displaystyle ~ = \int _ { \mathcal { X } \times \mathcal { Y } } p ( { \bf x } , y ) \left( \sum _ { { \bf s \in \{ 0 , 1 \} } ^ { d } } \frac { \nabla _ { \theta } \pi _ { \theta } ( { \bf x } , { \bf s } ) } { \pi _ { \theta } ( { \bf x } , { \bf s } ) } \pi _ { \theta } ( { \bf x } , { \bf s } ) \left( \hat { l } ( { \bf x } , { \bf s } ) + \lambda | | { \bf s } | | _ { 0 } \right) \right) d x d y } \ ~ } \\ { { \displaystyle ~ = \int _ { \mathcal { X } \times \mathcal { Y } } p ( { \bf x } , y ) \left( \sum _ { { \bf s \in \{ 0 , 1 \} } ^ { d } } \nabla _ { \theta } \log \pi _ { \theta } ( { \bf x } , { \bf s } ) \pi _ { \theta } ( { \bf x } , { \bf s } ) \left( \hat { l } ( { \bf x } , { \bf s } ) + \lambda | | { \bf s } | | _ { 0 } \right) \right) d x d y } \ ~ } \\ { \displaystyle ~ = \mathbb { E } _ { ( { \bf x } , y ) \sim p } \left[ \mathbb { E } _ { { \bf s } \sim \pi _ { \theta } ( { \bf x } , { \bf s } ) } \left[ \left( \hat { l } ( { \bf x } , { \bf s } ) + \lambda | | { \bf s } | | _ { 0 } \right) \nabla _ { \theta } \log \pi _ { \theta } ( { \bf x } , { \bf s } ) \right] \right] . } \end{array} +$$ + +We update each of ${ \hat { S } } ^ { \theta }$ , $f ^ { \phi }$ and $f ^ { \gamma }$ iteratively using stochastic gradient descent. Pseudo-code of INVASE is given in Algorithm 1 and a block representation of INVASE can be found in Fig. 1. + +# 4 EXPERIMENTS + +In this section, we quantitatively evaluate INVASE against various state-of-the-art benchmarks on both synthetic and real-world datasets. We evaluate our performance both at identifying ground truth relevance and at enhancing predictions. We compare our model with 4 global variable selection models: Knockoffs [3], Tree Ensembles (Tree) [7], Sequential Correlation Feature Selection (SCFS) [11], and LASSO regularized linear model; and 3 instance-wise feature selection methods: L2X + +# Algorithm 1 Pseudo-code of INVASE + +1: Inputs: learning rates $\alpha , \beta > 0$ , mini-batch size $n _ { m b } > 0$ , dataset $\mathcal { D }$ +2: Initialize parameters $\theta , \phi , \gamma$ +3: while Converge do +4: Sample a mini-batch from the dataset $( \mathbf { x } _ { j } , y _ { j } ) _ { j = 1 } ^ { n _ { m b } } \sim \mathcal { D }$ +5: for $j = 1 , . . . , n _ { m b }$ do +6: Calculate selection probabilities $( p _ { 1 } ^ { j } , . . . , p _ { d } ^ { j } ) \hat { S } ^ { \theta } ( \mathbf { x } _ { j } )$ +7: Sample selection vector +8: for $i = 1 , . . . , d$ do $s _ { i } ^ { j } \sim B e r ( p _ { i } ^ { j } )$ +9: Calculate loss $\hat { l } _ { j } ( \mathbf { x } _ { j } , \mathbf { s } _ { j } ) \gets - \left[ \sum _ { i = 1 } ^ { c } y _ { i } ^ { j } \log ( f _ { i } ^ { \phi } ( \mathbf { x } _ { j } ^ { ( \mathbf { s } _ { j } ) } , \mathbf { s } _ { j } ) ) - \sum _ { i = 1 } ^ { c } y _ { i } ^ { j } \log ( f _ { i } ^ { \gamma } ( \mathbf { x } _ { j } ) ) \right]$ + +10: Update the selector network parameters $\theta$ + +$$ +\theta \theta - \alpha \frac { 1 } { n _ { m b } } \sum _ { j = 1 } ^ { n _ { m b } } ( \hat { l } _ { j } ( \mathbf { x } _ { j } , \mathbf { s } _ { j } ) + \lambda | | \mathbf { s } _ { j } | | ) \nabla _ { \theta } \log \pi _ { \theta } ( \mathbf { x } _ { j } , \mathbf { s } _ { j } ) +$$ + +11: Update the predictor network parameters $\phi$ + +$$ +\phi \phi - \beta \frac { 1 } { n _ { m b } } \sum _ { j = 1 } ^ { n _ { m b } } \sum _ { i = 1 } ^ { c } y _ { i } ^ { j } \times \nabla _ { \phi } \log ( f _ { i } ^ { \phi } ( \mathbf { x } _ { j } ^ { ( \mathbf { s } _ { j } ) } , \mathbf { s } _ { j } ) ) +$$ + +12: Update the baseline network parameters $\gamma$ + +$$ +\gamma \gamma - \beta \frac { 1 } { n _ { m b } } \sum _ { j = 1 } ^ { n _ { m b } } \sum _ { i = 1 } ^ { c } y _ { i } ^ { j } \times \nabla _ { \gamma } \log ( f _ { i } ^ { \gamma } ( \mathbf { x } _ { j } ) ) +$$ + +[4], LIME [24], and Shapley [18]. The details of benchmark implementation can be found in the appendix. Implementation of INVASE can be found at https://github.com/jsyoon0823/ INVASE. + +# 4.1 SYNTHETIC DATA EXPERIMENTS + +# 4.1.1 EXPERIMENTAL SETTINGS + +For our first set of experiments, we use the same synthetic data generation models as in L2X [4]. The input features are generated from an 11-dimensional67 Gaussian distribution with no correlations across the features $( \mathbf { X } \sim \mathcal { N } ( \mathbf { 0 } , \mathbf { I } ) )$ . The label $Y$ is sampled as a Bernoulli random variable with $\begin{array} { r } { \mathbb { P } ( Y = 1 | \mathbf { X } ) = \frac { 1 } { 1 + \mathrm { l o g i t } ( \mathbf { X } ) } } \end{array}$ , where logit $( \mathbf { X } )$ is varied to create 3 different synthetic datasets: + +• Syn1: $\exp ( X _ { 1 } X _ { 2 } )$ +• Syn2: $\textstyle \exp ( \sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )$ +• Syn3: $- 1 0 \times \sin 2 X _ { 7 } + 2 | X _ { 8 } | + X _ { 9 } + \exp ( - X _ { 1 0 } )$ + +In each of these datasets, the label depends on the same subset of features for every sample. To highlight the capability of INVASE to detect instance-wise dependence, we generate 3 further synthetic datasets as follows: + +• Syn4: If $X _ { 1 1 } < 0$ , logit follows Syn1, otherwise, logit follows Syn2. +• Syn5: If $X _ { 1 1 } < 0$ , logit follows Syn1, otherwise, logit follows Syn3. +• Syn6: If $X _ { 1 1 } < 0$ , logit follows Syn2, otherwise, logit follows Syn3. + +Note that in Syn4 and Syn5, the number of relevant features is different for different samples. + +For each of Syn1 to Syn6 we draw 20,000 samples from the data generation model and separate each into trainingwe try to fin $( \mathcal { D } _ { t r a i n } { \bf \bar { \alpha } } = ( { \bf x } _ { i } , y _ { i } ) _ { i = 1 } ^ { 1 0 0 0 0 } )$ and testingures for each $( \mathcal { D } _ { t e s t } = ( \mathbf { \bar { x } } _ { j } ^ { - } , y _ { j } ) _ { j = 1 } ^ { 1 0 0 0 0 } )$ sets. For each methodfor Syn1, Syn2, Syn3, $k$ $k = 4$ Syn4, Syn5 and $k = 5$ for Syn6), note, however, that $k$ is not given as an input to INVASE (but is necessary for other methods). The performance metrics we use are the true positive rate (TPR) (higher is better) and false discovery rate $\mathrm { ( F D R ) } ^ { 8 }$ (lower is better) to measure the performance of the methods when the focus is on discovery (i.e. discovering which features are relevant) and we use Area Under the Receiver Operating Characteristic Curve (AUROC), Area Under the Precision Recall Curve (AUPRC) and accuracy when the focus is on predictions. + +# 4.1.2 DISCOVERY + +Table 1: Relevant feature discovery results for Synthetic datasets with 11 features + +
DatasetSyn1Syn2Syn3Syn4Syn5Syn6
Metrics (%)TPRFDRTPRFDRTPRFDRTPRFDRTPRFDRTPRFDR
INVASE100.00.0100.00.092.00.099.810.384.81.190.17.4
L2X LIME100.0 13.80.0 86.2100.0 100.00.0 0.069.4 98.130.6 1.979.5 40.721.8 49.474.8 41.126.3 50.683.3 50.516.7 49.5
Shapley Knockoff60.4 10.039.6 70.093.3 8.76.7 36.290.9 81.29.1 17.565.2 38.831.9 35.162.9 41.033.7 51.171.2 56.628.8 42.1
Tree100.00.0100.00.0100.00.054.739.056.840.0
37.560.0
SCFS23.539.5
76.560.578.322.048.952.442.451.256.143.9
LASSO19.081.039.860.278.321.749.950.945.548.256.443.6
+ +As demonstrated by Table 1, our method is capable of detecting relevant features on a global level (Syn1, Syn2 and Syn3) as well as on an instance-wise level (Syn4, Syn5 and Syn6) outperforming all other methods in both cases (both global and instance-wise methods). The particularly poor performance of some global feature selection methods in Syn1, Syn2 and Syn3 (where there is no instance-wise relevance) is due to the non-linearity of the relationship between features and labels, further details can be found in the Appendix. + +The results for Syn4, Syn5 and Syn6 demonstrate that INVASE is capable of detecting a different number of relevant features for each sample when necessary - the performance improvement over L2X is greater in Syn4 and Syn5 than Syn6. In particular, in Syn4, L2X is forced to overselect features when $X _ { 1 1 } ~ < ~ 0$ and underselect when $X _ { 1 1 } \geq 0$ thus resulting in higher FDR and lower TPR, respectively. To highlight this, in Table 2 we report the group specific FDR and TPR on Syn4 and Syn5 when setting $k = 3 , 4 , 5$ , where Group 1 refers to samples with $X _ { 1 1 } < 0$ and Group 2 to samples with $X _ { 1 1 } \geq 0$ . + +For $k = 3$ in Syn4, we see that INVASE and L2X have comparable FDR in Group 1, since the total number of relevant features for each sample is 3 $( X _ { 1 } , X _ { 2 } , X _ { 1 1 } )$ . However, when we increase $k$ , we see that the FDR increases for L2X as it is forced to select more than 3 features, which necessarily means that the FDR must be at least $40 \%$ even if L2X was finding the relevant features perfectly. On the other hand, for Group 2 we see that the TPR is low for $k = 3$ since necessarily, L2X cannot possibly select all of the 5 relevant features. INVASE, however, is able to select the correct number in both and hence enjoys low FDR and high TPR. + +Syn5 reinforces the conclusions we drew for L2X in Syn4. Interestingly, though, for INVASE, we found that $X _ { 1 1 }$ was almost never selected for Group 1 in Syn5. We believe this is because the lack of overlap between the relevant features for each group means that the predictor network can essentially learn two separate networks - one for each group. This is because it is possible to create two subnetworks with non-overlapping weights that each take as input the features of a given group. $X _ { 1 1 }$ is therefore unnecessary for prediction. Note, however, that $X _ { 1 1 }$ is highly relevant for the selector network in deciding which features to pass on and so it is not true that $X _ { 1 1 }$ isn’t relevant, but simply that the selector network does not need to “pass on” its relevance to the predictor network. To investigate this further, results for settings where the features overlap between groups (and so it is not possible to disentangle the networks) can be found in the Appendix. + +Table 2: Detailed comparison of INVASE with L2X in Syn4 and Syn5, highlighting the capability of INVASE to select a flexible number of features for each sample. Group 1: $X _ { 1 1 } < 0$ , Group 2: $X _ { 1 1 } \geq 0$ + +
DatasetsSyn4Syn5
Group1212
Metrics (%)TPRFDRTPRFDRTPRFDRTPRFDR
INVASE99.524.6100.00.41 69.21.699.80.6
L2X (k = 3)71.128.957.24.665.534.555.47.7
L2X (k = 4)81.039.274.96.376.242.972.49.4
L2X(k = 5)89.946.084.615.487.547.582.117.9
+ +# 4.1.3 PREDICTION + +In this experiment we analyze the effect of using feature selection as a pre-processing step for prediction. We first perform feature selection (either instance-wise or global) and then train a 3-layer fully connected network with Batch Normalization [12] in every layer (to avoid overfitting) to perform predictions on top of the (feature-selected) data. In this setting we compare the two global feature selection methods (LASSO and Tree) and one instance-wise feature selection method (L2X). Furthermore, we also compare with the predictive model without any feature selections (w/o FS) and the predictive model with ground truth globally relevant features9 (with Global). In particular, this allows us to demonstrate that the improvements in prediction performance are not just because the global feature selection performed implicitly by INVASE is better than the other global feature selection methods but are also due to the fact that we select features on an instance-wise level. Experiments here are conducted on synthetic data with 100 features but the same labelling procedures as above. + +As can be seen in Table 3, there is a significant performance improvement when discarding all of the irrelevant features (with Global). However, neither of the global feature selection methods (Tree and Lasso) are capable of achieving this improvement. On the other hand, INVASE is capable of achieving (and beating - in Syn4 and Syn6) this improvement, demonstrating its capability both at selecting features globally better than existing methods but also at improving on global selection with instance-wise selection (where relevant), to provide further improvements. On the other hand, $L 2 X$ performs worse than the global methods in Syn1-3, demonstrating an inability to perform even global feature selection in this higher dimensional setting (this is supported by the high dimensional discovery results in the Appendix), and in Syn4-6 is performing worse than with Global (which now is not even optimal). + +Furthermore, even though we include Batch Normalization to avoid overfitting, with a small number of samples and high number of dimensions, the 3-layer fully connected network still suffers from overfitting as demonstrated by the significant difference in performance between w/o FS and with Global. This demonstrates the necessity of feature selection as a pre-processing step. Lastly, in comparison to with Global, with INVASE achieves performance gains in Syn4 and Syn6. It quantitatively shows that instance-wise feature selection can further improves the predictive model from ground truth global feature selection. + +Table 3: Prediction performance comparison with and without feature selection methods (L2X, LASSO, Tree, INVASE, and Global). Global is using ground-truth globally relevant features for each dataset + +
DatasetAUROC
w/o FSwith Globalwith INVASEwith Treewith L2Xwith LASSO
Syn1.578±.004.686±.005.690±.006.574±.101.498±.005.498±.006
Syn2.789±.003.873±.003.877±.003.872±.003.823±.029.555±.061
Syn3.854±.004.900±.003.902±.003.899±.001.862±.009.886±.003
Syn4.558±.021.774±.006.787±.004.684±.017.678±.024.514±.031
Syn5.662±.013.784±.005 .858±.004.784±.005.741±.004.709±.008.691±.024
Syn6.692±.015.877±.003.771±.031.827±.017.727±.025
DatasetAUPRC
w/o FSwith Globalwith INVASEwith Treewith L2Xwith LASSO
Syn1.567±.007.690±.006.694±.006.577±.102.498±.007.499±.008
Syn2.799±.005.878±.005.886±.004.878±.004.817±.031.591±.037
Syn3.861±.003.905±.002.907±.003.904±.002.860±.012.890±.002
Syn4.572±.019.794±.006.804±.004.681±.031.672±.025.536±.025
Syn5.665±.019.796±.005.797±.006.765±.003.719±.011.680±.040
Syn6.709±.018.870±.005.886±.004.779±.027.835±.017.757±.036
+ +# 4.2 REAL-WORLD DATA EXPERIMENTS + +# 4.2.1 DATA DESCRIPTION + +In this section we use two real-world datasets to perform a series of further experiments. The first, the Meta-Analysis Global Group in Chronic Heart Failure (MAGGIC) dataset [23], has 40,409 patients each with 31 measured features. The label is all-cause mortality. The second, the Prostate, Lung, Colorectal and Ovarian (PLCO) Cancer Screening Trial in the US and the European Randomized Study of Screening for Prostate Cancer (ERSPC) dataset [8; 26] contains 38,001 each with 106 measured features. The label in this dataset is mortality due to prostate cancer. We refer to this as the PLCO dataset. + +The first experiment we carried out was to create semi-synthetic datasets by using the labelling procedures Syn1-6 from above but with the features now coming from real data (instead of being i.i.d. Gaussian). The results of this experiment can be found in the Appendix. + +# 4.2.2 THE DISCOVERED FEATURE IMPORTANCE IN MAGGIC DATASET + +In this next experiment, we visualize the ability of INVASE to select features on an individualized level. Fig. 2(left) shows the selection probability (given by INVASE) of each feature for 20 randomly selected patients in the MAGGIC dataset. Fig. 2(right) shows the selection probability of each feature averaged over different binary splits of the data (i.e. when split into Male and Female). In Table 4, we also report the mean and variance of the number of selected features in each subgroup. + +As can be seen, INVASE discovers significantly different features for both individuals and for different subgroups of the dataset. + +# 4.2.3 RESULTS: PREDICTION USING REAL DATA VARIABLES WITH REAL LABEL + +Evaluating the performance of feature selection methods on real data is difficult, since ground truth relevance is often not known. We therefore cannot use TPR and FDR to evaluate the performance on real data. In our final experiment, therefore, we instead focus on prediction performance exactly as in 4.1.3 (except now both the features and label come from real data). + +![](images/d1951e735951992fdbed0a447435470530b7108fcf6a6da51afe008e69ba6a2e.jpg) +Figure 2: Left: The feature importance for each of 20 randomly selected patients in the MAGGIC dataset. Right: The average feature importance for different binary splits in the MAGGIC dataset. + +Table 4: Selection probability of overall and patient subgroups by INVASE in MAGGIC dataset. (Mean $\pm$ Std) + +
OverallMaleDiabetesHypertensionSmokerHeart Failure
42.5±18.443.5±10.7 53.2±10.846.6±9.3 41.0±12.151.8±11.1
FemaleNon-diabetesNon-hypertension Non-smokerNo Heart Failure
40.8±15.639.3±8.040.0±9.343.2±7.039.6±6.9
+ +Table 5: Prediction performance for MAGGIC and PLCO dataset. + +
DatasetsMetricsAUROC AUPRCAUROC AUPRC
Labels3year5year
MAGGICINVASEWithout INVASE.722±.005.720±.006.655±.010.639±.009.740±.005 .867±.006.730±.006 .855±.004
Labels5year10 year
PLCOINVASEWithout INVASE.637±.007.629±.008.329±.013.324±.011.673±.007.657±.006.506±.006.485±.008
+ +As can be seen in Table 5, INVASE consistently improves prediction performance in each of the two settings (different time horizons) in each dataset. + +# 5 FUTURE WORK + +While this paper has focused on discovering relevant features in the static setting, this could also be extended to apply in the temporal setting. One such avenue of exploration for this would be to replace each of the networks with an RNN. Particular care will need to be taken in defining the problem, though; do we treat each stream as a feature or each time point of each stream? We leave this investigation to future work. + +# ACKNOWLEDGEMENT + +The authors would like to thank the reviewers for their helpful comments. The research presented in this paper was supported by the Office of Naval Research (ONR) and the NSF (Grant number: ECCS1462245, ECCS1533983, and ECCS1407712). + +REFERENCES +[1] Sebastian Bach, Alexander Binder, Gregoire Montavon, Frederick Klauschen, Klaus-Robert ´ Muller, and Wojciech Samek. On pixel-wise explanations for non-linear classifier decisions by ¨ layer-wise relevance propagation. PloS one, 10(7):e0130140, 2015. +[2] David Baehrens, Timon Schroeter, Stefan Harmeling, Motoaki Kawanabe, Katja Hansen, and Klaus-Robert MA˜ zller. How to explain individual classification decisions. ˇ Journal of Machine Learning Research, 11(Jun):1803–1831, 2010. +[3] Emmanuel Candes, Yingying Fan, Lucas Janson, and Jinchi Lv. Panning for gold: \` Model-free knockoffs for high-dimensional controlled variable selection. arXiv preprint arXiv:1610.02351, 2016. +[4] Jianbo Chen, Le Song, Martin J Wainwright, and Michael I Jordan. Learning to explain: An information-theoretic perspective on model interpretation. arXiv preprint arXiv:1802.07814, 2018. +[5] Anupam Datta, Shayak Sen, and Yair Zick. Algorithmic transparency via quantitative input influence: Theory and experiments with learning systems. In Security and Privacy (SP), 2016 IEEE Symposium on, pp. 598–617. IEEE, 2016. +[6] Jeremy Elson, John JD Douceur, Jon Howell, and Jared Saul. Asirra: a captcha that exploits interest-aligned manual image categorization. 2007. +[7] Pierre Geurts, Damien Ernst, and Louis Wehenkel. Extremely randomized trees. Machine learning, 63(1):3–42, 2006. +[8] John K Gohagan, Philip C Prorok, Richard B Hayes, and Barnett-S Kramer. The prostate, lung, colorectal and ovarian (plco) cancer screening trial of the national cancer institute: history, organization, and status. Controlled clinical trials, 21(6):251S–272S, 2000. +[9] Ian Goodfellow, Yoshua Bengio, and Aaron Courville. Deep Learning. MIT Press, 2016. http://www.deeplearningbook.org. +[10] Isabelle Guyon and Andre Elisseeff. An introduction to variable and feature selection. ´ Journal of machine learning research, 3(Mar):1157–1182, 2003. +[11] Mark Andrew Hall. Correlation-based feature selection for machine learning. 1999. +[12] Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. arXiv preprint arXiv:1502.03167, 2015. +[13] Eric Jang, Shixiang Gu, and Ben Poole. Categorical reparameterization with gumbel-softmax. arXiv preprint arXiv:1611.01144, 2016. +[14] David P Kao, James D Lewsey, Inder S Anand, Barry M Massie, Michael R Zile, Peter E Carson, Robert S McKelvie, Michel Komajda, John JV McMurray, and JoAnn Lindenfeld. Characterization of subgroups of heart failure patients with preserved ejection fraction with possible implications for prognosis and treatment response. European journal of heart failure, 17(9):925–935, 2015. +[15] Pieter-Jan Kindermans, Kristof Schutt, Klaus-Robert M ¨ uller, and Sven D ¨ ahne. Investigating ¨ the influence of noise and distractors on the interpretation of neural networks. arXiv preprint arXiv:1611.07270, 2016. + +[16] Kenji Kira and Larry A Rendell. A practical approach to feature selection. In Machine Learning Proceedings 1992, pp. 249–256. Elsevier, 1992. + +[17] Yaojin Lin, Qinghua Hu, Jinghua Liu, and Jie Duan. Multi-label feature selection based on max-dependency and min-redundancy. Neurocomputing, 168:92–103, 2015. + +[18] Scott M Lundberg and Su-In Lee. A unified approach to interpreting model predictions. In Advances in Neural Information Processing Systems, pp. 4765–4774, 2017. + +[19] Scott M Lundberg, Gabriel G Erion, and Su-In Lee. Consistent individualized feature attribution for tree ensembles. arXiv preprint arXiv:1802.03888, 2018. + +[20] Omkar M Parkhi, Andrea Vedaldi, Andrew Zisserman, and CV Jawahar. Cats and dogs. In Computer Vision and Pattern Recognition (CVPR), 2012 IEEE Conference on, pp. 3498–3505. IEEE, 2012. + +[21] Hanchuan Peng, Fuhui Long, and Chris Ding. Feature selection based on mutual information criteria of max-dependency, max-relevance, and min-redundancy. IEEE Transactions on pattern analysis and machine intelligence, 27(8):1226–1238, 2005. + +[22] Jan Peters and Stefan Schaal. Natural actor-critic. Neurocomputing, 71(7-9):1180–1190, 2008. + +[23] Stuart J Pocock, Cono A Ariti, John JV McMurray, Aldo Maggioni, Lars Køber, Iain B Squire, Karl Swedberg, Joanna Dobson, Katrina K Poppe, Gillian A Whalley, et al. Predicting survival in heart failure: a risk score based on 39 372 patients from 30 studies. European heart journal, 34(19):1404–1413, 2012. + +[24] Marco Tulio Ribeiro, Sameer Singh, and Carlos Guestrin. Why should i trust you?: Explaining the predictions of any classifier. In Proceedings of the 22nd ACM SIGKDD international conference on knowledge discovery and data mining, pp. 1135–1144. ACM, 2016. + +[25] Olaf Ronneberger, Philipp Fischer, and Thomas Brox. U-net: Convolutional networks for biomedical image segmentation. In International Conference on Medical image computing and computer-assisted intervention, pp. 234–241. Springer, 2015. + +[26] Fritz H Schroder, Jonas Hugosson, Monique J Roobol, Teuvo LJ Tammela, Stefano Ciatto, ¨ Vera Nelen, Maciej Kwiatkowski, Marcos Lujan, Hans Lilja, Marco Zappa, et al. Screening and prostate-cancer mortality in a randomized european study. New England Journal of Medicine, 360(13):1320–1328, 2009. + +[27] Avanti Shrikumar, Peyton Greenside, and Anshul Kundaje. Learning important features through propagating activation differences. arXiv preprint arXiv:1704.02685, 2017. + +[28] Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. arXiv preprint arXiv:1409.1556, 2014. + +[29] Karen Simonyan, Andrea Vedaldi, and Andrew Zisserman. Deep inside convolutional networks: Visualising image classification models and saliency maps. arXiv preprint arXiv:1312.6034, 2013. + +[30] Erik Strumbelj and Igor Kononenko. Explaining prediction models and individual predictions ˇ with feature contributions. Knowledge and information systems, 41(3):647–665, 2014. + +[31] Robert Tibshirani. Regression shrinkage and selection via the lasso. Journal of the Royal Statistical Society. Series B (Methodological), pp. 267–288, 1996. + +[32] Jinsung Yoon, William R Zame, Amitava Banerjee, Martin Cadeiras, Ahmed M Alaa, and Mihaela van der Schaar. Personalized survival predictions via trees of predictors: An application to cardiac transplantation. PloS one, 13(3):e0194985, 2018. + +[33] Jinsung Yoon, William R Zame, and Mihaela van der Schaar. Tops: Ensemble learning with trees of predictors. IEEE Transactions on Signal Processing, 66(8):2141–2152, 2018. + +# APPENDIX + +# SUMMARY OF RELATED WORKS + +
Key ideasExperimentsshownGlobal/Instance-wiseModelagnostic#of relevantfeatures
SCFS[11]Max-dependency min-redundancycriteria with Pearson correlationsFeature selectionGlobalYesNot needed
MIFS[21]Max-dependency min-redundancycriteria with Mutual InformationFeature selectionGlobalYesNot needed
LASSO[31]Linear regressionwith l1-norm penaltyFeature selectionPredictionGlobalYesNot needed
Knock-off[3]Comparison between knock-offvariablesand real variablesFeature selectionHypothesis testGlobalYesNot needed
L2X[4]Mutual Information maximizationwith Gumbel-softmaxInterpretationInstance-wiseYesShould begiven
LIME[24]Locally linearapproximationInterpretationInstance-wiseYesShould begiven
Shapley[18]Shapley value estimationto quantify feature importanceFeature selectionInstance-wiseYesShould begiven
DeepLIFT[27]Decompose the output ofNN on a reference inputInterpretationInstance-wiseNoShould begiven
Saliency[29]Backpropagation from theoutput of the NN to the inputInterpretationInstance-wiseNoShould begiven
Tree SHAP[19]Shapley value estimationonly for tree-ensemble modelsInterpretationInstance-wiseNoShould begiven
Pixel-wise[1]Measuring the effects onthe output using input perturbationInterpretationInstance-wiseNoShould begiven
INVASE(Ours)Minimize KL divergence usingdeep NN influenced byactor-critic modelsFeature selectionInterpretationPredictionInstance-wiseYesNot needed
+ +Table 6: Summary of the related works. (NN: Neural networks, KL: Kullback-Leibler) + +# EXTENDING INVASE TO REGRESSION + +To extend our model to the setting where $Y$ is continuous (regression problem), we replace the estimated loss with the reconstruction error as follows. + +$$ +\hat { l } ( { \bf x } , { \bf s } ) = - | | y - f ^ { \phi } ( { \bf x } , { \bf s } ) | | _ { 2 } +$$ + +where $f ^ { \phi } : \mathcal { X } \mathbb { R }$ is now the (continuous) predictor function trained to minimize the $\ell _ { 2 }$ -norm between its outputs and the real labels. As noted in [9], when the distribution of $Y$ given $\mathbf { X }$ is Gaussian, minimizing the $l _ { 2 }$ -norm is equivalent to minimizing the KL divergence. + +# DETAILS OF INVASE + +In the experiments, the depth of the selector, predictor, and baseline networks is set to 3. The number of hidden nodes in each layer is $d$ and $2 d$ , respectively. We use either ReLu or SeLu as the activation functions of each layer except for the output layer where we use the sigmoid activation function for the selector network and softmax activation function for the predictor and baseline networks. The number of samples in each mini-batch is 1000 for the selector, predictor, and baseline networks. We use cross-validation to select $\lambda$ among $\{ 0 . 1 , 0 . 3 , 0 . 5 , 1 , 2 , 5 , 1 0 \}$ . We use tensorflow to implement INVASE. The source-code can be found at https://github.com/iclr2018invase/ INVASE/. + +# DETAILS OF BENCHMARKS + +We use the following links for the implementations of 7 benchmarks. + +• L2X: https://github.com/Jianbo-Lab/L2X +• LIME: https://github.com/marcotcr/lime +• Shapley: https://github.com/slundberg/shap +• Knock-off: http://web.stanford.edu/group/candes/knockoffs/ software/knockoff/ +• Tree: http://scikit-learn.org/stable/modules/generated/ sklearn.ensemble.ExtraTreesClassifier.html +• LASSO: http://scikit-learn.org/stable/modules/linear_model. html#lasso + +For L2X, we use the same network settings used in INVASE for fair comparisons. For SCFS, we explicitly implement from the reference ([11]). + +# HIGH DIMENSIONAL DISCOVERY + +To demonstrate the scalability of our method, we run an experiment in which we increase the total number of features to 100. The features are generated as a 100-dimensional Gaussian with no correlations $( \mathcal { N } ( \mathbf { 0 } , \mathbf { I } ) )$ and the relationships between features and label remains as in Table 1 in the main manucript (i.e. we are adding 89 additional noisy signals that have no effect on the label). + +Table 7: Relevant feature discovery for synthetic datasets with 100 features + +
DatasetSyn1Syn2Syn3Syn4Syn5Syn6
Metrics (%) TPRFDRTPRFDRTPRFDRTPRFDRTPRFDRTPRFDR
INVASE100.00.0100.00.0100.00.066.340.573.223.790.515.4
L2X6.193.981.418.657.742.348.546.435.460.866.333.7
LIME0.0100.0 95.6100.0 95.10.092.77.343.847.442.350.150.149.9
Shapley4.44.988.811.250.243.449.944.262.537.5
Knock off0.064.93.771.274.924.928.259.833.159.446.953.0
Tree49.950.1100.00.0100.00.040.749.556.737.558.441.6
SCFS2.597.55.394.774.925.127.074.630.662.138.361.7
LASSO2.597.54.096.075.324.728.373.236.056.945.954.1
+ +As can be seen in Table 7, INVASE also works consistently better than all other benchmarks in all 6 synthetic datasets in this setting. In fact, we see a significant reduction in performance (compared to the 11 feature setting) for L2X in Syn1, with the TPR dropping more than $90 \%$ leading to an almost complete failure of the method to detect any relevant features. In particular, we see that L2X does not scale as well as INVASE with the dimensionality of the data, which is particularly limiting for a feature selection method. + +We also compare the CPU times of the algorithm for training and testing with other instance-wise feature selection benchmarks to show the scalability in terms of computational complexity. As can be seen in Table 8, INVASE is much faster (10 times) than LIME and Shapley methods and comparable with L2X; we see that INVASE takes approximately $50 \%$ longer to run than L2X, which can be accounted for by the addition of a 3rd network (the baseline network) in INVASE that is not present in L2X. Note, however, that this baseline network can be trained in parallel with the predictor network and we believe that doing so would lead to both INVASE and L2X having the same run-time. + +Table 8: Comparison of CPU clock time across different instance-wise feature selection methods on average across Syn1 to Syn6 with 100 features and 10,000 samples on training/testing, respectively + +
MethodsINVASEL2XShapleyLIME
TrainTest1327.69s0.38s939.82s0.78s12801.21s0.06s-18931.98s
+ +# HYPER-PARAMETER ANALYSIS + +In the following experiment, we provide results for various values of the hyper-parameter, $\lambda$ , in the Syn4, Syn5, and Syn6 100-dimensional setting. Table 9 gives the results in terms of TPR and FDR. Note that in the other experiments, we select the hyper-parameter $\lambda$ which maximizes the predictor accuracy in terms of AUROC. + +
DatasetsSyn4Syn5Syn6
X/Metris (%)TPRFDRTPRFDRTPRFDR
0.198.094.390.093.499.292.3
0.393.787.984.288.996.986.7
0.599.043.188.350.699.631.7
166.340.573.223.790.515.4
20.00.025.44.167.13.6
50.00.07.52.77.62.5
100.00.00.00.00.00.0
+ +Table 9: Relevant feature discovery results for various values of the hyper-parameter $\lambda$ in the Syn4, Syn5, and Syn6 100-dimensional setting. + +# ADDITIONAL RESULTS ON COMPLEX SYNTHETIC DATASETS + +In the main paper, the relevant subset for a sample in each of our variable synthetic datasets (Syn4- 6) depended on $X _ { 1 1 }$ only, which was unused in the rest of the model (i.e. $X _ { 1 1 }$ determined only the relevant subset, and was otherwise unused as a predictive variable). In this set of experiments, we investigate the effect of having the subset relevance depend on a variable that is also used in the model itself (Syn4A, Syn5A, Syn6A). We then investigate the effect of having more than one variable being used to determine subset relevance (Syn4B, Syn5B, Syn6B, Syn7). The results for these are reported in Tables 10 and 11, respectively. + +The input features are generated from a 100-dimensional Gaussian distribution with no correlations across the features $( \mathbf { X } \sim \mathcal { N } ( \mathbf { 0 } , \mathbf { I } ) )$ . $Y$ is generated according to $\begin{array} { r } { \mathbb { P } ( Y = 1 | \mathbf { X } ) = \frac { 1 } { 1 + \mathrm { l o g i t } ( \mathbf { X } ) } } \end{array}$ with the logit value for each synthetic dataset now defined as follows: + +• Syn4A: If $X _ { 1 } < 0$ , ${ \mathrm { l o g i t } } = \exp ( X _ { 1 } X _ { 2 } )$ , otherwise, logit $= \textstyle \exp ( \sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )$ . +• Syn5A: If $X _ { 1 } < 0$ , ${ \mathrm { l o g i t } } = \exp ( X _ { 1 } X _ { 2 } )$ , otherwise, logi $\mathrm { t = - 1 0 } \times \sin 2 X _ { 7 } + 2 | X _ { 8 } | + X _ { 9 } +$ $\exp ( - X _ { 1 0 } )$ . +• $X _ { 7 } < 0$ , $\scriptstyle { \mathrm { l o g i t } } = \exp ( \sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )$ , otherwise, logi $\mathrel { \mathop { : = } } - 1 0 \times \sin 2 X _ { 7 } + 2 | X _ { 8 } | +$ $X _ { 9 } + \exp ( - X _ { 1 0 } )$ + +Table 10: Relevant feature discovery results for complex synthetic datasets (Syn4A, 5A, 6A) with 100 features + +
Dataset 1Syn4ASyn5ASyn6A
Metrics (%)TPRFDRTPRFDRTPRFDR
INVASE+77.514.585.98.889.97.3
L2X65.039.348.057.474.435.5
LIME Shapley56.3 71.849.2 39.858.2 71.048.8 41.358.9 68.947.8 38.2
Knock off59.862.655.049.965.040.0
Tree61.346.975.639.466.940.0
SCFS52.866.955.350.650.451.8
LASSO61.061.255.050.053.948.8
+ +• Syn4B: If $X _ { 1 } X _ { 3 } < 0$ , ${ \mathrm { l o g i t } } = \exp ( X _ { 1 } X _ { 2 } )$ , otherwise, logit $= \textstyle \exp ( \sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )$ + +• Syn5B: If $X _ { 1 } X _ { 7 } < 0$ , ${ \mathrm { l o g i t } } = \exp ( X _ { 1 } X _ { 2 } )$ , otherwise, logit $= - 1 0 \times \sin 2 X _ { 7 } + 2 | X _ { 8 } | +$ $X _ { 9 } + \exp ( - X _ { 1 0 } )$ . + +• Syn6B: If $X _ { 3 } X _ { 7 } \ < \ 0$ , logit $= \textstyle \exp ( \sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )$ , otherwise, logit $= - 1 0 \times \sin 2 X _ { 7 } +$ $2 | X _ { 8 } | + X _ { 9 } + \exp ( - X _ { 1 0 } )$ . + +• Syn7: + +– If $X _ { 1 } < 0 , X _ { 2 } < 0$ , ${ \mathrm { l o g i t } } = \exp ( X _ { 1 } X _ { 2 } )$ +– If $X _ { 1 } < 0 , X _ { 2 } \geq 0$ , $\scriptstyle { \mathrm { l o g i t } } = \exp ( \sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )$ . +– If $X _ { 1 } \geq 0 , X _ { 2 } < 0$ , $\mathrm { l o g i t = - 1 0 \times \sin 2 X _ { 7 } + 2 } | X _ { 8 } | + X _ { 9 } + \exp ( - X _ { 1 0 } ) .$ – If $X _ { 1 } \geq 0 , X _ { 2 } \geq 0$ $\begin{array} { r } { ) , \mathrm { l o g i t } = 0 . 5 \times \exp ( X _ { 1 } X _ { 2 } ) + 0 . 5 \times \exp ( \sum _ { i = 3 } ^ { 4 } X _ { i } ^ { 2 } - 2 ) . } \end{array}$ + +# RESULTS ON SEMI-SYNTHETIC DATASETS + +In this experiment, we use real features (which have correlation across features) but generate the labels as in the synthetic experiments from the main paper, using Syn1-Syn6. This allows us to know the ground truth relevance of the features, and calculate TPR and FDR, while using unknown and correlated feature distributions (instead of the unrealistic setting of i.i.d. Gaussian used in the fully synthetic experiment). The results for the MAGGIC and PLCO datasets are given below. + +Table 11: Relevant feature discovery results for complex synthetic datasets (Syn4B, 5B, 6B, 7) with 100 features + +
DatasetSyn4BSyn5BSyn6BSyn7
Metrics (%)TPRFDRTPRFDRTPRFDRTPRFDR
INVASE+65.530.185.015.086.527.886.832.4
L2X43.253.450.350.344.655.435.370.9
LIME56.837.271.927.269.830.256.451.0
Shapley51.443.577.224.169.330.761.845.6
Knock off5.387.473.325.259.940.154.160.0
Tree56.737.473.925.070.129.971.640.3
SCFS3.796.272.326.361.138.922.977.5
LASSO4.295.673.325.060.139.924.975.8
+ +Table 12: Relevant feature discovery for real datasets with synthetic labels using MAGGIC dataset + +
DatasetSyn1Syn2Syn3Syn4Syn5Syn6
Metrics (%) TPRFDRTPRFDRTPRFDRTPRFDRTPRFDRTPRFDR
INVASE100.00.0100.00.0100.00.085.90.072.90.181.013.2
L2X LIME68.8 46.931.2 53.199.9 99.90.1 0.183.0 87.217.0 12.860.0 63.631.3 24.468.3 50.222.3 37.673.5 68.726.5 31.3
Shapley Knock off73.9 27.526.1 65.094.5 77.55.5 22.581.0 100.019.0 0.065.323.9 34.461.229.069.930.1
Tree100.00.0100.00.0100.00.057.0 56.329.756.1 51.629.8 40.258.0 46.742.0 53.3
SCFS30.070.053.047.0100.00.052.039.954.032.464.535.5
LASSO75.025.0100.0
25.075.00.060.733.156.129.858.241.8
+ +Table 13: Relevant feature discovery for real datasets with synthetic labels using PLCO dataset + +
DatasetSyn1Syn2Syn3Syn4Syn5Syn6
Metrics (%)TPRFDRTPRFDRTPRFDRTPRFDRTPRFDRTPRFDR
INVASE35.90.0100.00.084.07.059.238.664.631.770.029.9
L2X LIME0.0 1.0100.0 99.062.2 70.337.8 29.743.6 74.956.4 25.141.9 43.555.4 55.921.5 26.876.7 68.966.9 56.833.1 43.2
Shapley Knock off5.494.668.531.567.932.132.769.439.658.648.551.5
Tree15.0 0.050.0 100.085.0 71.015.0 29.0100.0 75.00.0 25.046.1 34.552.1 66.334.558.3 54.760.040.0
SCFS10.090.061.039.093.86.243.255.743.836.963.1
LASSO31.063.655.544.5
0.0100.072.527.5100.00.039.260.833.268.245.055.0
+ +As demonstrated in Tables 12 and 13, INVASE outperforms all other methods across all 6 of the synthetic-label settings using real features. This also demonstrates the capability of INVASE in settings where there are unknown correlation structures in the features. + +# 5.1 PREDICTIVE PERFORMANCE COMPARISON ON REAL-WORLD DATASETS + +In this experiment, we evaluate the predictive performance gains of using each feature selection method as a pre-processing step on the two real datasets, MAGGIC and PLCO (as was done for synthetic data in Section 4.1.3). For each method, we first perform feature selection and then train a predictive model on top of the feature-selected data, where the model has the same architecture as the INVASE predictor network (to create a fair comparison of methods). As can be seen in Table 14, INVASE significantly outperform the other approaches. + +
DatasetsMAGGICPLCO
Labels3-year5-year5-year10-year
MetricsAUROCAUPRCAUROCAUPRCAUROCAUPRCAUROCAUPRC
INVASE0.7220.6550.7400.8670.6370.3290.6730.506
L2X0.6090.5290.6070.7940.5580.1700.5830.365
LIME0.6370.55960.6340.8080.5970.1830.6010.374
Shapley0.6410.5570.6170.7970.6140.1940.6150.381
Knockoff0.6860.6140.7110.8530.6190.2300.6580.475
Tree0.6780.6040.7080.8500.6320.2690.6550.469
SCFS0.6830.6230.7230.8570.6320.2310.6320.444
LASSO0.6920.6150.7090.8470.6230.2180.6560.467
+ +Table 14: Predictive Performance Comparison on two real-world datasets (MAGGIC and PLCO) in terms of AUROC and AUPRC + +CORRELATIONS BETWEEN FEATURES AND LABELS IN THE SYNTHETIC AND SEMI-SYNTHETIC EXPERIMENTS +Table 15: Correlation between features and labels in Synthetic datasets with 100 features. Ground truth (in the global sense) relevant features are given in bold. Features with correlation $> 0 . 0 5$ are highlighted in red. + +
VariablesSyn1Syn2Syn3Syn4Syn5Syn6
X1 X0.003 0.0010.008 0.0050.006 0.0060.009 0.0050.007 0.0150.006 0.005
X30.006 0.0060.0110.0010.0170.0160.010
X40.0030.0030.0020.0000.002
X50.0030.0150.0220.0040.0170.028
X60.0030.0040.0050.0020.0040.005
X70.0130.0090.4810.0020.2420.235
X80.0100.0080.0120.0030.0100.022
X90.0010.0030.2390.0020.1150.121
X100.0020.0030.3080.0030.1490.144
X110.0140.0120.0040.0280.0180.002
+ +As can be seen in Table 15, among 33 relevant features, only 9 features have more than 0.05 (linear) correlation with the label. In particular, using a linear model, it is very hard to discover the relevant features. However, Knock-off (based on LASSO and linear correlations), LASSO, and SCFS are linear models, resulting in a poor performance in our experiments. The above table results are directly reflected in the results given in the main manuscript. + +Table 16: Correlation between features and labels in MAGGIC datasets. Ground truth relevant features are described in bold. Features with correlation $> 0 . 0 5$ are described in red + +
VariablesSyn1Syn2Syn3Syn4Syn5Syn6
X10.028 0.0020.030 0.0110.070 0.0090.011 0.0010.044 0.0010.026 0.012
X0.0180.0790.0080.0380.0060.046
X3 X40.0050.1130.0060.0560.0010.055
0.0060.0340.013
X5 X60.0190.1140.032 0.0270.0990.0160.036
0.0050.0100.0000.0180.004
X70.3670.2620.272
X80.0200.0300.1120.0230.0750.082
X90.0250.0220.2990.0060.2160.200
X100.070.0430.3280.0270.2220.206
X110.0090.0060.0340.0460.0180.058
+ +We do the same analysis for the MAGGIC dataset; results are given in Table 16. We see that here the linear correlation with the label is stronger and this is reflected in Tables 12 and 13, where all of the linear models performed better than in the fully-synthetic settings. However, we note that although they had a better performance, in most cases it was still not comparable with INVASE. + +DEFINITION OF TPR AND FDR + +Figure 3: The definitions of True Positive Rate (TPR) and False Discovery Rate (FDR) + +
True Condition
PositiveNegative
PredictedConditionPositiveTruePositiveFalsePositive
NegativeFalseNegativeTrueNegative
+ +୘୰୳ୣ ୔୭ୱ୧୲୧୴ୣ +True Positive Rate (TPR) $=$ ୘୰୳ୣ ୔୭ୱ୧୲୧୴ୣା୊ୟ୪ୱୣ ୒ୣ୥ୟ୲୧୴ୣ ୊ୟ୪ୱୣ ୔୭ୱ୧୲୧୴ୣ +False Discovery Rate (FDR) $=$ ୘୰୳ୣ ୔୭ୱ୧୲୧୴ୣ ୊ୟ୪ୱୣ ୔୭ୱ୧୲୧୴ୣ $^ +$ + +# COMPUTER VISION + +Another natural application of INVASE is in computer vision. To briefly demonstrate the applicability and capability of INVASE to computer vision, we conduct two experiments using the Kaggle Dogs vs. Cats dataset (https://www.kaggle.com/c/dogs-vs-cats) [6] and the Oxford Pet dataset (http://www.robots.ox.ac.uk/˜vgg/data/pets/) [20]. The goal is to select a set $1 6 \times 1 6$ patches of each image that maximize the predictive capability of a model. In order to apply INVASE to this problem, we simply treat each $1 6 \times 1 6$ patch as a feature. + +We use the U-Net [25] architecture for the selector network and the VGG network [28] architecture for the predictor and baseline networks. Below we give qualitative results of INVASE applied to these datasets, where we see that INVASE successfully identifies patches of each image in which the animal’s face is visible. + +![](images/4f36cf05a53bf3d7e37f5224237ed6e770fab264b6463ced2d9ee180b9a626b6.jpg) +Figure 4: Selected $1 6 \mathrm { ~ x ~ } 1 6$ patches by INVASE on Kaggle Dogs vs. Cats dataset - Cats + +![](images/aa7861ab9378342c4713f4385cc0c535523fb2e28b91aa84c9951a7e10e9b6d0.jpg) +Figure 5: Selected $1 6 \times 1 6$ patches by INVASE on Kaggle Dogs vs. Cats dataset - Dogs + +![](images/b5bc222942ad195921fdf291082c28ac5a6e4f8c2d9edef9031184a9a0ca0f60.jpg) +Figure 6: Selected $1 6 \times 1 6$ patches by INVASE on Oxford Pet dataset - Cats + +![](images/c0d45684db148f7fe42f9625cf27b015fa3f4dba35149e59b0d12a308dbc8f23.jpg) +Figure 7: Selected $1 6 \mathrm { ~ x ~ } 1 6$ patches by INVASE on Oxford Pet dataset - Dogs \ No newline at end of file diff --git a/parse/train/BJg_roAcK7/BJg_roAcK7_content_list.json b/parse/train/BJg_roAcK7/BJg_roAcK7_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..bab6738bdb1b8326cfab5b9459cba8e92388d758 --- /dev/null +++ b/parse/train/BJg_roAcK7/BJg_roAcK7_content_list.json @@ -0,0 +1,2202 @@ +[ + { + "type": "text", + "text": "INVASE: INSTANCE-WISE VARIABLE SELECTION USING NEURAL NETWORKS ", + "text_level": 1, + "bbox": [ + 176, + 98, + 823, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Jinsung Yoon \nDepartment of Electrical and Computer Engineering \nUCLA, California, USA \njsyoon0823@g.ucla.edu \nJames Jordon \nEngineering Science Department \nUniversity of Oxford, UK \njames.jordon@wolfson.ox.ac.uk \nMihaela van der Schaar \nUniversity of Cambridge, UK \nDepartment of Electrical and Computer Engineering, UCLA, California, USA \nAlan Turing Institute, London, UK \nmihaela@ee.ucla.edu ", + "bbox": [ + 183, + 170, + 527, + 227 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 545, + 171, + 830, + 227 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 184, + 247, + 694, + 316 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 354, + 544, + 369 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "The advent of big data brings with it data with more and more dimensions and thus a growing need to be able to efficiently select which features to use for a variety of problems. While global feature selection has been a well-studied problem for quite some time, only recently has the paradigm of instance-wise feature selection been developed. In this paper, we propose a new instance-wise feature selection method, which we term INVASE. INVASE consists of 3 neural networks, a selector network, a predictor network and a baseline network which are used to train the selector network using the actor-critic methodology. Using this methodology, INVASE is capable of flexibly discovering feature subsets of a different size for each instance, which is a key limitation of existing state-of-the-art methods. We demonstrate through a mixture of synthetic and real data experiments that INVASE significantly outperforms state-of-the-art benchmarks. ", + "bbox": [ + 233, + 386, + 764, + 551 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 579, + 336, + 594 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "High-dimensional data is becoming more readily available, and it brings with it a growing need to be able to efficiently select which features to use for a variety of problems. When doing predictions, it is well known that using too many variables with too few samples can lead to overfitting, which can significantly hinder the performance of predictive models. In the realm of interpretability, the large dimensionality of the data is often too much information to present to a human who may be using the machine learning model as a support system. Understanding which features are most relevant to an outcome or to a model output is an important first step in improving predictions and interpretability and many works exist that tackle feature selection on a global level. However, in the heterogeneous data we typically encounter, the prediction made by a model (and indeed the true label) may rely on a different subset of the features for different subgroups within the data [14]. In this paper we propose a novel instance-wise feature selection method, INVASE (INstance-wise VAriable SElection), which attempts to learn which subset of the features is relevant for each sample, allowing us to display the minimal information required to explain each prediction and also to reduce overfitting of predictive models. ", + "bbox": [ + 174, + 611, + 825, + 804 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Discovering a global subset of relevant features for a particular task is a well-studied problem and there are several existing methods for solving it such as Sequential Correlation Feature Selection [11], Mutual Information Feature Selection [21], Knockoff models [3], and more [10; 16]. However, global feature selection suffers from a key limitation - the features discovered by global feature selection are the same for all samples. In many cases, in particular when populations are highly heterogeneous, the relevant features may differ across samples [33; 32]. For instance, different patient subgroups have different relevant features for predicting heart failure [14]. Instance-wise feature selection methods such as [4; 27] instead try to discover the features that are relevant for each sample. When the goal is to provide an interpretable explanation of the predictions made, a key challenge is in ensuring that we do not over-explain by providing too much information (i.e. choosing too many features). Naturally, by performing feature selection on an individualized level we are able to select features that are more relevant to each sample, rather than having to choose the top $k$ features globally, which may not explain the predictions for some samples very well, but simply perform well on average across all samples. ", + "bbox": [ + 174, + 813, + 823, + 924 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 188 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this paper, we propose a novel instance-wise feature selection method which we term INVASE. We draw influence from actor-critic models [22] to solve the problem of backpropagating through subset sampling. Our model consists of 3 neural networks: a selector network, a predictor network and a baseline network. During training, each of these are trained iteratively, with the selector network being trained to minimize a Kullback-Leibler (KL) divergence between the full conditional distribution and the selected-features-only conditional distribution of the outcome. Our model is capable of discovering a different number of relevant variables for each sample which is a key limitation in existing instance-wise approaches (such as [4]). We show significant improvements over the state-of-the-art in both synthetic data and real-word data in terms of true positive rates, false discovery rates, and show better predictive performance with respect to several prediction metrics. Our model can also be easily extended to handle both continuous and discrete outputs and time-series inputs (see the Appendix for details). ", + "bbox": [ + 174, + 194, + 825, + 361 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "1.1 RELATED WORKS ", + "text_level": 1, + "bbox": [ + 176, + 377, + 338, + 391 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "There are many existing works on global variable selection (see [10] for a good summary paper). [21] and [11] use max-dependency min-redundancy criteria [17] with mutual information and Pearson correlation, respectively. [3] uses multiple hypothesis testing for global variable selection. As noted above, these global selection methods are not capable of learning sample-specific relevance. ", + "bbox": [ + 174, + 404, + 823, + 459 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Instance-wise variable selection is also closely related to model interpretation methods. Some previous works are based on backpropagation from the output of the predictive model to the input variables [29]. DeepLIFT [27] decomposes the output of the neural network on a reference input to compute the contribution of each input variable. However, both methods need white-box access to the pre-trained predictive models to compute the gradient and decomposition. [2] approximates the predictive models using a Parzen window approximator when there is only black-box access to the predictive models. Some other works are based on input perturbation such as [1], [15], [30] and [5]. [18] uses Shapley values to compute the variable importance, and [24] uses locally linear models to explain the linear dependency for each sample. [19] tries to interpret tree ensemble models using Shapley values but cannot generalize to other predictive models such as neural networks. ", + "bbox": [ + 174, + 467, + 825, + 604 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Our work is most closely related to L2X (Learning to Explain) [4]. However, there are 3 key differences between our work and theirs. In L2X, they try to maximize a lower bound of the mutual information between the target $Y$ and the selected input variables $X _ { S }$ . In contrast, we try to minimize the KL divergence between the conditional distributions $Y | X$ and $Y | X _ { S }$ . In order to be able to backpropagate through subset sampling, L2X use the Gumbel-softmax trick [13] to approximately discretize the continuous outputs of the neural network. In our work, we use methods from actorcritic models [22] to bypass backpropagation through the sampling and instead use the predictor network to provide a reward to the selector network. Finally, due to the Gumbel-softmax used in L2X, the number of variables to be detected must be fixed in advance and is necessarily the same for every sample. The actor-critic methodology used in our model has no such limitations and so we are able to flexibly select a different number of relevant variables for each sample and instead induce sparsity using an $l _ { 0 }$ penalty term. In fact, using the actor-critic methodology allows us to directly use the $l _ { 0 }$ penalty term (which is not differentiable and therefore not practical to use in general). A summary table highlighting the key features of all of the related works can be found in the Appendix. ", + "bbox": [ + 174, + 612, + 825, + 806 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 PROBLEM FORMULATION ", + "text_level": 1, + "bbox": [ + 176, + 827, + 416, + 843 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Let ${ \\mathcal { X } } = { \\mathcal { X } } _ { 1 } \\times \\ldots \\times { \\mathcal { X } } _ { d }$ be a $d$ -dimensional feature space and $\\boldsymbol { \\mathcal { V } } = \\{ 1 , . . . , c \\}$ be a discrete label space1. Let $\\mathbf { X } = ( X _ { 1 } , . . . , X _ { d } ) \\in \\mathcal { X }$ and $Y \\in \\mathcal { D }$ be random variables with joint density (or mass) $p$ and marginal densities (or masses) $p _ { X }$ and $p _ { Y }$ respectively. We will refer to $\\mathbf { s } \\in \\{ 0 , 1 \\} ^ { d }$ as the selection vector, where $s _ { i } = 1$ will indicate that variable $i$ is selected, and $s _ { i } ~ = ~ 0$ will indicate that variable $i$ is not selected. Let $^ *$ be any point not in any of the spaces $\\mathcal { X } _ { 1 } , . . . , \\mathcal { X } _ { d }$ and define ${ { \\mathcal { X } } _ { i } ^ { * } } = { { \\mathcal { X } } _ { i } } \\cup \\left\\{ * \\right\\}$ and $\\mathcal { X } ^ { * } = \\mathcal { X } _ { 1 } ^ { * } \\times \\ldots \\times \\mathcal { X } _ { d } ^ { * }$ . Given $\\mathbf { x } \\in \\mathcal { X }$ we will write $\\mathbf { x } ^ { ( \\mathbf { s } ) }$ to denote the suppressed feature vector defined by ", + "bbox": [ + 176, + 858, + 825, + 900 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 102, + 825, + 161 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/97551ba6af2138e3dcf88974553e2a1250aee89c0e538f893a574d2a06f3ba96.jpg", + "text": "$$\nx _ { i } ^ { ( \\mathbf { s } ) } = \\left\\{ { \\atop * \\operatorname { i f } s _ { i } = 0 } \\right.\n$$", + "text_format": "latex", + "bbox": [ + 419, + 160, + 560, + 195 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "so that $^ *$ represents that a feature is not selected. ", + "bbox": [ + 174, + 196, + 490, + 212 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In the global feature selection literature, the goal is to find the smallest s (i.e. the one with fewest 1s) such that $\\mathbb { E } ( Y | \\mathbf { X } ^ { ( \\mathbf { s } ) } ) = \\mathbb { E } ( Y | \\mathbf { X } )$ , or equivalently such that the conditional distribution of $Y$ given $\\mathbf { X } ^ { ( \\mathbf { s } ) }$ is the same as $Y$ given all of $\\mathbf { X }$ . Note that this definition is given fully in terms of random variables, rather than realizations of those random variables. ", + "bbox": [ + 174, + 218, + 825, + 277 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In contrast, our problem necessarily needs to be defined in terms of realizations since we are aiming to select features for a given realization. We will write $\\mathbf { x }$ to denote realizations of the random variable $\\mathbf { X }$ . Then we formalize our problem as one of finding a selector function, $S : \\mathcal { X } \\{ 0 , 1 \\} ^ { d }$ such that for almost every $\\mathbf { x } \\in \\mathcal { X }$ (w.r.t. $p _ { X }$ ) we have ", + "bbox": [ + 174, + 284, + 825, + 340 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/2969b89ba791131e980d398fdff5633999de0e7730b1e0f75971b658c4fe9ef5.jpg", + "text": "$$\n( Y | \\mathbf { X } ^ { ( S ( \\mathbf { x } ) ) } = \\mathbf { x } ^ { ( S ( \\mathbf { x } ) ) } ) \\overset { d . } { = } ( Y | \\mathbf { X } = \\mathbf { x } )\n$$", + "text_format": "latex", + "bbox": [ + 372, + 345, + 625, + 366 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\underline { { \\underline { { d . } } } }$ denotes equality in distribution and $S ( \\mathbf { x } )$ is minimal (i.e. fewest 1s) such that (1) holds. ", + "bbox": [ + 171, + 375, + 805, + 390 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We suppose that we have a dataset $\\mathbfcal { D } = \\{ ( \\mathbf { x } _ { j } , y _ { j } ) \\} _ { j = 1 } ^ { n }$ consisting of $n$ i.i.d. realizations of the pair $( \\mathbf { X } , Y )$ .2 Note that $Y$ can be viewed as having either come from a dataset, in which case the problem is of selecting predictive features, or as having come from a predictive model, in which case the problem is of explaining the model’s predictions. ", + "bbox": [ + 173, + 395, + 825, + 457 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.1 OPTIMIZATION PROBLEM ", + "text_level": 1, + "bbox": [ + 174, + 472, + 392, + 486 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In order to learn a suitable selector function, we transform the constraint (1) into a soft constraint using the Kullback-Leibler (KL) divergence which, for random variables $W$ and $V$ with densities $p _ { W }$ and $p _ { V }$ is defined as ", + "bbox": [ + 173, + 497, + 825, + 540 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/abe864ca7f43b91eab4dffe97e1c19d8412f7b1e526fedd5de3732abd1ed56bf.jpg", + "text": "$$\nK L ( W | | V ) = \\mathbb { E } \\left[ \\log \\left( \\frac { p _ { W } ( W ) } { p _ { V } ( W ) } \\right) \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 375, + 537, + 622, + 574 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We define the following loss for our selector function $S$ ", + "bbox": [ + 174, + 580, + 540, + 595 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/e6fae9de7600871b807e358a95c8c1d48afbdadc5e22c04235b6068019216920.jpg", + "text": "$$\n\\mathcal { L } ( S ) = \\mathbb { E } _ { \\mathbf { x } \\sim p _ { X } } \\left[ K L ( Y | \\mathbf { X } = \\mathbf { x } | | Y | \\mathbf { X } ^ { ( S ( \\mathbf { x } ) ) } = \\mathbf { x } ^ { ( S ( \\mathbf { x } ) ) } ) + \\lambda | | S ( \\mathbf { x } ) | | \\right]\n$$", + "text_format": "latex", + "bbox": [ + 271, + 599, + 725, + 626 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $| | \\cdot | |$ simply denotes the number of non-zero entries of a vector (or equivalently in this case, the number of 1s) and $\\lambda$ is a hyper-parameter that trades off between the constraint in (1) and the number of selected features. The KL divergence in (2) can be rewritten as ", + "bbox": [ + 174, + 631, + 825, + 672 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/738a0bebf00450836c2bb3e80d9af5cc8ddb55ce657b718e6bc18d104f7b16d6.jpg", + "text": "$$\n\\begin{array} { l } { { \\displaystyle K L ( Y | { \\bf X } = { \\bf x } | | Y | { \\bf X } ^ { ( S ( { \\bf x } ) ) } = { \\bf x } ^ { ( S ( { \\bf x } ) ) } ) = \\mathbb { E } _ { y \\sim Y | { \\bf X } = { \\bf x } } \\left[ \\log \\left( \\frac { p _ { Y } ( y | { \\bf x } ) } { p _ { Y } ( y | { \\bf x } ^ { ( S ( { \\bf x } ) ) } ) } \\right) \\right] } \\ ~ } \\\\ { { \\displaystyle = \\mathbb { E } _ { y \\sim Y | { \\bf X } = { \\bf x } } \\left[ \\log ( p _ { Y } ( y | { \\bf x } ) ) - \\log ( p _ { Y } ( y | { \\bf x } ^ { ( S ( { \\bf x } ) ) } ) ) \\right] } \\ ~ } \\\\ { { \\displaystyle = \\int _ { y } p _ { Y } ( y | { \\bf x } ) \\left[ \\log ( p _ { Y } ( y | { \\bf x } ) ) - \\log ( p _ { Y } ( y | { \\bf x } ^ { ( S ( { \\bf x } ) ) } ) ) \\right] d y } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 186, + 676, + 812, + 775 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $p _ { Y } ( \\cdot | \\cdot )$ denotes the appropriate conditional densities of $Y$ . We will write ", + "bbox": [ + 174, + 776, + 694, + 792 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/de7b63d5d093ee776d85ede20c13488c842cead58b44ed74c9bfd5a76676164c.jpg", + "text": "$$\nl ( \\mathbf { x } , \\mathbf { s } ) = \\int _ { \\mathcal { V } } p _ { Y } ( y | \\mathbf { x } ) \\left[ \\log ( p _ { Y } ( y | \\mathbf { x } ) ) - \\log ( p _ { Y } ( y | \\mathbf { x } ^ { ( s ) } ) ) \\right] d y\n$$", + "text_format": "latex", + "bbox": [ + 299, + 796, + 699, + 830 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "so that our final loss can be written as ", + "bbox": [ + 174, + 833, + 423, + 848 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/b02731cda31838827c2d06ab791d382d2329226ae050173acc96858d117f040d.jpg", + "text": "$$\n\\mathcal { L } ( S ) = \\mathbb { E } _ { \\mathbf { x } \\sim p _ { X } } \\left[ l ( \\mathbf { x } , S ( \\mathbf { x } ) ) + \\lambda | | S ( \\mathbf { x } ) | | \\right]\n$$", + "text_format": "latex", + "bbox": [ + 364, + 852, + 632, + 869 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $| | \\cdot | |$ denotes the $l _ { 0 }$ (pseudo-)norm. ", + "bbox": [ + 174, + 873, + 449, + 888 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 PROPOSED MODEL ", + "text_level": 1, + "bbox": [ + 176, + 102, + 362, + 118 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "There are two main challenges in minimizing the loss in (4). First, the output space of the selector function $( \\{ 0 , 1 \\} ^ { d } )$ is large - its size increases exponentially with the dimension of the feature space; thus a complete search is impractical in high dimensional settings (and it should be noted that it is in high dimensional settings where feature selection is most necessary). Second, we do not have access to the densities $p _ { Y } \\big ( \\cdot | \\mathbf { x } ^ { ( S ( \\mathbf { x } ) ) } \\big )$ and $p _ { Y } ( y \\vert \\mathbf { x } )$ required to compute (4). ", + "bbox": [ + 173, + 133, + 825, + 207 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1 LOSS ESTIMATION ", + "text_level": 1, + "bbox": [ + 174, + 224, + 344, + 238 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "To approximate the densities in (3), we introduce a pair of functions $f ^ { \\phi } : \\mathcal { X } ^ { * } \\times \\{ 0 , 1 \\} ^ { d } \\to [ 0 , 1 ] ^ { c }$ parametrized by $\\phi$ and $f ^ { \\gamma } : \\mathcal { X } \\to [ 0 , 1 ] ^ { c }$ parametrized by $\\gamma$ that will estimate $p _ { Y } \\big ( \\cdot | \\mathbf { x } ^ { ( S ( \\mathbf { x } ) ) } \\big )$ and $p _ { Y } ( \\cdot | \\mathbf { x } )$ respectively. ", + "bbox": [ + 173, + 250, + 826, + 296 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1.1 PREDICTOR NETWORK ", + "text_level": 1, + "bbox": [ + 174, + 311, + 387, + 327 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We refer to $f ^ { \\phi }$ as the predictor network. This will take as input a suppressed3 feature vector $\\mathbf { x } ^ { ( \\mathbf { s } ) }$ and its corresponding selection vector s and will output a probability distribution (using a softmax layer) over the $c$ -dimensional output space. ", + "bbox": [ + 174, + 337, + 825, + 380 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "$f ^ { \\phi }$ is trained to minimize the cross entropy loss given by ", + "bbox": [ + 174, + 386, + 547, + 401 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/f6e76f984c5307b4bcfa01bb51fc0551a472054048cbd2378137f3c25b776d88.jpg", + "text": "$$\nl _ { 1 } ( \\phi ) = - \\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim p , \\mathbf { s } \\sim \\pi _ { \\theta } ( \\mathbf { x } , \\cdot ) } \\Big [ \\sum _ { i = 1 } ^ { c } y _ { i } \\log ( f _ { i } ^ { \\phi } ( \\mathbf { x } ^ { ( \\mathbf { s } ) } , \\mathbf { s } ) ) \\Big ]\n$$", + "text_format": "latex", + "bbox": [ + 320, + 409, + 676, + 450 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $y _ { i }$ is the $i$ th component of the one-hot encoding of $y$ and $\\pi _ { \\theta }$ is the distribution induced by our selector network which will be defined in the following section. $f ^ { \\phi }$ is implemented as a fully connected neural network4. ", + "bbox": [ + 174, + 457, + 825, + 500 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1.2 BASELINE NETWORK", + "text_level": 1, + "bbox": [ + 174, + 516, + 377, + 531 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We refer to $f ^ { \\gamma }$ as the baseline network, which is standard in the actor-critic literature for variance reduction. $f ^ { \\gamma }$ is implemented as a fully connected neural network and is trained to minimize ", + "bbox": [ + 171, + 541, + 823, + 570 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/cf524fe7f418feec9fb53678b87e66de2fb8d8c2b87eaba770a51e74b02f05dd.jpg", + "text": "$$\nl _ { 3 } ( \\gamma ) = - \\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim p } \\Big [ \\sum _ { i = 1 } ^ { c } y _ { i } \\log ( f _ { i } ^ { \\gamma } ( \\mathbf { x } ) ) \\Big ] .\n$$", + "text_format": "latex", + "bbox": [ + 364, + 578, + 633, + 619 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "For fixed $\\phi , \\gamma$ we define our loss estimator, $\\hat { l }$ , by ", + "bbox": [ + 173, + 636, + 490, + 652 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/1df8420908f508fa82b62f85d8fc06987bb663df220ae5f7a61dc8f0b53cfda6.jpg", + "text": "$$\n\\hat { l } ( \\mathbf { x } , \\mathbf { s } ) = - \\left[ \\sum _ { i = 1 } ^ { c } y _ { i } \\log ( f _ { i } ^ { \\phi } ( \\mathbf { x ^ { ( s ) } } , \\mathbf { s } ) ) - \\sum _ { i = 1 } ^ { c } y _ { i } \\log ( f _ { i } ^ { \\gamma } ( \\mathbf { x } ) ) \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 300, + 660, + 697, + 704 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2 SELECTOR FUNCTION OPTIMIZATION ", + "text_level": 1, + "bbox": [ + 176, + 729, + 470, + 744 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We approximate the selector function $S : \\mathcal { X } \\{ 0 , 1 \\} ^ { d }$ by using a single neural network, $\\hat { S } ^ { \\theta } : \\mathcal { X } $ $[ 0 , 1 ] ^ { \\bar { d } }$ parameterized by weights $\\theta$ , that outputs a probability for selecting each feature (i.e. the ith component of $\\hat { S } ^ { \\theta } ( \\mathbf { x } )$ will denote the probability with which we select the ith feature). The selector network induces a probability distribution over the selection space $( \\{ 0 , 1 \\} ^ { d } )$ , with the probability of a given joint selection vector $\\mathbf { s } \\in \\{ 0 , 1 \\} ^ { d }$ being given by5 ", + "bbox": [ + 173, + 755, + 825, + 830 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/58b4ad2348bf8465d485f7aac9e1256be37fa6dbb67bc89f3b6f9fa7d96406e3.jpg", + "text": "$$\n\\pi _ { \\boldsymbol \\theta } ( \\mathbf { x } , \\mathbf { s } ) = \\Pi _ { i = 1 } ^ { d } \\hat { S } _ { i } ^ { \\theta } ( \\mathbf { x } ) ^ { s _ { i } } ( 1 - \\hat { S } _ { i } ^ { \\theta } ( \\mathbf { x } ) ) ^ { 1 - s _ { i } } .\n$$", + "text_format": "latex", + "bbox": [ + 357, + 837, + 638, + 857 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/dab836e1e2e287b6c85e1510eb3ffcad658b59e83e87918824fa99ded51229df.jpg", + "image_caption": [ + "Figure 1: Block diagram of INVASE. Instances are fed into the selector network which outputs a vector of selection probabilities. The selection vector is then sampled according to these probabilities. The predictor network then receives the selected features and makes a prediction and the baseline network is given the entire feature vector and makes a prediction. Each of these networks are trained using backpropagation using the real label. The loss of the baseline network is then subtracted from the prediction network’s loss and this is used to update the selector network. " + ], + "image_footnote": [], + "bbox": [ + 178, + 99, + 823, + 330 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Using this, we define the following loss for our selector network ", + "bbox": [ + 173, + 450, + 596, + 467 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/8e89b4e003bdcf0781f3fdacceb8da4c9f26c1faeccc8ce7d4a46819f9d97fdc.jpg", + "text": "$$\n\\begin{array} { l } { l _ { 2 } ( \\theta ) = \\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim p } \\left[ \\mathbb { E } _ { \\mathbf { s } \\sim \\pi _ { \\theta } ( \\mathbf { x } , \\cdot ) } \\Big [ \\hat { l } ( \\mathbf { x } , \\mathbf { s } ) + \\lambda | | \\mathbf { s } | | _ { 0 } \\Big ] \\right] } \\\\ { \\displaystyle = \\int _ { \\mathcal { X } \\times \\mathcal { Y } } p ( \\mathbf { x } , y ) \\left( \\sum _ { \\mathbf { s } \\in \\{ 0 , 1 \\} ^ { d } } \\pi _ { \\theta } ( \\mathbf { x } , \\mathbf { s } ) \\left( \\hat { l } ( \\mathbf { x } , \\mathbf { s } ) + \\lambda | | \\mathbf { s } | | _ { 0 } \\right) \\right) d x d y . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 269, + 470, + 728, + 550 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Taking the gradient of this loss with respect to $\\theta$ gives us ", + "bbox": [ + 173, + 560, + 547, + 575 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/d828bf588159c3f1e8f2443dd31c598b14176d9f51ef881b11a865a94649b92c.jpg", + "text": "$$\n\\begin{array} { l } { { \\displaystyle \\nabla _ { \\theta } l _ { 2 } ( \\theta ) = \\int _ { \\mathcal { X } \\times \\mathcal { Y } } p ( { \\bf x } , y ) \\left( \\sum _ { { \\bf s \\in \\{ 0 , 1 \\} } ^ { d } } \\nabla _ { \\theta } \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) \\left( \\hat { l } ( { \\bf x } , { \\bf s } ) + \\lambda | | { \\bf s } | | _ { 0 } \\right) \\right) d x d y } \\ ~ } \\\\ { { \\displaystyle ~ = \\int _ { \\mathcal { X } \\times \\mathcal { Y } } p ( { \\bf x } , y ) \\left( \\sum _ { { \\bf s \\in \\{ 0 , 1 \\} } ^ { d } } \\frac { \\nabla _ { \\theta } \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) } { \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) } \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) \\left( \\hat { l } ( { \\bf x } , { \\bf s } ) + \\lambda | | { \\bf s } | | _ { 0 } \\right) \\right) d x d y } \\ ~ } \\\\ { { \\displaystyle ~ = \\int _ { \\mathcal { X } \\times \\mathcal { Y } } p ( { \\bf x } , y ) \\left( \\sum _ { { \\bf s \\in \\{ 0 , 1 \\} } ^ { d } } \\nabla _ { \\theta } \\log \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) \\left( \\hat { l } ( { \\bf x } , { \\bf s } ) + \\lambda | | { \\bf s } | | _ { 0 } \\right) \\right) d x d y } \\ ~ } \\\\ { \\displaystyle ~ = \\mathbb { E } _ { ( { \\bf x } , y ) \\sim p } \\left[ \\mathbb { E } _ { { \\bf s } \\sim \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) } \\left[ \\left( \\hat { l } ( { \\bf x } , { \\bf s } ) + \\lambda | | { \\bf s } | | _ { 0 } \\right) \\nabla _ { \\theta } \\log \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) \\right] \\right] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 210, + 582, + 787, + 761 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We update each of ${ \\hat { S } } ^ { \\theta }$ , $f ^ { \\phi }$ and $f ^ { \\gamma }$ iteratively using stochastic gradient descent. Pseudo-code of INVASE is given in Algorithm 1 and a block representation of INVASE can be found in Fig. 1. ", + "bbox": [ + 173, + 772, + 825, + 803 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 821, + 326, + 838 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In this section, we quantitatively evaluate INVASE against various state-of-the-art benchmarks on both synthetic and real-world datasets. We evaluate our performance both at identifying ground truth relevance and at enhancing predictions. We compare our model with 4 global variable selection models: Knockoffs [3], Tree Ensembles (Tree) [7], Sequential Correlation Feature Selection (SCFS) [11], and LASSO regularized linear model; and 3 instance-wise feature selection methods: L2X ", + "bbox": [ + 173, + 853, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Algorithm 1 Pseudo-code of INVASE ", + "text_level": 1, + "bbox": [ + 176, + 103, + 428, + 117 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "1: Inputs: learning rates $\\alpha , \\beta > 0$ , mini-batch size $n _ { m b } > 0$ , dataset $\\mathcal { D }$ \n2: Initialize parameters $\\theta , \\phi , \\gamma$ \n3: while Converge do \n4: Sample a mini-batch from the dataset $( \\mathbf { x } _ { j } , y _ { j } ) _ { j = 1 } ^ { n _ { m b } } \\sim \\mathcal { D }$ \n5: for $j = 1 , . . . , n _ { m b }$ do \n6: Calculate selection probabilities $( p _ { 1 } ^ { j } , . . . , p _ { d } ^ { j } ) \\hat { S } ^ { \\theta } ( \\mathbf { x } _ { j } )$ \n7: Sample selection vector \n8: for $i = 1 , . . . , d$ do $s _ { i } ^ { j } \\sim B e r ( p _ { i } ^ { j } )$ \n9: Calculate loss $\\hat { l } _ { j } ( \\mathbf { x } _ { j } , \\mathbf { s } _ { j } ) \\gets - \\left[ \\sum _ { i = 1 } ^ { c } y _ { i } ^ { j } \\log ( f _ { i } ^ { \\phi } ( \\mathbf { x } _ { j } ^ { ( \\mathbf { s } _ { j } ) } , \\mathbf { s } _ { j } ) ) - \\sum _ { i = 1 } ^ { c } y _ { i } ^ { j } \\log ( f _ { i } ^ { \\gamma } ( \\mathbf { x } _ { j } ) ) \\right]$ ", + "bbox": [ + 179, + 122, + 728, + 354 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "10: Update the selector network parameters $\\theta$ ", + "bbox": [ + 176, + 363, + 501, + 378 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/d69e374bf7b12a3bda95e953590e5c61e9aad154142cc5a5d8c93a216ec07eab.jpg", + "text": "$$\n\\theta \\theta - \\alpha \\frac { 1 } { n _ { m b } } \\sum _ { j = 1 } ^ { n _ { m b } } ( \\hat { l } _ { j } ( \\mathbf { x } _ { j } , \\mathbf { s } _ { j } ) + \\lambda | | \\mathbf { s } _ { j } | | ) \\nabla _ { \\theta } \\log \\pi _ { \\theta } ( \\mathbf { x } _ { j } , \\mathbf { s } _ { j } )\n$$", + "text_format": "latex", + "bbox": [ + 313, + 385, + 710, + 428 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "11: Update the predictor network parameters $\\phi$ ", + "bbox": [ + 174, + 434, + 511, + 449 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/1607f8ec033f6f782875805691678d1709b29c1c82018363dd95ed52c9eccef3.jpg", + "text": "$$\n\\phi \\phi - \\beta \\frac { 1 } { n _ { m b } } \\sum _ { j = 1 } ^ { n _ { m b } } \\sum _ { i = 1 } ^ { c } y _ { i } ^ { j } \\times \\nabla _ { \\phi } \\log ( f _ { i } ^ { \\phi } ( \\mathbf { x } _ { j } ^ { ( \\mathbf { s } _ { j } ) } , \\mathbf { s } _ { j } ) )\n$$", + "text_format": "latex", + "bbox": [ + 339, + 454, + 684, + 497 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "12: Update the baseline network parameters $\\gamma$ ", + "bbox": [ + 176, + 503, + 503, + 518 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/c295c629c66c4c76388b6ce90dfc6c52e6bd57f37267038fb1a27603e6fd8a48.jpg", + "text": "$$\n\\gamma \\gamma - \\beta \\frac { 1 } { n _ { m b } } \\sum _ { j = 1 } ^ { n _ { m b } } \\sum _ { i = 1 } ^ { c } y _ { i } ^ { j } \\times \\nabla _ { \\gamma } \\log ( f _ { i } ^ { \\gamma } ( \\mathbf { x } _ { j } ) )\n$$", + "text_format": "latex", + "bbox": [ + 357, + 525, + 666, + 569 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "[4], LIME [24], and Shapley [18]. The details of benchmark implementation can be found in the appendix. Implementation of INVASE can be found at https://github.com/jsyoon0823/ INVASE. ", + "bbox": [ + 174, + 609, + 825, + 652 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.1 SYNTHETIC DATA EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 671, + 439, + 686 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.1.1 EXPERIMENTAL SETTINGS ", + "text_level": 1, + "bbox": [ + 176, + 698, + 411, + 713 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "For our first set of experiments, we use the same synthetic data generation models as in L2X [4]. The input features are generated from an 11-dimensional67 Gaussian distribution with no correlations across the features $( \\mathbf { X } \\sim \\mathcal { N } ( \\mathbf { 0 } , \\mathbf { I } ) )$ . The label $Y$ is sampled as a Bernoulli random variable with $\\begin{array} { r } { \\mathbb { P } ( Y = 1 | \\mathbf { X } ) = \\frac { 1 } { 1 + \\mathrm { l o g i t } ( \\mathbf { X } ) } } \\end{array}$ , where logit $( \\mathbf { X } )$ is varied to create 3 different synthetic datasets: ", + "bbox": [ + 173, + 723, + 825, + 782 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "• Syn1: $\\exp ( X _ { 1 } X _ { 2 } )$ \n• Syn2: $\\textstyle \\exp ( \\sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )$ \n• Syn3: $- 1 0 \\times \\sin 2 X _ { 7 } + 2 | X _ { 8 } | + X _ { 9 } + \\exp ( - X _ { 1 0 } )$ ", + "bbox": [ + 214, + 795, + 583, + 858 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In each of these datasets, the label depends on the same subset of features for every sample. To highlight the capability of INVASE to detect instance-wise dependence, we generate 3 further synthetic datasets as follows: ", + "bbox": [ + 173, + 103, + 823, + 146 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "• Syn4: If $X _ { 1 1 } < 0$ , logit follows Syn1, otherwise, logit follows Syn2. \n• Syn5: If $X _ { 1 1 } < 0$ , logit follows Syn1, otherwise, logit follows Syn3. \n• Syn6: If $X _ { 1 1 } < 0$ , logit follows Syn2, otherwise, logit follows Syn3. ", + "bbox": [ + 215, + 156, + 691, + 210 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Note that in Syn4 and Syn5, the number of relevant features is different for different samples. ", + "bbox": [ + 174, + 220, + 784, + 236 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "For each of Syn1 to Syn6 we draw 20,000 samples from the data generation model and separate each into trainingwe try to fin $( \\mathcal { D } _ { t r a i n } { \\bf \\bar { \\alpha } } = ( { \\bf x } _ { i } , y _ { i } ) _ { i = 1 } ^ { 1 0 0 0 0 } )$ and testingures for each $( \\mathcal { D } _ { t e s t } = ( \\mathbf { \\bar { x } } _ { j } ^ { - } , y _ { j } ) _ { j = 1 } ^ { 1 0 0 0 0 } )$ sets. For each methodfor Syn1, Syn2, Syn3, $k$ $k = 4$ Syn4, Syn5 and $k = 5$ for Syn6), note, however, that $k$ is not given as an input to INVASE (but is necessary for other methods). The performance metrics we use are the true positive rate (TPR) (higher is better) and false discovery rate $\\mathrm { ( F D R ) } ^ { 8 }$ (lower is better) to measure the performance of the methods when the focus is on discovery (i.e. discovering which features are relevant) and we use Area Under the Receiver Operating Characteristic Curve (AUROC), Area Under the Precision Recall Curve (AUPRC) and accuracy when the focus is on predictions. ", + "bbox": [ + 173, + 242, + 826, + 368 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.1.2 DISCOVERY ", + "text_level": 1, + "bbox": [ + 174, + 383, + 312, + 397 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/e394ddcd36f9c90b7f27b7632d2a651c298e379e5c1df9bd6f1d28ab4c2ab4eb.jpg", + "table_caption": [ + "Table 1: Relevant feature discovery results for Synthetic datasets with 11 features " + ], + "table_footnote": [], + "table_body": "
DatasetSyn1Syn2Syn3Syn4Syn5Syn6
Metrics (%)TPRFDRTPRFDRTPRFDRTPRFDRTPRFDRTPRFDR
INVASE100.00.0100.00.092.00.099.810.384.81.190.17.4
L2X LIME100.0 13.80.0 86.2100.0 100.00.0 0.069.4 98.130.6 1.979.5 40.721.8 49.474.8 41.126.3 50.683.3 50.516.7 49.5
Shapley Knockoff60.4 10.039.6 70.093.3 8.76.7 36.290.9 81.29.1 17.565.2 38.831.9 35.162.9 41.033.7 51.171.2 56.628.8 42.1
Tree100.00.0100.00.0100.00.054.739.056.840.0
37.560.0
SCFS23.539.5
76.560.578.322.048.952.442.451.256.143.9
LASSO19.081.039.860.278.321.749.950.945.548.256.443.6
", + "bbox": [ + 173, + 411, + 825, + 564 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "As demonstrated by Table 1, our method is capable of detecting relevant features on a global level (Syn1, Syn2 and Syn3) as well as on an instance-wise level (Syn4, Syn5 and Syn6) outperforming all other methods in both cases (both global and instance-wise methods). The particularly poor performance of some global feature selection methods in Syn1, Syn2 and Syn3 (where there is no instance-wise relevance) is due to the non-linearity of the relationship between features and labels, further details can be found in the Appendix. ", + "bbox": [ + 174, + 607, + 825, + 691 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The results for Syn4, Syn5 and Syn6 demonstrate that INVASE is capable of detecting a different number of relevant features for each sample when necessary - the performance improvement over L2X is greater in Syn4 and Syn5 than Syn6. In particular, in Syn4, L2X is forced to overselect features when $X _ { 1 1 } ~ < ~ 0$ and underselect when $X _ { 1 1 } \\geq 0$ thus resulting in higher FDR and lower TPR, respectively. To highlight this, in Table 2 we report the group specific FDR and TPR on Syn4 and Syn5 when setting $k = 3 , 4 , 5$ , where Group 1 refers to samples with $X _ { 1 1 } < 0$ and Group 2 to samples with $X _ { 1 1 } \\geq 0$ . ", + "bbox": [ + 173, + 698, + 825, + 796 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "For $k = 3$ in Syn4, we see that INVASE and L2X have comparable FDR in Group 1, since the total number of relevant features for each sample is 3 $( X _ { 1 } , X _ { 2 } , X _ { 1 1 } )$ . However, when we increase $k$ , we see that the FDR increases for L2X as it is forced to select more than 3 features, which necessarily means that the FDR must be at least $40 \\%$ even if L2X was finding the relevant features perfectly. On the other hand, for Group 2 we see that the TPR is low for $k = 3$ since necessarily, L2X cannot possibly select all of the 5 relevant features. INVASE, however, is able to select the correct number in both and hence enjoys low FDR and high TPR. ", + "bbox": [ + 173, + 801, + 825, + 900 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Syn5 reinforces the conclusions we drew for L2X in Syn4. Interestingly, though, for INVASE, we found that $X _ { 1 1 }$ was almost never selected for Group 1 in Syn5. We believe this is because the lack of overlap between the relevant features for each group means that the predictor network can essentially learn two separate networks - one for each group. This is because it is possible to create two subnetworks with non-overlapping weights that each take as input the features of a given group. $X _ { 1 1 }$ is therefore unnecessary for prediction. Note, however, that $X _ { 1 1 }$ is highly relevant for the selector network in deciding which features to pass on and so it is not true that $X _ { 1 1 }$ isn’t relevant, but simply that the selector network does not need to “pass on” its relevance to the predictor network. To investigate this further, results for settings where the features overlap between groups (and so it is not possible to disentangle the networks) can be found in the Appendix. ", + "bbox": [ + 173, + 103, + 825, + 243 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/37b8f1184e6131e7a980904451b7349da08a88f011b6d525d2e57049001ef4ad.jpg", + "table_caption": [ + "Table 2: Detailed comparison of INVASE with L2X in Syn4 and Syn5, highlighting the capability of INVASE to select a flexible number of features for each sample. Group 1: $X _ { 1 1 } < 0$ , Group 2: $X _ { 1 1 } \\geq 0$ " + ], + "table_footnote": [], + "table_body": "
DatasetsSyn4Syn5
Group1212
Metrics (%)TPRFDRTPRFDRTPRFDRTPRFDR
INVASE99.524.6100.00.41 69.21.699.80.6
L2X (k = 3)71.128.957.24.665.534.555.47.7
L2X (k = 4)81.039.274.96.376.242.972.49.4
L2X(k = 5)89.946.084.615.487.547.582.117.9
", + "bbox": [ + 235, + 257, + 761, + 388 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4.1.3 PREDICTION ", + "text_level": 1, + "bbox": [ + 174, + 469, + 315, + 483 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In this experiment we analyze the effect of using feature selection as a pre-processing step for prediction. We first perform feature selection (either instance-wise or global) and then train a 3-layer fully connected network with Batch Normalization [12] in every layer (to avoid overfitting) to perform predictions on top of the (feature-selected) data. In this setting we compare the two global feature selection methods (LASSO and Tree) and one instance-wise feature selection method (L2X). Furthermore, we also compare with the predictive model without any feature selections (w/o FS) and the predictive model with ground truth globally relevant features9 (with Global). In particular, this allows us to demonstrate that the improvements in prediction performance are not just because the global feature selection performed implicitly by INVASE is better than the other global feature selection methods but are also due to the fact that we select features on an instance-wise level. Experiments here are conducted on synthetic data with 100 features but the same labelling procedures as above. ", + "bbox": [ + 173, + 494, + 825, + 661 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "As can be seen in Table 3, there is a significant performance improvement when discarding all of the irrelevant features (with Global). However, neither of the global feature selection methods (Tree and Lasso) are capable of achieving this improvement. On the other hand, INVASE is capable of achieving (and beating - in Syn4 and Syn6) this improvement, demonstrating its capability both at selecting features globally better than existing methods but also at improving on global selection with instance-wise selection (where relevant), to provide further improvements. On the other hand, $L 2 X$ performs worse than the global methods in Syn1-3, demonstrating an inability to perform even global feature selection in this higher dimensional setting (this is supported by the high dimensional discovery results in the Appendix), and in Syn4-6 is performing worse than with Global (which now is not even optimal). ", + "bbox": [ + 173, + 667, + 825, + 808 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Furthermore, even though we include Batch Normalization to avoid overfitting, with a small number of samples and high number of dimensions, the 3-layer fully connected network still suffers from overfitting as demonstrated by the significant difference in performance between w/o FS and with Global. This demonstrates the necessity of feature selection as a pre-processing step. Lastly, in comparison to with Global, with INVASE achieves performance gains in Syn4 and Syn6. It quantitatively shows that instance-wise feature selection can further improves the predictive model from ground truth global feature selection. ", + "bbox": [ + 174, + 814, + 823, + 883 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/dbadf4765c63a4956b3903cffa08ea6abd78c43ecb5ff0560682c8714bd5a452.jpg", + "table_caption": [ + "Table 3: Prediction performance comparison with and without feature selection methods (L2X, LASSO, Tree, INVASE, and Global). Global is using ground-truth globally relevant features for each dataset " + ], + "table_footnote": [], + "table_body": "
DatasetAUROC
w/o FSwith Globalwith INVASEwith Treewith L2Xwith LASSO
Syn1.578±.004.686±.005.690±.006.574±.101.498±.005.498±.006
Syn2.789±.003.873±.003.877±.003.872±.003.823±.029.555±.061
Syn3.854±.004.900±.003.902±.003.899±.001.862±.009.886±.003
Syn4.558±.021.774±.006.787±.004.684±.017.678±.024.514±.031
Syn5.662±.013.784±.005 .858±.004.784±.005.741±.004.709±.008.691±.024
Syn6.692±.015.877±.003.771±.031.827±.017.727±.025
DatasetAUPRC
w/o FSwith Globalwith INVASEwith Treewith L2Xwith LASSO
Syn1.567±.007.690±.006.694±.006.577±.102.498±.007.499±.008
Syn2.799±.005.878±.005.886±.004.878±.004.817±.031.591±.037
Syn3.861±.003.905±.002.907±.003.904±.002.860±.012.890±.002
Syn4.572±.019.794±.006.804±.004.681±.031.672±.025.536±.025
Syn5.665±.019.796±.005.797±.006.765±.003.719±.011.680±.040
Syn6.709±.018.870±.005.886±.004.779±.027.835±.017.757±.036
", + "bbox": [ + 173, + 102, + 828, + 361 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 176, + 440, + 823, + 468 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "4.2 REAL-WORLD DATA EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 486, + 455, + 500 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "4.2.1 DATA DESCRIPTION ", + "text_level": 1, + "bbox": [ + 176, + 512, + 367, + 526 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In this section we use two real-world datasets to perform a series of further experiments. The first, the Meta-Analysis Global Group in Chronic Heart Failure (MAGGIC) dataset [23], has 40,409 patients each with 31 measured features. The label is all-cause mortality. The second, the Prostate, Lung, Colorectal and Ovarian (PLCO) Cancer Screening Trial in the US and the European Randomized Study of Screening for Prostate Cancer (ERSPC) dataset [8; 26] contains 38,001 each with 106 measured features. The label in this dataset is mortality due to prostate cancer. We refer to this as the PLCO dataset. ", + "bbox": [ + 174, + 536, + 825, + 633 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "The first experiment we carried out was to create semi-synthetic datasets by using the labelling procedures Syn1-6 from above but with the features now coming from real data (instead of being i.i.d. Gaussian). The results of this experiment can be found in the Appendix. ", + "bbox": [ + 174, + 641, + 823, + 683 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "4.2.2 THE DISCOVERED FEATURE IMPORTANCE IN MAGGIC DATASET ", + "text_level": 1, + "bbox": [ + 176, + 699, + 673, + 713 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In this next experiment, we visualize the ability of INVASE to select features on an individualized level. Fig. 2(left) shows the selection probability (given by INVASE) of each feature for 20 randomly selected patients in the MAGGIC dataset. Fig. 2(right) shows the selection probability of each feature averaged over different binary splits of the data (i.e. when split into Male and Female). In Table 4, we also report the mean and variance of the number of selected features in each subgroup. ", + "bbox": [ + 174, + 722, + 825, + 792 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "As can be seen, INVASE discovers significantly different features for both individuals and for different subgroups of the dataset. ", + "bbox": [ + 173, + 799, + 821, + 828 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "4.2.3 RESULTS: PREDICTION USING REAL DATA VARIABLES WITH REAL LABEL ", + "text_level": 1, + "bbox": [ + 176, + 844, + 733, + 858 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Evaluating the performance of feature selection methods on real data is difficult, since ground truth relevance is often not known. We therefore cannot use TPR and FDR to evaluate the performance on real data. In our final experiment, therefore, we instead focus on prediction performance exactly as in 4.1.3 (except now both the features and label come from real data). ", + "bbox": [ + 174, + 867, + 823, + 922 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/d1951e735951992fdbed0a447435470530b7108fcf6a6da51afe008e69ba6a2e.jpg", + "image_caption": [ + "Figure 2: Left: The feature importance for each of 20 randomly selected patients in the MAGGIC dataset. Right: The average feature importance for different binary splits in the MAGGIC dataset. " + ], + "image_footnote": [], + "bbox": [ + 197, + 102, + 820, + 330 + ], + "page_idx": 9 + }, + { + "type": "table", + "img_path": "images/fee71c8a5e21b10c90ffcf8fa5b75f97f6f7c14483bd6e82625e1a1d12f99fa7.jpg", + "table_caption": [ + "Table 4: Selection probability of overall and patient subgroups by INVASE in MAGGIC dataset. (Mean $\\pm$ Std) " + ], + "table_footnote": [], + "table_body": "
OverallMaleDiabetesHypertensionSmokerHeart Failure
42.5±18.443.5±10.7 53.2±10.846.6±9.3 41.0±12.151.8±11.1
FemaleNon-diabetesNon-hypertension Non-smokerNo Heart Failure
40.8±15.639.3±8.040.0±9.343.2±7.039.6±6.9
", + "bbox": [ + 174, + 401, + 831, + 484 + ], + "page_idx": 9 + }, + { + "type": "table", + "img_path": "images/c993b7690edd123a9cd7b97a955966231a26dda017bf364afcb5ab3ee1abf035.jpg", + "table_caption": [ + "Table 5: Prediction performance for MAGGIC and PLCO dataset. " + ], + "table_footnote": [], + "table_body": "
DatasetsMetricsAUROC AUPRCAUROC AUPRC
Labels3year5year
MAGGICINVASEWithout INVASE.722±.005.720±.006.655±.010.639±.009.740±.005 .867±.006.730±.006 .855±.004
Labels5year10 year
PLCOINVASEWithout INVASE.637±.007.629±.008.329±.013.324±.011.673±.007.657±.006.506±.006.485±.008
", + "bbox": [ + 205, + 550, + 794, + 685 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "As can be seen in Table 5, INVASE consistently improves prediction performance in each of the two settings (different time horizons) in each dataset. ", + "bbox": [ + 174, + 750, + 825, + 779 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "5 FUTURE WORK ", + "text_level": 1, + "bbox": [ + 176, + 814, + 334, + 830 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "While this paper has focused on discovering relevant features in the static setting, this could also be extended to apply in the temporal setting. One such avenue of exploration for this would be to replace each of the networks with an RNN. Particular care will need to be taken in defining the problem, though; do we treat each stream as a feature or each time point of each stream? We leave this investigation to future work. ", + "bbox": [ + 174, + 853, + 825, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "ACKNOWLEDGEMENT ", + "text_level": 1, + "bbox": [ + 176, + 103, + 357, + 117 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "The authors would like to thank the reviewers for their helpful comments. The research presented in this paper was supported by the Office of Naval Research (ONR) and the NSF (Grant number: ECCS1462245, ECCS1533983, and ECCS1407712). ", + "bbox": [ + 174, + 133, + 825, + 176 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "REFERENCES \n[1] Sebastian Bach, Alexander Binder, Gregoire Montavon, Frederick Klauschen, Klaus-Robert ´ Muller, and Wojciech Samek. On pixel-wise explanations for non-linear classifier decisions by ¨ layer-wise relevance propagation. PloS one, 10(7):e0130140, 2015. \n[2] David Baehrens, Timon Schroeter, Stefan Harmeling, Motoaki Kawanabe, Katja Hansen, and Klaus-Robert MA˜ zller. How to explain individual classification decisions. ˇ Journal of Machine Learning Research, 11(Jun):1803–1831, 2010. \n[3] Emmanuel Candes, Yingying Fan, Lucas Janson, and Jinchi Lv. Panning for gold: \\` Model-free knockoffs for high-dimensional controlled variable selection. arXiv preprint arXiv:1610.02351, 2016. \n[4] Jianbo Chen, Le Song, Martin J Wainwright, and Michael I Jordan. Learning to explain: An information-theoretic perspective on model interpretation. arXiv preprint arXiv:1802.07814, 2018. \n[5] Anupam Datta, Shayak Sen, and Yair Zick. Algorithmic transparency via quantitative input influence: Theory and experiments with learning systems. In Security and Privacy (SP), 2016 IEEE Symposium on, pp. 598–617. IEEE, 2016. \n[6] Jeremy Elson, John JD Douceur, Jon Howell, and Jared Saul. Asirra: a captcha that exploits interest-aligned manual image categorization. 2007. \n[7] Pierre Geurts, Damien Ernst, and Louis Wehenkel. Extremely randomized trees. Machine learning, 63(1):3–42, 2006. \n[8] John K Gohagan, Philip C Prorok, Richard B Hayes, and Barnett-S Kramer. The prostate, lung, colorectal and ovarian (plco) cancer screening trial of the national cancer institute: history, organization, and status. Controlled clinical trials, 21(6):251S–272S, 2000. \n[9] Ian Goodfellow, Yoshua Bengio, and Aaron Courville. Deep Learning. MIT Press, 2016. http://www.deeplearningbook.org. \n[10] Isabelle Guyon and Andre Elisseeff. An introduction to variable and feature selection. ´ Journal of machine learning research, 3(Mar):1157–1182, 2003. \n[11] Mark Andrew Hall. Correlation-based feature selection for machine learning. 1999. \n[12] Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. arXiv preprint arXiv:1502.03167, 2015. \n[13] Eric Jang, Shixiang Gu, and Ben Poole. Categorical reparameterization with gumbel-softmax. arXiv preprint arXiv:1611.01144, 2016. \n[14] David P Kao, James D Lewsey, Inder S Anand, Barry M Massie, Michael R Zile, Peter E Carson, Robert S McKelvie, Michel Komajda, John JV McMurray, and JoAnn Lindenfeld. Characterization of subgroups of heart failure patients with preserved ejection fraction with possible implications for prognosis and treatment response. European journal of heart failure, 17(9):925–935, 2015. \n[15] Pieter-Jan Kindermans, Kristof Schutt, Klaus-Robert M ¨ uller, and Sven D ¨ ahne. Investigating ¨ the influence of noise and distractors on the interpretation of neural networks. arXiv preprint arXiv:1611.07270, 2016. ", + "bbox": [ + 173, + 193, + 826, + 929 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "[16] Kenji Kira and Larry A Rendell. A practical approach to feature selection. In Machine Learning Proceedings 1992, pp. 249–256. Elsevier, 1992. ", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "[17] Yaojin Lin, Qinghua Hu, Jinghua Liu, and Jie Duan. Multi-label feature selection based on max-dependency and min-redundancy. Neurocomputing, 168:92–103, 2015. ", + "bbox": [ + 174, + 140, + 823, + 171 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "[18] Scott M Lundberg and Su-In Lee. A unified approach to interpreting model predictions. In Advances in Neural Information Processing Systems, pp. 4765–4774, 2017. ", + "bbox": [ + 174, + 179, + 823, + 208 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "[19] Scott M Lundberg, Gabriel G Erion, and Su-In Lee. Consistent individualized feature attribution for tree ensembles. arXiv preprint arXiv:1802.03888, 2018. ", + "bbox": [ + 174, + 215, + 823, + 246 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "[20] Omkar M Parkhi, Andrea Vedaldi, Andrew Zisserman, and CV Jawahar. Cats and dogs. In Computer Vision and Pattern Recognition (CVPR), 2012 IEEE Conference on, pp. 3498–3505. IEEE, 2012. ", + "bbox": [ + 176, + 253, + 825, + 296 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "[21] Hanchuan Peng, Fuhui Long, and Chris Ding. Feature selection based on mutual information criteria of max-dependency, max-relevance, and min-redundancy. IEEE Transactions on pattern analysis and machine intelligence, 27(8):1226–1238, 2005. ", + "bbox": [ + 176, + 305, + 821, + 349 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "[22] Jan Peters and Stefan Schaal. Natural actor-critic. Neurocomputing, 71(7-9):1180–1190, 2008. ", + "bbox": [ + 174, + 357, + 821, + 373 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "[23] Stuart J Pocock, Cono A Ariti, John JV McMurray, Aldo Maggioni, Lars Køber, Iain B Squire, Karl Swedberg, Joanna Dobson, Katrina K Poppe, Gillian A Whalley, et al. Predicting survival in heart failure: a risk score based on 39 372 patients from 30 studies. European heart journal, 34(19):1404–1413, 2012. ", + "bbox": [ + 173, + 381, + 825, + 438 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "[24] Marco Tulio Ribeiro, Sameer Singh, and Carlos Guestrin. Why should i trust you?: Explaining the predictions of any classifier. In Proceedings of the 22nd ACM SIGKDD international conference on knowledge discovery and data mining, pp. 1135–1144. ACM, 2016. ", + "bbox": [ + 173, + 446, + 821, + 489 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "[25] Olaf Ronneberger, Philipp Fischer, and Thomas Brox. U-net: Convolutional networks for biomedical image segmentation. In International Conference on Medical image computing and computer-assisted intervention, pp. 234–241. Springer, 2015. ", + "bbox": [ + 173, + 497, + 823, + 541 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "[26] Fritz H Schroder, Jonas Hugosson, Monique J Roobol, Teuvo LJ Tammela, Stefano Ciatto, ¨ Vera Nelen, Maciej Kwiatkowski, Marcos Lujan, Hans Lilja, Marco Zappa, et al. Screening and prostate-cancer mortality in a randomized european study. New England Journal of Medicine, 360(13):1320–1328, 2009. ", + "bbox": [ + 173, + 549, + 825, + 606 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "[27] Avanti Shrikumar, Peyton Greenside, and Anshul Kundaje. Learning important features through propagating activation differences. arXiv preprint arXiv:1704.02685, 2017. ", + "bbox": [ + 171, + 614, + 823, + 645 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "[28] Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. arXiv preprint arXiv:1409.1556, 2014. ", + "bbox": [ + 171, + 652, + 823, + 683 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "[29] Karen Simonyan, Andrea Vedaldi, and Andrew Zisserman. Deep inside convolutional networks: Visualising image classification models and saliency maps. arXiv preprint arXiv:1312.6034, 2013. ", + "bbox": [ + 173, + 690, + 825, + 733 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "[30] Erik Strumbelj and Igor Kononenko. Explaining prediction models and individual predictions ˇ with feature contributions. Knowledge and information systems, 41(3):647–665, 2014. ", + "bbox": [ + 171, + 742, + 823, + 772 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "[31] Robert Tibshirani. Regression shrinkage and selection via the lasso. Journal of the Royal Statistical Society. Series B (Methodological), pp. 267–288, 1996. ", + "bbox": [ + 173, + 780, + 825, + 809 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "[32] Jinsung Yoon, William R Zame, Amitava Banerjee, Martin Cadeiras, Ahmed M Alaa, and Mihaela van der Schaar. Personalized survival predictions via trees of predictors: An application to cardiac transplantation. PloS one, 13(3):e0194985, 2018. ", + "bbox": [ + 173, + 818, + 823, + 861 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "[33] Jinsung Yoon, William R Zame, and Mihaela van der Schaar. Tops: Ensemble learning with trees of predictors. IEEE Transactions on Signal Processing, 66(8):2141–2152, 2018. ", + "bbox": [ + 173, + 869, + 821, + 898 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "APPENDIX ", + "text_level": 1, + "bbox": [ + 176, + 103, + 264, + 118 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "SUMMARY OF RELATED WORKS ", + "text_level": 1, + "bbox": [ + 176, + 136, + 444, + 152 + ], + "page_idx": 12 + }, + { + "type": "table", + "img_path": "images/15e82c75753c054395c31ef86d2ef4f55e2baa90abbfb3aba438ff60ab8acf41.jpg", + "table_caption": [], + "table_footnote": [ + "Table 6: Summary of the related works. (NN: Neural networks, KL: Kullback-Leibler) " + ], + "table_body": "
Key ideasExperimentsshownGlobal/Instance-wiseModelagnostic#of relevantfeatures
SCFS[11]Max-dependency min-redundancycriteria with Pearson correlationsFeature selectionGlobalYesNot needed
MIFS[21]Max-dependency min-redundancycriteria with Mutual InformationFeature selectionGlobalYesNot needed
LASSO[31]Linear regressionwith l1-norm penaltyFeature selectionPredictionGlobalYesNot needed
Knock-off[3]Comparison between knock-offvariablesand real variablesFeature selectionHypothesis testGlobalYesNot needed
L2X[4]Mutual Information maximizationwith Gumbel-softmaxInterpretationInstance-wiseYesShould begiven
LIME[24]Locally linearapproximationInterpretationInstance-wiseYesShould begiven
Shapley[18]Shapley value estimationto quantify feature importanceFeature selectionInstance-wiseYesShould begiven
DeepLIFT[27]Decompose the output ofNN on a reference inputInterpretationInstance-wiseNoShould begiven
Saliency[29]Backpropagation from theoutput of the NN to the inputInterpretationInstance-wiseNoShould begiven
Tree SHAP[19]Shapley value estimationonly for tree-ensemble modelsInterpretationInstance-wiseNoShould begiven
Pixel-wise[1]Measuring the effects onthe output using input perturbationInterpretationInstance-wiseNoShould begiven
INVASE(Ours)Minimize KL divergence usingdeep NN influenced byactor-critic modelsFeature selectionInterpretationPredictionInstance-wiseYesNot needed
", + "bbox": [ + 173, + 172, + 825, + 570 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "EXTENDING INVASE TO REGRESSION ", + "text_level": 1, + "bbox": [ + 174, + 627, + 496, + 643 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "To extend our model to the setting where $Y$ is continuous (regression problem), we replace the estimated loss with the reconstruction error as follows. ", + "bbox": [ + 174, + 659, + 823, + 686 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/f3ff08ea15fcc6651310ee5d6048638b79b883ff45b9d9ad802b4a86a9bacd2e.jpg", + "text": "$$\n\\hat { l } ( { \\bf x } , { \\bf s } ) = - | | y - f ^ { \\phi } ( { \\bf x } , { \\bf s } ) | | _ { 2 }\n$$", + "text_format": "latex", + "bbox": [ + 403, + 691, + 591, + 712 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "where $f ^ { \\phi } : \\mathcal { X } \\mathbb { R }$ is now the (continuous) predictor function trained to minimize the $\\ell _ { 2 }$ -norm between its outputs and the real labels. As noted in [9], when the distribution of $Y$ given $\\mathbf { X }$ is Gaussian, minimizing the $l _ { 2 }$ -norm is equivalent to minimizing the KL divergence. ", + "bbox": [ + 174, + 718, + 825, + 761 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "DETAILS OF INVASE ", + "text_level": 1, + "bbox": [ + 176, + 780, + 356, + 796 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "In the experiments, the depth of the selector, predictor, and baseline networks is set to 3. The number of hidden nodes in each layer is $d$ and $2 d$ , respectively. We use either ReLu or SeLu as the activation functions of each layer except for the output layer where we use the sigmoid activation function for the selector network and softmax activation function for the predictor and baseline networks. The number of samples in each mini-batch is 1000 for the selector, predictor, and baseline networks. We use cross-validation to select $\\lambda$ among $\\{ 0 . 1 , 0 . 3 , 0 . 5 , 1 , 2 , 5 , 1 0 \\}$ . We use tensorflow to implement INVASE. The source-code can be found at https://github.com/iclr2018invase/ INVASE/. ", + "bbox": [ + 173, + 811, + 825, + 924 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "DETAILS OF BENCHMARKS ", + "text_level": 1, + "bbox": [ + 176, + 102, + 401, + 118 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We use the following links for the implementations of 7 benchmarks. ", + "bbox": [ + 173, + 133, + 625, + 148 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "• L2X: https://github.com/Jianbo-Lab/L2X \n• LIME: https://github.com/marcotcr/lime \n• Shapley: https://github.com/slundberg/shap \n• Knock-off: http://web.stanford.edu/group/candes/knockoffs/ software/knockoff/ \n• Tree: http://scikit-learn.org/stable/modules/generated/ sklearn.ensemble.ExtraTreesClassifier.html \n• LASSO: http://scikit-learn.org/stable/modules/linear_model. html#lasso ", + "bbox": [ + 215, + 159, + 825, + 310 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "For L2X, we use the same network settings used in INVASE for fair comparisons. For SCFS, we explicitly implement from the reference ([11]). ", + "bbox": [ + 174, + 321, + 823, + 351 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "HIGH DIMENSIONAL DISCOVERY ", + "text_level": 1, + "bbox": [ + 176, + 372, + 446, + 387 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "To demonstrate the scalability of our method, we run an experiment in which we increase the total number of features to 100. The features are generated as a 100-dimensional Gaussian with no correlations $( \\mathcal { N } ( \\mathbf { 0 } , \\mathbf { I } ) )$ and the relationships between features and label remains as in Table 1 in the main manucript (i.e. we are adding 89 additional noisy signals that have no effect on the label). ", + "bbox": [ + 173, + 401, + 825, + 459 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/0dbeaceec12cf64607991eadc55669325f26829cbb74b60c1428be4250f697ea.jpg", + "table_caption": [ + "Table 7: Relevant feature discovery for synthetic datasets with 100 features " + ], + "table_footnote": [], + "table_body": "
DatasetSyn1Syn2Syn3Syn4Syn5Syn6
Metrics (%) TPRFDRTPRFDRTPRFDRTPRFDRTPRFDRTPRFDR
INVASE100.00.0100.00.0100.00.066.340.573.223.790.515.4
L2X6.193.981.418.657.742.348.546.435.460.866.333.7
LIME0.0100.0 95.6100.0 95.10.092.77.343.847.442.350.150.149.9
Shapley4.44.988.811.250.243.449.944.262.537.5
Knock off0.064.93.771.274.924.928.259.833.159.446.953.0
Tree49.950.1100.00.0100.00.040.749.556.737.558.441.6
SCFS2.597.55.394.774.925.127.074.630.662.138.361.7
LASSO2.597.54.096.075.324.728.373.236.056.945.954.1
", + "bbox": [ + 173, + 472, + 825, + 623 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "As can be seen in Table 7, INVASE also works consistently better than all other benchmarks in all 6 synthetic datasets in this setting. In fact, we see a significant reduction in performance (compared to the 11 feature setting) for L2X in Syn1, with the TPR dropping more than $90 \\%$ leading to an almost complete failure of the method to detect any relevant features. In particular, we see that L2X does not scale as well as INVASE with the dimensionality of the data, which is particularly limiting for a feature selection method. ", + "bbox": [ + 174, + 671, + 825, + 756 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We also compare the CPU times of the algorithm for training and testing with other instance-wise feature selection benchmarks to show the scalability in terms of computational complexity. As can be seen in Table 8, INVASE is much faster (10 times) than LIME and Shapley methods and comparable with L2X; we see that INVASE takes approximately $50 \\%$ longer to run than L2X, which can be accounted for by the addition of a 3rd network (the baseline network) in INVASE that is not present in L2X. Note, however, that this baseline network can be trained in parallel with the predictor network and we believe that doing so would lead to both INVASE and L2X having the same run-time. ", + "bbox": [ + 174, + 762, + 825, + 875 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/9e9edbea9147a226bbbdf0d54fcaa70038653039df8403d373be160bf19fe5ea.jpg", + "table_caption": [ + "Table 8: Comparison of CPU clock time across different instance-wise feature selection methods on average across Syn1 to Syn6 with 100 features and 10,000 samples on training/testing, respectively " + ], + "table_footnote": [], + "table_body": "
MethodsINVASEL2XShapleyLIME
TrainTest1327.69s0.38s939.82s0.78s12801.21s0.06s-18931.98s
", + "bbox": [ + 295, + 102, + 700, + 159 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "HYPER-PARAMETER ANALYSIS ", + "text_level": 1, + "bbox": [ + 176, + 223, + 434, + 238 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "In the following experiment, we provide results for various values of the hyper-parameter, $\\lambda$ , in the Syn4, Syn5, and Syn6 100-dimensional setting. Table 9 gives the results in terms of TPR and FDR. Note that in the other experiments, we select the hyper-parameter $\\lambda$ which maximizes the predictor accuracy in terms of AUROC. ", + "bbox": [ + 174, + 253, + 825, + 310 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/228d43dc72f9972ed23d609e03b74f859c9ae854a3075cdf06b64abe8a48619b.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
DatasetsSyn4Syn5Syn6
X/Metris (%)TPRFDRTPRFDRTPRFDR
0.198.094.390.093.499.292.3
0.393.787.984.288.996.986.7
0.599.043.188.350.699.631.7
166.340.573.223.790.515.4
20.00.025.44.167.13.6
50.00.07.52.77.62.5
100.00.00.00.00.00.0
", + "bbox": [ + 287, + 323, + 710, + 469 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Table 9: Relevant feature discovery results for various values of the hyper-parameter $\\lambda$ in the Syn4, Syn5, and Syn6 100-dimensional setting. ", + "bbox": [ + 171, + 481, + 823, + 511 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "ADDITIONAL RESULTS ON COMPLEX SYNTHETIC DATASETS ", + "text_level": 1, + "bbox": [ + 174, + 102, + 678, + 118 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "In the main paper, the relevant subset for a sample in each of our variable synthetic datasets (Syn4- 6) depended on $X _ { 1 1 }$ only, which was unused in the rest of the model (i.e. $X _ { 1 1 }$ determined only the relevant subset, and was otherwise unused as a predictive variable). In this set of experiments, we investigate the effect of having the subset relevance depend on a variable that is also used in the model itself (Syn4A, Syn5A, Syn6A). We then investigate the effect of having more than one variable being used to determine subset relevance (Syn4B, Syn5B, Syn6B, Syn7). The results for these are reported in Tables 10 and 11, respectively. ", + "bbox": [ + 174, + 132, + 825, + 231 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "The input features are generated from a 100-dimensional Gaussian distribution with no correlations across the features $( \\mathbf { X } \\sim \\mathcal { N } ( \\mathbf { 0 } , \\mathbf { I } ) )$ . $Y$ is generated according to $\\begin{array} { r } { \\mathbb { P } ( Y = 1 | \\mathbf { X } ) = \\frac { 1 } { 1 + \\mathrm { l o g i t } ( \\mathbf { X } ) } } \\end{array}$ with the logit value for each synthetic dataset now defined as follows: ", + "bbox": [ + 176, + 237, + 825, + 282 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "• Syn4A: If $X _ { 1 } < 0$ , ${ \\mathrm { l o g i t } } = \\exp ( X _ { 1 } X _ { 2 } )$ , otherwise, logit $= \\textstyle \\exp ( \\sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )$ . \n• Syn5A: If $X _ { 1 } < 0$ , ${ \\mathrm { l o g i t } } = \\exp ( X _ { 1 } X _ { 2 } )$ , otherwise, logi $\\mathrm { t = - 1 0 } \\times \\sin 2 X _ { 7 } + 2 | X _ { 8 } | + X _ { 9 } +$ $\\exp ( - X _ { 1 0 } )$ . \n• $X _ { 7 } < 0$ , $\\scriptstyle { \\mathrm { l o g i t } } = \\exp ( \\sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )$ , otherwise, logi $\\mathrel { \\mathop { : = } } - 1 0 \\times \\sin 2 X _ { 7 } + 2 | X _ { 8 } | +$ $X _ { 9 } + \\exp ( - X _ { 1 0 } )$ ", + "bbox": [ + 210, + 292, + 825, + 378 + ], + "page_idx": 15 + }, + { + "type": "table", + "img_path": "images/0544457c786b80e92f43a08cbe1f29286a4ec0b648ed394985aa4e4a5906042c.jpg", + "table_caption": [ + "Table 10: Relevant feature discovery results for complex synthetic datasets (Syn4A, 5A, 6A) with 100 features " + ], + "table_footnote": [], + "table_body": "
Dataset 1Syn4ASyn5ASyn6A
Metrics (%)TPRFDRTPRFDRTPRFDR
INVASE+77.514.585.98.889.97.3
L2X65.039.348.057.474.435.5
LIME Shapley56.3 71.849.2 39.858.2 71.048.8 41.358.9 68.947.8 38.2
Knock off59.862.655.049.965.040.0
Tree61.346.975.639.466.940.0
SCFS52.866.955.350.650.451.8
LASSO61.061.255.050.053.948.8
", + "bbox": [ + 295, + 393, + 702, + 565 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "• Syn4B: If $X _ { 1 } X _ { 3 } < 0$ , ${ \\mathrm { l o g i t } } = \\exp ( X _ { 1 } X _ { 2 } )$ , otherwise, logit $= \\textstyle \\exp ( \\sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )$ ", + "bbox": [ + 217, + 626, + 771, + 643 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "• Syn5B: If $X _ { 1 } X _ { 7 } < 0$ , ${ \\mathrm { l o g i t } } = \\exp ( X _ { 1 } X _ { 2 } )$ , otherwise, logit $= - 1 0 \\times \\sin 2 X _ { 7 } + 2 | X _ { 8 } | +$ $X _ { 9 } + \\exp ( - X _ { 1 0 } )$ . ", + "bbox": [ + 217, + 645, + 823, + 675 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "• Syn6B: If $X _ { 3 } X _ { 7 } \\ < \\ 0$ , logit $= \\textstyle \\exp ( \\sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )$ , otherwise, logit $= - 1 0 \\times \\sin 2 X _ { 7 } +$ $2 | X _ { 8 } | + X _ { 9 } + \\exp ( - X _ { 1 0 } )$ . ", + "bbox": [ + 215, + 679, + 820, + 709 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "• Syn7: ", + "bbox": [ + 217, + 713, + 274, + 727 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "– If $X _ { 1 } < 0 , X _ { 2 } < 0$ , ${ \\mathrm { l o g i t } } = \\exp ( X _ { 1 } X _ { 2 } )$ \n– If $X _ { 1 } < 0 , X _ { 2 } \\geq 0$ , $\\scriptstyle { \\mathrm { l o g i t } } = \\exp ( \\sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )$ . \n– If $X _ { 1 } \\geq 0 , X _ { 2 } < 0$ , $\\mathrm { l o g i t = - 1 0 \\times \\sin 2 X _ { 7 } + 2 } | X _ { 8 } | + X _ { 9 } + \\exp ( - X _ { 1 0 } ) .$ – If $X _ { 1 } \\geq 0 , X _ { 2 } \\geq 0$ $\\begin{array} { r } { ) , \\mathrm { l o g i t } = 0 . 5 \\times \\exp ( X _ { 1 } X _ { 2 } ) + 0 . 5 \\times \\exp ( \\sum _ { i = 3 } ^ { 4 } X _ { i } ^ { 2 } - 2 ) . } \\end{array}$ ", + "bbox": [ + 248, + 729, + 756, + 800 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "RESULTS ON SEMI-SYNTHETIC DATASETS ", + "text_level": 1, + "bbox": [ + 174, + 824, + 519, + 838 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "In this experiment, we use real features (which have correlation across features) but generate the labels as in the synthetic experiments from the main paper, using Syn1-Syn6. This allows us to know the ground truth relevance of the features, and calculate TPR and FDR, while using unknown and correlated feature distributions (instead of the unrealistic setting of i.i.d. Gaussian used in the fully synthetic experiment). The results for the MAGGIC and PLCO datasets are given below. ", + "bbox": [ + 174, + 853, + 825, + 924 + ], + "page_idx": 15 + }, + { + "type": "table", + "img_path": "images/11ee36a1f0fa1081e290fc92a98211f9b2fead60c1ea567c40f04b63db65f83b.jpg", + "table_caption": [ + "Table 11: Relevant feature discovery results for complex synthetic datasets (Syn4B, 5B, 6B, 7) with 100 features " + ], + "table_footnote": [], + "table_body": "
DatasetSyn4BSyn5BSyn6BSyn7
Metrics (%)TPRFDRTPRFDRTPRFDRTPRFDR
INVASE+65.530.185.015.086.527.886.832.4
L2X43.253.450.350.344.655.435.370.9
LIME56.837.271.927.269.830.256.451.0
Shapley51.443.577.224.169.330.761.845.6
Knock off5.387.473.325.259.940.154.160.0
Tree56.737.473.925.070.129.971.640.3
SCFS3.796.272.326.361.138.922.977.5
LASSO4.295.673.325.060.139.924.975.8
", + "bbox": [ + 245, + 101, + 754, + 273 + ], + "page_idx": 16 + }, + { + "type": "table", + "img_path": "images/14434c20da91e76cd8ad69785557eb8993df2570dfe9d36380f32ed36945e602.jpg", + "table_caption": [ + "Table 12: Relevant feature discovery for real datasets with synthetic labels using MAGGIC dataset " + ], + "table_footnote": [], + "table_body": "
DatasetSyn1Syn2Syn3Syn4Syn5Syn6
Metrics (%) TPRFDRTPRFDRTPRFDRTPRFDRTPRFDRTPRFDR
INVASE100.00.0100.00.0100.00.085.90.072.90.181.013.2
L2X LIME68.8 46.931.2 53.199.9 99.90.1 0.183.0 87.217.0 12.860.0 63.631.3 24.468.3 50.222.3 37.673.5 68.726.5 31.3
Shapley Knock off73.9 27.526.1 65.094.5 77.55.5 22.581.0 100.019.0 0.065.323.9 34.461.229.069.930.1
Tree100.00.0100.00.0100.00.057.0 56.329.756.1 51.629.8 40.258.0 46.742.0 53.3
SCFS30.070.053.047.0100.00.052.039.954.032.464.535.5
LASSO75.025.0100.0
25.075.00.060.733.156.129.858.241.8
", + "bbox": [ + 173, + 328, + 825, + 481 + ], + "page_idx": 16 + }, + { + "type": "table", + "img_path": "images/f3d1087456c13018c59b0bddc3183000e07ba7422b0107ee621a80b1b8fe35d5.jpg", + "table_caption": [ + "Table 13: Relevant feature discovery for real datasets with synthetic labels using PLCO dataset " + ], + "table_footnote": [], + "table_body": "
DatasetSyn1Syn2Syn3Syn4Syn5Syn6
Metrics (%)TPRFDRTPRFDRTPRFDRTPRFDRTPRFDRTPRFDR
INVASE35.90.0100.00.084.07.059.238.664.631.770.029.9
L2X LIME0.0 1.0100.0 99.062.2 70.337.8 29.743.6 74.956.4 25.141.9 43.555.4 55.921.5 26.876.7 68.966.9 56.833.1 43.2
Shapley Knock off5.494.668.531.567.932.132.769.439.658.648.551.5
Tree15.0 0.050.0 100.085.0 71.015.0 29.0100.0 75.00.0 25.046.1 34.552.1 66.334.558.3 54.760.040.0
SCFS10.090.061.039.093.86.243.255.743.836.963.1
LASSO31.063.655.544.5
0.0100.072.527.5100.00.039.260.833.268.245.055.0
", + "bbox": [ + 174, + 521, + 825, + 675 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "As demonstrated in Tables 12 and 13, INVASE outperforms all other methods across all 6 of the synthetic-label settings using real features. This also demonstrates the capability of INVASE in settings where there are unknown correlation structures in the features. ", + "bbox": [ + 176, + 727, + 821, + 770 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "5.1 PREDICTIVE PERFORMANCE COMPARISON ON REAL-WORLD DATASETS ", + "text_level": 1, + "bbox": [ + 174, + 103, + 707, + 118 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "In this experiment, we evaluate the predictive performance gains of using each feature selection method as a pre-processing step on the two real datasets, MAGGIC and PLCO (as was done for synthetic data in Section 4.1.3). For each method, we first perform feature selection and then train a predictive model on top of the feature-selected data, where the model has the same architecture as the INVASE predictor network (to create a fair comparison of methods). As can be seen in Table 14, INVASE significantly outperform the other approaches. ", + "bbox": [ + 173, + 128, + 826, + 214 + ], + "page_idx": 17 + }, + { + "type": "table", + "img_path": "images/c803766f451fc5b3654afb16d72b0390c786a1dd57e142744da98c4a33ef8aa9.jpg", + "table_caption": [], + "table_footnote": [ + "Table 14: Predictive Performance Comparison on two real-world datasets (MAGGIC and PLCO) in terms of AUROC and AUPRC " + ], + "table_body": "
DatasetsMAGGICPLCO
Labels3-year5-year5-year10-year
MetricsAUROCAUPRCAUROCAUPRCAUROCAUPRCAUROCAUPRC
INVASE0.7220.6550.7400.8670.6370.3290.6730.506
L2X0.6090.5290.6070.7940.5580.1700.5830.365
LIME0.6370.55960.6340.8080.5970.1830.6010.374
Shapley0.6410.5570.6170.7970.6140.1940.6150.381
Knockoff0.6860.6140.7110.8530.6190.2300.6580.475
Tree0.6780.6040.7080.8500.6320.2690.6550.469
SCFS0.6830.6230.7230.8570.6320.2310.6320.444
LASSO0.6920.6150.7090.8470.6230.2180.6560.467
", + "bbox": [ + 173, + 227, + 859, + 420 + ], + "page_idx": 17 + }, + { + "type": "table", + "img_path": "images/e35cf65158a273158031a10406da7db9ca256b0bc8cb405f712899e36ab56db7.jpg", + "table_caption": [ + "CORRELATIONS BETWEEN FEATURES AND LABELS IN THE SYNTHETIC AND SEMI-SYNTHETIC EXPERIMENTS ", + "Table 15: Correlation between features and labels in Synthetic datasets with 100 features. Ground truth (in the global sense) relevant features are given in bold. Features with correlation $> 0 . 0 5$ are highlighted in red. " + ], + "table_footnote": [], + "table_body": "
VariablesSyn1Syn2Syn3Syn4Syn5Syn6
X1 X0.003 0.0010.008 0.0050.006 0.0060.009 0.0050.007 0.0150.006 0.005
X30.006 0.0060.0110.0010.0170.0160.010
X40.0030.0030.0020.0000.002
X50.0030.0150.0220.0040.0170.028
X60.0030.0040.0050.0020.0040.005
X70.0130.0090.4810.0020.2420.235
X80.0100.0080.0120.0030.0100.022
X90.0010.0030.2390.0020.1150.121
X100.0020.0030.3080.0030.1490.144
X110.0140.0120.0040.0280.0180.002
", + "bbox": [ + 285, + 155, + 712, + 337 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "As can be seen in Table 15, among 33 relevant features, only 9 features have more than 0.05 (linear) correlation with the label. In particular, using a linear model, it is very hard to discover the relevant features. However, Knock-off (based on LASSO and linear correlations), LASSO, and SCFS are linear models, resulting in a poor performance in our experiments. The above table results are directly reflected in the results given in the main manuscript. ", + "bbox": [ + 176, + 406, + 823, + 478 + ], + "page_idx": 18 + }, + { + "type": "table", + "img_path": "images/7d8c11eb2c5b2ac1feec8ec8c572bc606876dabb945aac1fbe26d5c9b2f2d215.jpg", + "table_caption": [ + "Table 16: Correlation between features and labels in MAGGIC datasets. Ground truth relevant features are described in bold. Features with correlation $> 0 . 0 5$ are described in red " + ], + "table_footnote": [], + "table_body": "
VariablesSyn1Syn2Syn3Syn4Syn5Syn6
X10.028 0.0020.030 0.0110.070 0.0090.011 0.0010.044 0.0010.026 0.012
X0.0180.0790.0080.0380.0060.046
X3 X40.0050.1130.0060.0560.0010.055
0.0060.0340.013
X5 X60.0190.1140.032 0.0270.0990.0160.036
0.0050.0100.0000.0180.004
X70.3670.2620.272
X80.0200.0300.1120.0230.0750.082
X90.0250.0220.2990.0060.2160.200
X100.070.0430.3280.0270.2220.206
X110.0090.0060.0340.0460.0180.058
", + "bbox": [ + 287, + 491, + 712, + 671 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "We do the same analysis for the MAGGIC dataset; results are given in Table 16. We see that here the linear correlation with the label is stronger and this is reflected in Tables 12 and 13, where all of the linear models performed better than in the fully-synthetic settings. However, we note that although they had a better performance, in most cases it was still not comparable with INVASE. ", + "bbox": [ + 174, + 727, + 825, + 784 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "DEFINITION OF TPR AND FDR ", + "bbox": [ + 174, + 102, + 434, + 118 + ], + "page_idx": 19 + }, + { + "type": "table", + "img_path": "images/64d2b8578fbbdd44b42be31dcbf0b8937c73e210d2b15db9b40723aa8fa80a58.jpg", + "table_caption": [ + "Figure 3: The definitions of True Positive Rate (TPR) and False Discovery Rate (FDR) " + ], + "table_footnote": [], + "table_body": "
True Condition
PositiveNegative
PredictedConditionPositiveTruePositiveFalsePositive
NegativeFalseNegativeTrueNegative
", + "bbox": [ + 276, + 140, + 720, + 299 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "୘୰୳ୣ ୔୭ୱ୧୲୧୴ୣ \nTrue Positive Rate (TPR) $=$ ୘୰୳ୣ ୔୭ୱ୧୲୧୴ୣା୊ୟ୪ୱୣ ୒ୣ୥ୟ୲୧୴ୣ ୊ୟ୪ୱୣ ୔୭ୱ୧୲୧୴ୣ \nFalse Discovery Rate (FDR) $=$ ୘୰୳ୣ ୔୭ୱ୧୲୧୴ୣ ୊ୟ୪ୱୣ ୔୭ୱ୧୲୧୴ୣ $^ +$ ", + "bbox": [ + 276, + 315, + 714, + 395 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "COMPUTER VISION ", + "text_level": 1, + "bbox": [ + 176, + 102, + 338, + 118 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Another natural application of INVASE is in computer vision. To briefly demonstrate the applicability and capability of INVASE to computer vision, we conduct two experiments using the Kaggle Dogs vs. Cats dataset (https://www.kaggle.com/c/dogs-vs-cats) [6] and the Oxford Pet dataset (http://www.robots.ox.ac.uk/˜vgg/data/pets/) [20]. The goal is to select a set $1 6 \\times 1 6$ patches of each image that maximize the predictive capability of a model. In order to apply INVASE to this problem, we simply treat each $1 6 \\times 1 6$ patch as a feature. ", + "bbox": [ + 173, + 133, + 825, + 217 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "We use the U-Net [25] architecture for the selector network and the VGG network [28] architecture for the predictor and baseline networks. Below we give qualitative results of INVASE applied to these datasets, where we see that INVASE successfully identifies patches of each image in which the animal’s face is visible. ", + "bbox": [ + 174, + 224, + 825, + 280 + ], + "page_idx": 20 + }, + { + "type": "image", + "img_path": "images/4f36cf05a53bf3d7e37f5224237ed6e770fab264b6463ced2d9ee180b9a626b6.jpg", + "image_caption": [ + "Figure 4: Selected $1 6 \\mathrm { ~ x ~ } 1 6$ patches by INVASE on Kaggle Dogs vs. Cats dataset - Cats " + ], + "image_footnote": [], + "bbox": [ + 196, + 282, + 802, + 844 + ], + "page_idx": 20 + }, + { + "type": "image", + "img_path": "images/aa7861ab9378342c4713f4385cc0c535523fb2e28b91aa84c9951a7e10e9b6d0.jpg", + "image_caption": [ + "Figure 5: Selected $1 6 \\times 1 6$ patches by INVASE on Kaggle Dogs vs. Cats dataset - Dogs " + ], + "image_footnote": [], + "bbox": [ + 196, + 199, + 802, + 791 + ], + "page_idx": 21 + }, + { + "type": "image", + "img_path": "images/b5bc222942ad195921fdf291082c28ac5a6e4f8c2d9edef9031184a9a0ca0f60.jpg", + "image_caption": [ + "Figure 6: Selected $1 6 \\times 1 6$ patches by INVASE on Oxford Pet dataset - Cats " + ], + "image_footnote": [], + "bbox": [ + 196, + 229, + 802, + 765 + ], + "page_idx": 22 + }, + { + "type": "image", + "img_path": "images/c0d45684db148f7fe42f9625cf27b015fa3f4dba35149e59b0d12a308dbc8f23.jpg", + "image_caption": [ + "Figure 7: Selected $1 6 \\mathrm { ~ x ~ } 1 6$ patches by INVASE on Oxford Pet dataset - Dogs " + ], + "image_footnote": [], + "bbox": [ + 196, + 228, + 800, + 765 + ], + "page_idx": 23 + } +] \ No newline at end of file diff --git a/parse/train/BJg_roAcK7/BJg_roAcK7_middle.json b/parse/train/BJg_roAcK7/BJg_roAcK7_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..71d84679e6bc4dea6061a0b5ea4f0d3339a58f7d --- /dev/null +++ b/parse/train/BJg_roAcK7/BJg_roAcK7_middle.json @@ -0,0 +1,45413 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 505, + 97 + ], + "score": 1.0, + "content": "INVASE: INSTANCE-WISE VARIABLE SELECTION US-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 98, + 294, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 294, + 118 + ], + "score": 1.0, + "content": "ING NEURAL NETWORKS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 135, + 323, + 180 + ], + "lines": [ + { + "bbox": [ + 112, + 135, + 173, + 148 + ], + "spans": [ + { + "bbox": [ + 112, + 135, + 173, + 148 + ], + "score": 1.0, + "content": "Jinsung Yoon", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 145, + 324, + 160 + ], + "spans": [ + { + "bbox": [ + 111, + 145, + 324, + 160 + ], + "score": 1.0, + "content": "Department of Electrical and Computer Engineering", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 113, + 158, + 213, + 168 + ], + "spans": [ + { + "bbox": [ + 113, + 158, + 213, + 168 + ], + "score": 1.0, + "content": "UCLA, California, USA", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 113, + 168, + 241, + 180 + ], + "spans": [ + { + "bbox": [ + 113, + 168, + 241, + 180 + ], + "score": 1.0, + "content": "jsyoon0823@g.ucla.edu", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.0 + }, + { + "type": "text", + "bbox": [ + 334, + 136, + 508, + 180 + ], + "lines": [ + { + "bbox": [ + 333, + 135, + 395, + 147 + ], + "spans": [ + { + "bbox": [ + 333, + 135, + 395, + 147 + ], + "score": 1.0, + "content": "James Jordon", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 332, + 145, + 468, + 159 + ], + "spans": [ + { + "bbox": [ + 332, + 145, + 468, + 159 + ], + "score": 1.0, + "content": "Engineering Science Department", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 333, + 157, + 438, + 169 + ], + "spans": [ + { + "bbox": [ + 333, + 157, + 438, + 169 + ], + "score": 1.0, + "content": "University of Oxford, UK", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 333, + 169, + 509, + 180 + ], + "spans": [ + { + "bbox": [ + 333, + 169, + 509, + 180 + ], + "score": 1.0, + "content": "james.jordon@wolfson.ox.ac.uk", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6.0 + }, + { + "type": "text", + "bbox": [ + 113, + 196, + 425, + 251 + ], + "lines": [ + { + "bbox": [ + 111, + 194, + 218, + 209 + ], + "spans": [ + { + "bbox": [ + 111, + 194, + 218, + 209 + ], + "score": 1.0, + "content": "Mihaela van der Schaar", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 112, + 207, + 233, + 219 + ], + "spans": [ + { + "bbox": [ + 112, + 207, + 233, + 219 + ], + "score": 1.0, + "content": "University of Cambridge, UK", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 111, + 218, + 426, + 230 + ], + "spans": [ + { + "bbox": [ + 111, + 218, + 426, + 230 + ], + "score": 1.0, + "content": "Department of Electrical and Computer Engineering, UCLA, California, USA", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 112, + 229, + 254, + 241 + ], + "spans": [ + { + "bbox": [ + 112, + 229, + 254, + 241 + ], + "score": 1.0, + "content": "Alan Turing Institute, London, UK", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 111, + 240, + 228, + 252 + ], + "spans": [ + { + "bbox": [ + 111, + 240, + 228, + 252 + ], + "score": 1.0, + "content": "mihaela@ee.ucla.edu", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 278, + 281, + 333, + 293 + ], + "lines": [ + { + "bbox": [ + 276, + 279, + 336, + 295 + ], + "spans": [ + { + "bbox": [ + 276, + 279, + 336, + 295 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 143, + 306, + 468, + 437 + ], + "lines": [ + { + "bbox": [ + 142, + 306, + 469, + 317 + ], + "spans": [ + { + "bbox": [ + 142, + 306, + 469, + 317 + ], + "score": 1.0, + "content": "The advent of big data brings with it data with more and more dimensions and thus", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 140, + 316, + 469, + 330 + ], + "spans": [ + { + "bbox": [ + 140, + 316, + 469, + 330 + ], + "score": 1.0, + "content": "a growing need to be able to efficiently select which features to use for a variety", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 327, + 470, + 340 + ], + "spans": [ + { + "bbox": [ + 141, + 327, + 470, + 340 + ], + "score": 1.0, + "content": "of problems. While global feature selection has been a well-studied problem for", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 339, + 469, + 351 + ], + "spans": [ + { + "bbox": [ + 141, + 339, + 469, + 351 + ], + "score": 1.0, + "content": "quite some time, only recently has the paradigm of instance-wise feature selection", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 349, + 469, + 362 + ], + "spans": [ + { + "bbox": [ + 141, + 349, + 469, + 362 + ], + "score": 1.0, + "content": "been developed. In this paper, we propose a new instance-wise feature selection", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 361, + 469, + 372 + ], + "spans": [ + { + "bbox": [ + 141, + 361, + 469, + 372 + ], + "score": 1.0, + "content": "method, which we term INVASE. INVASE consists of 3 neural networks, a selec-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 142, + 372, + 469, + 383 + ], + "spans": [ + { + "bbox": [ + 142, + 372, + 469, + 383 + ], + "score": 1.0, + "content": "tor network, a predictor network and a baseline network which are used to train", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 382, + 470, + 396 + ], + "spans": [ + { + "bbox": [ + 141, + 382, + 470, + 396 + ], + "score": 1.0, + "content": "the selector network using the actor-critic methodology. Using this methodology,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 393, + 469, + 406 + ], + "spans": [ + { + "bbox": [ + 141, + 393, + 469, + 406 + ], + "score": 1.0, + "content": "INVASE is capable of flexibly discovering feature subsets of a different size for", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 405, + 470, + 416 + ], + "spans": [ + { + "bbox": [ + 141, + 405, + 470, + 416 + ], + "score": 1.0, + "content": "each instance, which is a key limitation of existing state-of-the-art methods. We", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 142, + 416, + 469, + 428 + ], + "spans": [ + { + "bbox": [ + 142, + 416, + 469, + 428 + ], + "score": 1.0, + "content": "demonstrate through a mixture of synthetic and real data experiments that IN-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 426, + 388, + 439 + ], + "spans": [ + { + "bbox": [ + 141, + 426, + 388, + 439 + ], + "score": 1.0, + "content": "VASE significantly outperforms state-of-the-art benchmarks.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 21.5 + }, + { + "type": "title", + "bbox": [ + 108, + 459, + 206, + 471 + ], + "lines": [ + { + "bbox": [ + 105, + 458, + 208, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 208, + 475 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 484, + 505, + 637 + ], + "lines": [ + { + "bbox": [ + 106, + 485, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 505, + 496 + ], + "score": 1.0, + "content": "High-dimensional data is becoming more readily available, and it brings with it a growing need to be", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 496, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 506, + 508 + ], + "score": 1.0, + "content": "able to efficiently select which features to use for a variety of problems. When doing predictions, it", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 505, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 104, + 505, + 506, + 520 + ], + "score": 1.0, + "content": "is well known that using too many variables with too few samples can lead to overfitting, which can", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 516, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 104, + 516, + 505, + 531 + ], + "score": 1.0, + "content": "significantly hinder the performance of predictive models. In the realm of interpretability, the large", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "dimensionality of the data is often too much information to present to a human who may be using the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 540, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 506, + 552 + ], + "score": 1.0, + "content": "machine learning model as a support system. Understanding which features are most relevant to an", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "outcome or to a model output is an important first step in improving predictions and interpretability", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "and many works exist that tackle feature selection on a global level. However, in the heterogeneous", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "data we typically encounter, the prediction made by a model (and indeed the true label) may rely on a", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "different subset of the features for different subgroups within the data [14]. In this paper we propose", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "a novel instance-wise feature selection method, INVASE (INstance-wise VAriable SElection), which", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "attempts to learn which subset of the features is relevant for each sample, allowing us to display the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 616, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 629 + ], + "score": 1.0, + "content": "minimal information required to explain each prediction and also to reduce overfitting of predictive", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 627, + 141, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 141, + 639 + ], + "score": 1.0, + "content": "models.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 107, + 644, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 644, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 506, + 656 + ], + "score": 1.0, + "content": "Discovering a global subset of relevant features for a particular task is a well-studied problem and", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 656, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 505, + 667 + ], + "score": 1.0, + "content": "there are several existing methods for solving it such as Sequential Correlation Feature Selection", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "score": 1.0, + "content": "[11], Mutual Information Feature Selection [21], Knockoff models [3], and more [10; 16]. However,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "global feature selection suffers from a key limitation - the features discovered by global feature", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "selection are the same for all samples. In many cases, in particular when populations are highly", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "heterogeneous, the relevant features may differ across samples [33; 32]. For instance, different", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "patient subgroups have different relevant features for predicting heart failure [14]. Instance-wise", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "feature selection methods such as [4; 27] instead try to discover the features that are relevant for", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 46.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 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 303, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 505, + 97 + ], + "score": 1.0, + "content": "INVASE: INSTANCE-WISE VARIABLE SELECTION US-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 98, + 294, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 294, + 118 + ], + "score": 1.0, + "content": "ING NEURAL NETWORKS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "list", + "bbox": [ + 112, + 135, + 323, + 180 + ], + "lines": [ + { + "bbox": [ + 112, + 135, + 173, + 148 + ], + "spans": [ + { + "bbox": [ + 112, + 135, + 173, + 148 + ], + "score": 1.0, + "content": "Jinsung Yoon", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 145, + 324, + 160 + ], + "spans": [ + { + "bbox": [ + 111, + 145, + 324, + 160 + ], + "score": 1.0, + "content": "Department of Electrical and Computer Engineering", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 158, + 213, + 168 + ], + "spans": [ + { + "bbox": [ + 113, + 158, + 213, + 168 + ], + "score": 1.0, + "content": "UCLA, California, USA", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 168, + 241, + 180 + ], + "spans": [ + { + "bbox": [ + 113, + 168, + 241, + 180 + ], + "score": 1.0, + "content": "jsyoon0823@g.ucla.edu", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 333, + 135, + 395, + 147 + ], + "spans": [ + { + "bbox": [ + 333, + 135, + 395, + 147 + ], + "score": 1.0, + "content": "James Jordon", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 332, + 145, + 468, + 159 + ], + "spans": [ + { + "bbox": [ + 332, + 145, + 468, + 159 + ], + "score": 1.0, + "content": "Engineering Science Department", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 333, + 157, + 438, + 169 + ], + "spans": [ + { + "bbox": [ + 333, + 157, + 438, + 169 + ], + "score": 1.0, + "content": "University of Oxford, UK", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 333, + 169, + 509, + 180 + ], + "spans": [ + { + "bbox": [ + 333, + 169, + 509, + 180 + ], + "score": 1.0, + "content": "james.jordon@wolfson.ox.ac.uk", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 194, + 218, + 209 + ], + "spans": [ + { + "bbox": [ + 111, + 194, + 218, + 209 + ], + "score": 1.0, + "content": "Mihaela van der Schaar", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 112, + 207, + 233, + 219 + ], + "spans": [ + { + "bbox": [ + 112, + 207, + 233, + 219 + ], + "score": 1.0, + "content": "University of Cambridge, UK", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 218, + 426, + 230 + ], + "spans": [ + { + "bbox": [ + 111, + 218, + 426, + 230 + ], + "score": 1.0, + "content": "Department of Electrical and Computer Engineering, UCLA, California, USA", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 112, + 229, + 254, + 241 + ], + "spans": [ + { + "bbox": [ + 112, + 229, + 254, + 241 + ], + "score": 1.0, + "content": "Alan Turing Institute, London, UK", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 240, + 228, + 252 + ], + "spans": [ + { + "bbox": [ + 111, + 240, + 228, + 252 + ], + "score": 1.0, + "content": "mihaela@ee.ucla.edu", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + } + ], + "index": 5.0, + "bbox_fs": [ + 111, + 135, + 324, + 180 + ] + }, + { + "type": "list", + "bbox": [ + 334, + 136, + 508, + 180 + ], + "lines": [], + "index": 6.0, + "bbox_fs": [ + 332, + 135, + 509, + 180 + ], + "lines_deleted": true + }, + { + "type": "list", + "bbox": [ + 113, + 196, + 425, + 251 + ], + "lines": [], + "index": 12, + "bbox_fs": [ + 111, + 194, + 426, + 252 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 278, + 281, + 333, + 293 + ], + "lines": [ + { + "bbox": [ + 276, + 279, + 336, + 295 + ], + "spans": [ + { + "bbox": [ + 276, + 279, + 336, + 295 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 143, + 306, + 468, + 437 + ], + "lines": [ + { + "bbox": [ + 142, + 306, + 469, + 317 + ], + "spans": [ + { + "bbox": [ + 142, + 306, + 469, + 317 + ], + "score": 1.0, + "content": "The advent of big data brings with it data with more and more dimensions and thus", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 140, + 316, + 469, + 330 + ], + "spans": [ + { + "bbox": [ + 140, + 316, + 469, + 330 + ], + "score": 1.0, + "content": "a growing need to be able to efficiently select which features to use for a variety", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 327, + 470, + 340 + ], + "spans": [ + { + "bbox": [ + 141, + 327, + 470, + 340 + ], + "score": 1.0, + "content": "of problems. While global feature selection has been a well-studied problem for", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 339, + 469, + 351 + ], + "spans": [ + { + "bbox": [ + 141, + 339, + 469, + 351 + ], + "score": 1.0, + "content": "quite some time, only recently has the paradigm of instance-wise feature selection", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 349, + 469, + 362 + ], + "spans": [ + { + "bbox": [ + 141, + 349, + 469, + 362 + ], + "score": 1.0, + "content": "been developed. In this paper, we propose a new instance-wise feature selection", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 361, + 469, + 372 + ], + "spans": [ + { + "bbox": [ + 141, + 361, + 469, + 372 + ], + "score": 1.0, + "content": "method, which we term INVASE. INVASE consists of 3 neural networks, a selec-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 142, + 372, + 469, + 383 + ], + "spans": [ + { + "bbox": [ + 142, + 372, + 469, + 383 + ], + "score": 1.0, + "content": "tor network, a predictor network and a baseline network which are used to train", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 382, + 470, + 396 + ], + "spans": [ + { + "bbox": [ + 141, + 382, + 470, + 396 + ], + "score": 1.0, + "content": "the selector network using the actor-critic methodology. Using this methodology,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 393, + 469, + 406 + ], + "spans": [ + { + "bbox": [ + 141, + 393, + 469, + 406 + ], + "score": 1.0, + "content": "INVASE is capable of flexibly discovering feature subsets of a different size for", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 405, + 470, + 416 + ], + "spans": [ + { + "bbox": [ + 141, + 405, + 470, + 416 + ], + "score": 1.0, + "content": "each instance, which is a key limitation of existing state-of-the-art methods. We", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 142, + 416, + 469, + 428 + ], + "spans": [ + { + "bbox": [ + 142, + 416, + 469, + 428 + ], + "score": 1.0, + "content": "demonstrate through a mixture of synthetic and real data experiments that IN-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 426, + 388, + 439 + ], + "spans": [ + { + "bbox": [ + 141, + 426, + 388, + 439 + ], + "score": 1.0, + "content": "VASE significantly outperforms state-of-the-art benchmarks.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 21.5, + "bbox_fs": [ + 140, + 306, + 470, + 439 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 459, + 206, + 471 + ], + "lines": [ + { + "bbox": [ + 105, + 458, + 208, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 208, + 475 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 484, + 505, + 637 + ], + "lines": [ + { + "bbox": [ + 106, + 485, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 505, + 496 + ], + "score": 1.0, + "content": "High-dimensional data is becoming more readily available, and it brings with it a growing need to be", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 496, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 506, + 508 + ], + "score": 1.0, + "content": "able to efficiently select which features to use for a variety of problems. When doing predictions, it", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 505, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 104, + 505, + 506, + 520 + ], + "score": 1.0, + "content": "is well known that using too many variables with too few samples can lead to overfitting, which can", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 516, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 104, + 516, + 505, + 531 + ], + "score": 1.0, + "content": "significantly hinder the performance of predictive models. In the realm of interpretability, the large", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "dimensionality of the data is often too much information to present to a human who may be using the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 540, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 506, + 552 + ], + "score": 1.0, + "content": "machine learning model as a support system. Understanding which features are most relevant to an", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "outcome or to a model output is an important first step in improving predictions and interpretability", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "and many works exist that tackle feature selection on a global level. However, in the heterogeneous", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "data we typically encounter, the prediction made by a model (and indeed the true label) may rely on a", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "different subset of the features for different subgroups within the data [14]. In this paper we propose", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "a novel instance-wise feature selection method, INVASE (INstance-wise VAriable SElection), which", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "attempts to learn which subset of the features is relevant for each sample, allowing us to display the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 616, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 629 + ], + "score": 1.0, + "content": "minimal information required to explain each prediction and also to reduce overfitting of predictive", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 627, + 141, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 141, + 639 + ], + "score": 1.0, + "content": "models.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 35.5, + "bbox_fs": [ + 104, + 485, + 506, + 639 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 644, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 644, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 506, + 656 + ], + "score": 1.0, + "content": "Discovering a global subset of relevant features for a particular task is a well-studied problem and", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 656, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 505, + 667 + ], + "score": 1.0, + "content": "there are several existing methods for solving it such as Sequential Correlation Feature Selection", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "score": 1.0, + "content": "[11], Mutual Information Feature Selection [21], Knockoff models [3], and more [10; 16]. However,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "global feature selection suffers from a key limitation - the features discovered by global feature", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "selection are the same for all samples. In many cases, in particular when populations are highly", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "heterogeneous, the relevant features may differ across samples [33; 32]. For instance, different", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "patient subgroups have different relevant features for predicting heart failure [14]. Instance-wise", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "feature selection methods such as [4; 27] instead try to discover the features that are relevant for", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "each sample. When the goal is to provide an interpretable explanation of the predictions made, a", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "key challenge is in ensuring that we do not over-explain by providing too much information (i.e.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "choosing too many features). Naturally, by performing feature selection on an individualized level", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "we are able to select features that are more relevant to each sample, rather than having to choose", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 137, + 139 + ], + "score": 1.0, + "content": "the top", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 137, + 127, + 144, + 137 + ], + "score": 0.74, + "content": "k", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 144, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "features globally, which may not explain the predictions for some samples very well, but", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 312, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 312, + 150 + ], + "score": 1.0, + "content": "simply perform well on average across all samples.", + "type": "text", + "cross_page": true + } + ], + "index": 5 + } + ], + "index": 46.5, + "bbox_fs": [ + 105, + 644, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 149 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "each sample. When the goal is to provide an interpretable explanation of the predictions made, a", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "key challenge is in ensuring that we do not over-explain by providing too much information (i.e.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "choosing too many features). Naturally, by performing feature selection on an individualized level", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "we are able to select features that are more relevant to each sample, rather than having to choose", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 137, + 139 + ], + "score": 1.0, + "content": "the top", + "type": "text" + }, + { + "bbox": [ + 137, + 127, + 144, + 137 + ], + "score": 0.74, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "features globally, which may not explain the predictions for some samples very well, but", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 312, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 312, + 150 + ], + "score": 1.0, + "content": "simply perform well on average across all samples.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 505, + 286 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 166 + ], + "score": 1.0, + "content": "In this paper, we propose a novel instance-wise feature selection method which we term INVASE.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "We draw influence from actor-critic models [22] to solve the problem of backpropagating through", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "subset sampling. Our model consists of 3 neural networks: a selector network, a predictor network", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "and a baseline network. During training, each of these are trained iteratively, with the selector", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "network being trained to minimize a Kullback-Leibler (KL) divergence between the full conditional", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "score": 1.0, + "content": "distribution and the selected-features-only conditional distribution of the outcome. Our model is", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 234 + ], + "score": 1.0, + "content": "capable of discovering a different number of relevant variables for each sample which is a key", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "score": 1.0, + "content": "limitation in existing instance-wise approaches (such as [4]). We show significant improvements", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 241, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 104, + 241, + 506, + 255 + ], + "score": 1.0, + "content": "over the state-of-the-art in both synthetic data and real-word data in terms of true positive rates,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 253, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 265 + ], + "score": 1.0, + "content": "false discovery rates, and show better predictive performance with respect to several prediction", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 263, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 505, + 276 + ], + "score": 1.0, + "content": "metrics. Our model can also be easily extended to handle both continuous and discrete outputs and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 276, + 302, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 302, + 287 + ], + "score": 1.0, + "content": "time-series inputs (see the Appendix for details).", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 11.5 + }, + { + "type": "title", + "bbox": [ + 108, + 299, + 207, + 310 + ], + "lines": [ + { + "bbox": [ + 106, + 298, + 209, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 209, + 312 + ], + "score": 1.0, + "content": "1.1 RELATED WORKS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 320, + 504, + 364 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 505, + 333 + ], + "score": 1.0, + "content": "There are many existing works on global variable selection (see [10] for a good summary paper).", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 330, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 505, + 343 + ], + "score": 1.0, + "content": "[21] and [11] use max-dependency min-redundancy criteria [17] with mutual information and Pear-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 343, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 505, + 354 + ], + "score": 1.0, + "content": "son correlation, respectively. [3] uses multiple hypothesis testing for global variable selection. As", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 352, + 501, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 501, + 366 + ], + "score": 1.0, + "content": "noted above, these global selection methods are not capable of learning sample-specific relevance.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 370, + 505, + 479 + ], + "lines": [ + { + "bbox": [ + 105, + 370, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 505, + 382 + ], + "score": 1.0, + "content": "Instance-wise variable selection is also closely related to model interpretation methods. Some pre-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 382, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 505, + 393 + ], + "score": 1.0, + "content": "vious works are based on backpropagation from the output of the predictive model to the input", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "score": 1.0, + "content": "variables [29]. DeepLIFT [27] decomposes the output of the neural network on a reference input to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 403, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 415 + ], + "score": 1.0, + "content": "compute the contribution of each input variable. However, both methods need white-box access to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 415, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 505, + 426 + ], + "score": 1.0, + "content": "the pre-trained predictive models to compute the gradient and decomposition. [2] approximates the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 424, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 506, + 437 + ], + "score": 1.0, + "content": "predictive models using a Parzen window approximator when there is only black-box access to the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 435, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 104, + 435, + 506, + 449 + ], + "score": 1.0, + "content": "predictive models. Some other works are based on input perturbation such as [1], [15], [30] and [5].", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "score": 1.0, + "content": "[18] uses Shapley values to compute the variable importance, and [24] uses locally linear models to", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 457, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 506, + 471 + ], + "score": 1.0, + "content": "explain the linear dependency for each sample. [19] tries to interpret tree ensemble models using", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 469, + 462, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 462, + 480 + ], + "score": 1.0, + "content": "Shapley values but cannot generalize to other predictive models such as neural networks.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 485, + 505, + 639 + ], + "lines": [ + { + "bbox": [ + 105, + 485, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 505, + 498 + ], + "score": 1.0, + "content": "Our work is most closely related to L2X (Learning to Explain) [4]. However, there are 3 key dif-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "score": 1.0, + "content": "ferences between our work and theirs. In L2X, they try to maximize a lower bound of the mutual", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 507, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 232, + 520 + ], + "score": 1.0, + "content": "information between the target", + "type": "text" + }, + { + "bbox": [ + 233, + 507, + 243, + 518 + ], + "score": 0.67, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 507, + 372, + 520 + ], + "score": 1.0, + "content": "and the selected input variables", + "type": "text" + }, + { + "bbox": [ + 373, + 507, + 388, + 518 + ], + "score": 0.88, + "content": "X _ { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 507, + 506, + 520 + ], + "score": 1.0, + "content": ". In contrast, we try to mini-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 518, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 352, + 531 + ], + "score": 1.0, + "content": "mize the KL divergence between the conditional distributions", + "type": "text" + }, + { + "bbox": [ + 352, + 519, + 373, + 530 + ], + "score": 0.91, + "content": "Y | X", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 518, + 390, + 531 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 391, + 518, + 416, + 530 + ], + "score": 0.91, + "content": "Y | X _ { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 518, + 506, + 531 + ], + "score": 1.0, + "content": ". In order to be able to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 529, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 505, + 542 + ], + "score": 1.0, + "content": "backpropagate through subset sampling, L2X use the Gumbel-softmax trick [13] to approximately", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 539, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 553 + ], + "score": 1.0, + "content": "discretize the continuous outputs of the neural network. In our work, we use methods from actor-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 551, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 506, + 564 + ], + "score": 1.0, + "content": "critic models [22] to bypass backpropagation through the sampling and instead use the predictor", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 563, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 574 + ], + "score": 1.0, + "content": "network to provide a reward to the selector network. Finally, due to the Gumbel-softmax used in", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 573, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 585 + ], + "score": 1.0, + "content": "L2X, the number of variables to be detected must be fixed in advance and is necessarily the same for", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 584, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 506, + 597 + ], + "score": 1.0, + "content": "every sample. The actor-critic methodology used in our model has no such limitations and so we are", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "score": 1.0, + "content": "able to flexibly select a different number of relevant variables for each sample and instead induce", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 177, + 619 + ], + "score": 1.0, + "content": "sparsity using an", + "type": "text" + }, + { + "bbox": [ + 177, + 606, + 186, + 617 + ], + "score": 0.85, + "content": "l _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 606, + 505, + 619 + ], + "score": 1.0, + "content": "penalty term. In fact, using the actor-critic methodology allows us to directly", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 137, + 630 + ], + "score": 1.0, + "content": "use the", + "type": "text" + }, + { + "bbox": [ + 137, + 618, + 146, + 628 + ], + "score": 0.85, + "content": "l _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "penalty term (which is not differentiable and therefore not practical to use in general). A", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 628, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 640 + ], + "score": 1.0, + "content": "summary table highlighting the key features of all of the related works can be found in the Appendix.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 39.5 + }, + { + "type": "title", + "bbox": [ + 108, + 655, + 255, + 668 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 257, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 257, + 670 + ], + "score": 1.0, + "content": "2 PROBLEM FORMULATION", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 47 + }, + { + "type": "text", + "bbox": [ + 108, + 680, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 104, + 678, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 104, + 678, + 123, + 694 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 123, + 680, + 208, + 691 + ], + "score": 0.91, + "content": "{ \\mathcal { X } } = { \\mathcal { X } } _ { 1 } \\times \\ldots \\times { \\mathcal { X } } _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 678, + 230, + 694 + ], + "score": 1.0, + "content": "be a", + "type": "text" + }, + { + "bbox": [ + 231, + 681, + 237, + 690 + ], + "score": 0.82, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 678, + 365, + 694 + ], + "score": 1.0, + "content": "-dimensional feature space and", + "type": "text" + }, + { + "bbox": [ + 365, + 680, + 426, + 692 + ], + "score": 0.93, + "content": "\\boldsymbol { \\mathcal { V } } = \\{ 1 , . . . , c \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 678, + 506, + 694 + ], + "score": 1.0, + "content": "be a discrete label", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 690, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 156, + 703 + ], + "score": 1.0, + "content": "space1. Let", + "type": "text" + }, + { + "bbox": [ + 156, + 691, + 254, + 703 + ], + "score": 0.91, + "content": "\\mathbf { X } = ( X _ { 1 } , . . . , X _ { d } ) \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 690, + 273, + 703 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 274, + 691, + 305, + 702 + ], + "score": 0.91, + "content": "Y \\in \\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 690, + 505, + 703 + ], + "score": 1.0, + "content": "be random variables with joint density (or mass)", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 701, + 505, + 714 + ], + "spans": [ + { + "bbox": [ + 106, + 704, + 113, + 713 + ], + "score": 0.77, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 701, + 258, + 714 + ], + "score": 1.0, + "content": "and marginal densities (or masses)", + "type": "text" + }, + { + "bbox": [ + 258, + 704, + 271, + 713 + ], + "score": 0.86, + "content": "p _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 701, + 290, + 714 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 291, + 704, + 304, + 713 + ], + "score": 0.86, + "content": "p _ { Y }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 701, + 427, + 714 + ], + "score": 1.0, + "content": "respectively. We will refer to", + "type": "text" + }, + { + "bbox": [ + 428, + 701, + 477, + 714 + ], + "score": 0.92, + "content": "\\mathbf { s } \\in \\{ 0 , 1 \\} ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 701, + 505, + 714 + ], + "score": 1.0, + "content": "as the", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 114, + 721, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 719, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 119, + 719, + 505, + 734 + ], + "score": 1.0, + "content": "1In this paper we focus on classification; we discuss an extension of our model to regression in the Appendix.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 149 + ], + "lines": [], + "index": 2.5, + "bbox_fs": [ + 105, + 82, + 506, + 150 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 505, + 286 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 166 + ], + "score": 1.0, + "content": "In this paper, we propose a novel instance-wise feature selection method which we term INVASE.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "We draw influence from actor-critic models [22] to solve the problem of backpropagating through", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "subset sampling. Our model consists of 3 neural networks: a selector network, a predictor network", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "and a baseline network. During training, each of these are trained iteratively, with the selector", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "network being trained to minimize a Kullback-Leibler (KL) divergence between the full conditional", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "score": 1.0, + "content": "distribution and the selected-features-only conditional distribution of the outcome. Our model is", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 234 + ], + "score": 1.0, + "content": "capable of discovering a different number of relevant variables for each sample which is a key", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "score": 1.0, + "content": "limitation in existing instance-wise approaches (such as [4]). We show significant improvements", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 241, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 104, + 241, + 506, + 255 + ], + "score": 1.0, + "content": "over the state-of-the-art in both synthetic data and real-word data in terms of true positive rates,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 253, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 265 + ], + "score": 1.0, + "content": "false discovery rates, and show better predictive performance with respect to several prediction", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 263, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 505, + 276 + ], + "score": 1.0, + "content": "metrics. Our model can also be easily extended to handle both continuous and discrete outputs and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 276, + 302, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 302, + 287 + ], + "score": 1.0, + "content": "time-series inputs (see the Appendix for details).", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 11.5, + "bbox_fs": [ + 104, + 154, + 506, + 287 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 299, + 207, + 310 + ], + "lines": [ + { + "bbox": [ + 106, + 298, + 209, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 209, + 312 + ], + "score": 1.0, + "content": "1.1 RELATED WORKS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 320, + 504, + 364 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 505, + 333 + ], + "score": 1.0, + "content": "There are many existing works on global variable selection (see [10] for a good summary paper).", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 330, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 505, + 343 + ], + "score": 1.0, + "content": "[21] and [11] use max-dependency min-redundancy criteria [17] with mutual information and Pear-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 343, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 505, + 354 + ], + "score": 1.0, + "content": "son correlation, respectively. [3] uses multiple hypothesis testing for global variable selection. As", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 352, + 501, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 501, + 366 + ], + "score": 1.0, + "content": "noted above, these global selection methods are not capable of learning sample-specific relevance.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 320, + 505, + 366 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 370, + 505, + 479 + ], + "lines": [ + { + "bbox": [ + 105, + 370, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 505, + 382 + ], + "score": 1.0, + "content": "Instance-wise variable selection is also closely related to model interpretation methods. Some pre-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 382, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 505, + 393 + ], + "score": 1.0, + "content": "vious works are based on backpropagation from the output of the predictive model to the input", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "score": 1.0, + "content": "variables [29]. DeepLIFT [27] decomposes the output of the neural network on a reference input to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 403, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 415 + ], + "score": 1.0, + "content": "compute the contribution of each input variable. However, both methods need white-box access to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 415, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 505, + 426 + ], + "score": 1.0, + "content": "the pre-trained predictive models to compute the gradient and decomposition. [2] approximates the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 424, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 506, + 437 + ], + "score": 1.0, + "content": "predictive models using a Parzen window approximator when there is only black-box access to the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 435, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 104, + 435, + 506, + 449 + ], + "score": 1.0, + "content": "predictive models. Some other works are based on input perturbation such as [1], [15], [30] and [5].", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "score": 1.0, + "content": "[18] uses Shapley values to compute the variable importance, and [24] uses locally linear models to", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 457, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 506, + 471 + ], + "score": 1.0, + "content": "explain the linear dependency for each sample. [19] tries to interpret tree ensemble models using", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 469, + 462, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 462, + 480 + ], + "score": 1.0, + "content": "Shapley values but cannot generalize to other predictive models such as neural networks.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 27.5, + "bbox_fs": [ + 104, + 370, + 506, + 480 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 485, + 505, + 639 + ], + "lines": [ + { + "bbox": [ + 105, + 485, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 505, + 498 + ], + "score": 1.0, + "content": "Our work is most closely related to L2X (Learning to Explain) [4]. However, there are 3 key dif-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "score": 1.0, + "content": "ferences between our work and theirs. In L2X, they try to maximize a lower bound of the mutual", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 507, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 232, + 520 + ], + "score": 1.0, + "content": "information between the target", + "type": "text" + }, + { + "bbox": [ + 233, + 507, + 243, + 518 + ], + "score": 0.67, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 507, + 372, + 520 + ], + "score": 1.0, + "content": "and the selected input variables", + "type": "text" + }, + { + "bbox": [ + 373, + 507, + 388, + 518 + ], + "score": 0.88, + "content": "X _ { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 507, + 506, + 520 + ], + "score": 1.0, + "content": ". In contrast, we try to mini-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 518, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 352, + 531 + ], + "score": 1.0, + "content": "mize the KL divergence between the conditional distributions", + "type": "text" + }, + { + "bbox": [ + 352, + 519, + 373, + 530 + ], + "score": 0.91, + "content": "Y | X", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 518, + 390, + 531 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 391, + 518, + 416, + 530 + ], + "score": 0.91, + "content": "Y | X _ { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 518, + 506, + 531 + ], + "score": 1.0, + "content": ". In order to be able to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 529, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 505, + 542 + ], + "score": 1.0, + "content": "backpropagate through subset sampling, L2X use the Gumbel-softmax trick [13] to approximately", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 539, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 553 + ], + "score": 1.0, + "content": "discretize the continuous outputs of the neural network. In our work, we use methods from actor-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 551, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 506, + 564 + ], + "score": 1.0, + "content": "critic models [22] to bypass backpropagation through the sampling and instead use the predictor", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 563, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 574 + ], + "score": 1.0, + "content": "network to provide a reward to the selector network. Finally, due to the Gumbel-softmax used in", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 573, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 585 + ], + "score": 1.0, + "content": "L2X, the number of variables to be detected must be fixed in advance and is necessarily the same for", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 584, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 506, + 597 + ], + "score": 1.0, + "content": "every sample. The actor-critic methodology used in our model has no such limitations and so we are", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "score": 1.0, + "content": "able to flexibly select a different number of relevant variables for each sample and instead induce", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 177, + 619 + ], + "score": 1.0, + "content": "sparsity using an", + "type": "text" + }, + { + "bbox": [ + 177, + 606, + 186, + 617 + ], + "score": 0.85, + "content": "l _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 606, + 505, + 619 + ], + "score": 1.0, + "content": "penalty term. In fact, using the actor-critic methodology allows us to directly", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 137, + 630 + ], + "score": 1.0, + "content": "use the", + "type": "text" + }, + { + "bbox": [ + 137, + 618, + 146, + 628 + ], + "score": 0.85, + "content": "l _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "penalty term (which is not differentiable and therefore not practical to use in general). A", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 628, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 640 + ], + "score": 1.0, + "content": "summary table highlighting the key features of all of the related works can be found in the Appendix.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 485, + 506, + 640 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 655, + 255, + 668 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 257, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 257, + 670 + ], + "score": 1.0, + "content": "2 PROBLEM FORMULATION", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 47 + }, + { + "type": "text", + "bbox": [ + 108, + 680, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 104, + 678, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 104, + 678, + 123, + 694 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 123, + 680, + 208, + 691 + ], + "score": 0.91, + "content": "{ \\mathcal { X } } = { \\mathcal { X } } _ { 1 } \\times \\ldots \\times { \\mathcal { X } } _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 678, + 230, + 694 + ], + "score": 1.0, + "content": "be a", + "type": "text" + }, + { + "bbox": [ + 231, + 681, + 237, + 690 + ], + "score": 0.82, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 678, + 365, + 694 + ], + "score": 1.0, + "content": "-dimensional feature space and", + "type": "text" + }, + { + "bbox": [ + 365, + 680, + 426, + 692 + ], + "score": 0.93, + "content": "\\boldsymbol { \\mathcal { V } } = \\{ 1 , . . . , c \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 678, + 506, + 694 + ], + "score": 1.0, + "content": "be a discrete label", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 690, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 156, + 703 + ], + "score": 1.0, + "content": "space1. Let", + "type": "text" + }, + { + "bbox": [ + 156, + 691, + 254, + 703 + ], + "score": 0.91, + "content": "\\mathbf { X } = ( X _ { 1 } , . . . , X _ { d } ) \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 690, + 273, + 703 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 274, + 691, + 305, + 702 + ], + "score": 0.91, + "content": "Y \\in \\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 690, + 505, + 703 + ], + "score": 1.0, + "content": "be random variables with joint density (or mass)", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 701, + 505, + 714 + ], + "spans": [ + { + "bbox": [ + 106, + 704, + 113, + 713 + ], + "score": 0.77, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 701, + 258, + 714 + ], + "score": 1.0, + "content": "and marginal densities (or masses)", + "type": "text" + }, + { + "bbox": [ + 258, + 704, + 271, + 713 + ], + "score": 0.86, + "content": "p _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 701, + 290, + 714 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 291, + 704, + 304, + 713 + ], + "score": 0.86, + "content": "p _ { Y }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 701, + 427, + 714 + ], + "score": 1.0, + "content": "respectively. We will refer to", + "type": "text" + }, + { + "bbox": [ + 428, + 701, + 477, + 714 + ], + "score": 0.92, + "content": "\\mathbf { s } \\in \\{ 0 , 1 \\} ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 701, + 505, + 714 + ], + "score": 1.0, + "content": "as the", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 82, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 204, + 94 + ], + "score": 1.0, + "content": "selection vector, where", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 204, + 83, + 235, + 93 + ], + "score": 0.91, + "content": "s _ { i } = 1", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 236, + 82, + 344, + 94 + ], + "score": 1.0, + "content": "will indicate that variable", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 345, + 83, + 350, + 92 + ], + "score": 0.77, + "content": "i", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 351, + 82, + 418, + 94 + ], + "score": 1.0, + "content": "is selected, and", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 419, + 83, + 450, + 93 + ], + "score": 0.9, + "content": "s _ { i } ~ = ~ 0", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 450, + 82, + 505, + 94 + ], + "score": 1.0, + "content": "will indicate", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 160, + 106 + ], + "score": 1.0, + "content": "that variable", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 160, + 95, + 165, + 104 + ], + "score": 0.77, + "content": "i", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 165, + 93, + 250, + 106 + ], + "score": 1.0, + "content": "is not selected. Let", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 250, + 95, + 258, + 104 + ], + "score": 0.75, + "content": "^ *", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 258, + 93, + 416, + 106 + ], + "score": 1.0, + "content": "be any point not in any of the spaces", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 416, + 94, + 458, + 105 + ], + "score": 0.92, + "content": "\\mathcal { X } _ { 1 } , . . . , \\mathcal { X } _ { d }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 459, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "and define", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 170, + 118 + ], + "score": 0.93, + "content": "{ { \\mathcal { X } } _ { i } ^ { * } } = { { \\mathcal { X } } _ { i } } \\cup \\left\\{ * \\right\\}", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 170, + 104, + 187, + 119 + ], + "score": 1.0, + "content": "and", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 187, + 105, + 272, + 118 + ], + "score": 0.92, + "content": "\\mathcal { X } ^ { * } = \\mathcal { X } _ { 1 } ^ { * } \\times \\ldots \\times \\mathcal { X } _ { d } ^ { * }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 272, + 104, + 302, + 119 + ], + "score": 1.0, + "content": ". Given", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 303, + 106, + 331, + 116 + ], + "score": 0.9, + "content": "\\mathbf { x } \\in \\mathcal { X }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 331, + 104, + 386, + 119 + ], + "score": 1.0, + "content": "we will write", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 387, + 105, + 404, + 115 + ], + "score": 0.9, + "content": "\\mathbf { x } ^ { ( \\mathbf { s } ) }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 404, + 104, + 506, + 119 + ], + "score": 1.0, + "content": "to denote the suppressed", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 208, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 208, + 129 + ], + "score": 1.0, + "content": "feature vector defined by", + "type": "text", + "cross_page": true + } + ], + "index": 3 + } + ], + "index": 49, + "bbox_fs": [ + 104, + 678, + 506, + 714 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 505, + 128 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 204, + 94 + ], + "score": 1.0, + "content": "selection vector, where", + "type": "text" + }, + { + "bbox": [ + 204, + 83, + 235, + 93 + ], + "score": 0.91, + "content": "s _ { i } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 82, + 344, + 94 + ], + "score": 1.0, + "content": "will indicate that variable", + "type": "text" + }, + { + "bbox": [ + 345, + 83, + 350, + 92 + ], + "score": 0.77, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 82, + 418, + 94 + ], + "score": 1.0, + "content": "is selected, and", + "type": "text" + }, + { + "bbox": [ + 419, + 83, + 450, + 93 + ], + "score": 0.9, + "content": "s _ { i } ~ = ~ 0", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 82, + 505, + 94 + ], + "score": 1.0, + "content": "will indicate", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 160, + 106 + ], + "score": 1.0, + "content": "that variable", + "type": "text" + }, + { + "bbox": [ + 160, + 95, + 165, + 104 + ], + "score": 0.77, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 93, + 250, + 106 + ], + "score": 1.0, + "content": "is not selected. Let", + "type": "text" + }, + { + "bbox": [ + 250, + 95, + 258, + 104 + ], + "score": 0.75, + "content": "^ *", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 93, + 416, + 106 + ], + "score": 1.0, + "content": "be any point not in any of the spaces", + "type": "text" + }, + { + "bbox": [ + 416, + 94, + 458, + 105 + ], + "score": 0.92, + "content": "\\mathcal { X } _ { 1 } , . . . , \\mathcal { X } _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "and define", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 170, + 118 + ], + "score": 0.93, + "content": "{ { \\mathcal { X } } _ { i } ^ { * } } = { { \\mathcal { X } } _ { i } } \\cup \\left\\{ * \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 104, + 187, + 119 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 187, + 105, + 272, + 118 + ], + "score": 0.92, + "content": "\\mathcal { X } ^ { * } = \\mathcal { X } _ { 1 } ^ { * } \\times \\ldots \\times \\mathcal { X } _ { d } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 104, + 302, + 119 + ], + "score": 1.0, + "content": ". Given", + "type": "text" + }, + { + "bbox": [ + 303, + 106, + 331, + 116 + ], + "score": 0.9, + "content": "\\mathbf { x } \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 104, + 386, + 119 + ], + "score": 1.0, + "content": "we will write", + "type": "text" + }, + { + "bbox": [ + 387, + 105, + 404, + 115 + ], + "score": 0.9, + "content": "\\mathbf { x } ^ { ( \\mathbf { s } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 104, + 506, + 119 + ], + "score": 1.0, + "content": "to denote the suppressed", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 208, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 208, + 129 + ], + "score": 1.0, + "content": "feature vector defined by", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "interline_equation", + "bbox": [ + 257, + 127, + 343, + 155 + ], + "lines": [ + { + "bbox": [ + 257, + 127, + 343, + 155 + ], + "spans": [ + { + "bbox": [ + 257, + 127, + 343, + 155 + ], + "score": 0.93, + "content": "x _ { i } ^ { ( \\mathbf { s } ) } = \\left\\{ { \\atop * \\operatorname { i f } s _ { i } = 0 } \\right.", + "type": "interline_equation", + "image_path": "97551ba6af2138e3dcf88974553e2a1250aee89c0e538f893a574d2a06f3ba96.jpg" + } + ] + } + ], + "index": 4.5, + "virtual_lines": [ + { + "bbox": [ + 257, + 127, + 343, + 141.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 257, + 141.0, + 343, + 155.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 156, + 300, + 168 + ], + "lines": [ + { + "bbox": [ + 106, + 156, + 301, + 168 + ], + "spans": [ + { + "bbox": [ + 106, + 156, + 135, + 168 + ], + "score": 1.0, + "content": "so that", + "type": "text" + }, + { + "bbox": [ + 135, + 158, + 142, + 166 + ], + "score": 0.76, + "content": "^ *", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 156, + 301, + 168 + ], + "score": 1.0, + "content": "represents that a feature is not selected.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 173, + 505, + 220 + ], + "lines": [ + { + "bbox": [ + 106, + 173, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 505, + 185 + ], + "score": 1.0, + "content": "In the global feature selection literature, the goal is to find the smallest s (i.e. the one with fewest 1s)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 184, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 106, + 185, + 145, + 198 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 146, + 184, + 240, + 198 + ], + "score": 0.92, + "content": "\\mathbb { E } ( Y | \\mathbf { X } ^ { ( \\mathbf { s } ) } ) = \\mathbb { E } ( Y | \\mathbf { X } )", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 185, + 470, + 198 + ], + "score": 1.0, + "content": ", or equivalently such that the conditional distribution of", + "type": "text" + }, + { + "bbox": [ + 470, + 186, + 479, + 195 + ], + "score": 0.78, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 185, + 505, + 198 + ], + "score": 1.0, + "content": "given", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 196, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 127, + 208 + ], + "score": 0.87, + "content": "\\mathbf { X } ^ { ( \\mathbf { s } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 196, + 189, + 211 + ], + "score": 1.0, + "content": "is the same as", + "type": "text" + }, + { + "bbox": [ + 189, + 198, + 199, + 208 + ], + "score": 0.78, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 196, + 250, + 211 + ], + "score": 1.0, + "content": "given all of", + "type": "text" + }, + { + "bbox": [ + 250, + 198, + 260, + 208 + ], + "score": 0.53, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 196, + 505, + 211 + ], + "score": 1.0, + "content": ". Note that this definition is given fully in terms of random", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 209, + 349, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 349, + 219 + ], + "score": 1.0, + "content": "variables, rather than realizations of those random variables.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 225, + 505, + 270 + ], + "lines": [ + { + "bbox": [ + 105, + 225, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 505, + 238 + ], + "score": 1.0, + "content": "In contrast, our problem necessarily needs to be defined in terms of realizations since we are aiming", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 237, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 342, + 249 + ], + "score": 1.0, + "content": "to select features for a given realization. We will write", + "type": "text" + }, + { + "bbox": [ + 342, + 239, + 350, + 246 + ], + "score": 0.65, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 237, + 505, + 249 + ], + "score": 1.0, + "content": "to denote realizations of the random", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 247, + 504, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 141, + 259 + ], + "score": 1.0, + "content": "variable", + "type": "text" + }, + { + "bbox": [ + 141, + 248, + 151, + 258 + ], + "score": 0.33, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 247, + 434, + 259 + ], + "score": 1.0, + "content": ". Then we formalize our problem as one of finding a selector function,", + "type": "text" + }, + { + "bbox": [ + 434, + 247, + 504, + 259 + ], + "score": 0.93, + "content": "S : \\mathcal { X } \\{ 0 , 1 \\} ^ { d }", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 259, + 321, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 212, + 271 + ], + "score": 1.0, + "content": "such that for almost every", + "type": "text" + }, + { + "bbox": [ + 212, + 259, + 240, + 269 + ], + "score": 0.89, + "content": "\\mathbf { x } \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 259, + 267, + 271 + ], + "score": 1.0, + "content": "(w.r.t.", + "type": "text" + }, + { + "bbox": [ + 267, + 260, + 281, + 270 + ], + "score": 0.74, + "content": "p _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 259, + 321, + 271 + ], + "score": 1.0, + "content": ") we have", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "interline_equation", + "bbox": [ + 228, + 274, + 383, + 290 + ], + "lines": [ + { + "bbox": [ + 228, + 274, + 383, + 290 + ], + "spans": [ + { + "bbox": [ + 228, + 274, + 383, + 290 + ], + "score": 0.92, + "content": "( Y | \\mathbf { X } ^ { ( S ( \\mathbf { x } ) ) } = \\mathbf { x } ^ { ( S ( \\mathbf { x } ) ) } ) \\overset { d . } { = } ( Y | \\mathbf { X } = \\mathbf { x } )", + "type": "interline_equation", + "image_path": "2969b89ba791131e980d398fdff5633999de0e7730b1e0f75971b658c4fe9ef5.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 228, + 274, + 383, + 290 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 297, + 493, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 294, + 495, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 132, + 310 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 294, + 144, + 308 + ], + "score": 0.6, + "content": "\\underline { { \\underline { { d . } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 295, + 286, + 310 + ], + "score": 1.0, + "content": "denotes equality in distribution and", + "type": "text" + }, + { + "bbox": [ + 287, + 298, + 308, + 310 + ], + "score": 0.92, + "content": "S ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 295, + 495, + 310 + ], + "score": 1.0, + "content": "is minimal (i.e. fewest 1s) such that (1) holds.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 313, + 505, + 362 + ], + "lines": [ + { + "bbox": [ + 105, + 313, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 254, + 329 + ], + "score": 1.0, + "content": "We suppose that we have a dataset", + "type": "text" + }, + { + "bbox": [ + 254, + 314, + 336, + 328 + ], + "score": 0.93, + "content": "\\mathbfcal { D } = \\{ ( \\mathbf { x } _ { j } , y _ { j } ) \\} _ { j = 1 } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 313, + 394, + 329 + ], + "score": 1.0, + "content": "consisting of", + "type": "text" + }, + { + "bbox": [ + 395, + 317, + 402, + 325 + ], + "score": 0.75, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 313, + 506, + 329 + ], + "score": 1.0, + "content": "i.i.d. realizations of the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 125, + 340 + ], + "score": 1.0, + "content": "pair", + "type": "text" + }, + { + "bbox": [ + 126, + 327, + 155, + 340 + ], + "score": 0.91, + "content": "( \\mathbf { X } , Y )", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 327, + 205, + 340 + ], + "score": 1.0, + "content": ".2 Note that", + "type": "text" + }, + { + "bbox": [ + 205, + 328, + 215, + 338 + ], + "score": 0.75, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 327, + 505, + 340 + ], + "score": 1.0, + "content": "can be viewed as having either come from a dataset, in which case the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 339, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 505, + 351 + ], + "score": 1.0, + "content": "problem is of selecting predictive features, or as having come from a predictive model, in which", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 350, + 338, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 338, + 362 + ], + "score": 1.0, + "content": "case the problem is of explaining the model’s predictions.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 107, + 374, + 240, + 385 + ], + "lines": [ + { + "bbox": [ + 106, + 374, + 241, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 241, + 387 + ], + "score": 1.0, + "content": "2.1 OPTIMIZATION PROBLEM", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 394, + 505, + 428 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 505, + 406 + ], + "score": 1.0, + "content": "In order to learn a suitable selector function, we transform the constraint (1) into a soft constraint", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 406, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 404, + 418 + ], + "score": 1.0, + "content": "using the Kullback-Leibler (KL) divergence which, for random variables", + "type": "text" + }, + { + "bbox": [ + 405, + 407, + 416, + 416 + ], + "score": 0.77, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 406, + 435, + 418 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 436, + 406, + 445, + 416 + ], + "score": 0.82, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 406, + 505, + 418 + ], + "score": 1.0, + "content": "with densities", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 107, + 417, + 207, + 429 + ], + "spans": [ + { + "bbox": [ + 107, + 419, + 122, + 429 + ], + "score": 0.77, + "content": "p _ { W }", + "type": "inline_equation" + }, + { + "bbox": [ + 122, + 417, + 140, + 429 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 140, + 418, + 153, + 429 + ], + "score": 0.85, + "content": "p _ { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 417, + 207, + 429 + ], + "score": 1.0, + "content": "is defined as", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 426, + 381, + 455 + ], + "lines": [ + { + "bbox": [ + 230, + 426, + 381, + 455 + ], + "spans": [ + { + "bbox": [ + 230, + 426, + 381, + 455 + ], + "score": 0.94, + "content": "K L ( W | | V ) = \\mathbb { E } \\left[ \\log \\left( \\frac { p _ { W } ( W ) } { p _ { V } ( W ) } \\right) \\right] .", + "type": "interline_equation", + "image_path": "abe864ca7f43b91eab4dffe97e1c19d8412f7b1e526fedd5de3732abd1ed56bf.jpg" + } + ] + } + ], + "index": 25.5, + "virtual_lines": [ + { + "bbox": [ + 230, + 426, + 381, + 440.5 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 230, + 440.5, + 381, + 455.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 460, + 331, + 472 + ], + "lines": [ + { + "bbox": [ + 107, + 460, + 330, + 473 + ], + "spans": [ + { + "bbox": [ + 107, + 460, + 321, + 473 + ], + "score": 1.0, + "content": "We define the following loss for our selector function", + "type": "text" + }, + { + "bbox": [ + 322, + 461, + 330, + 470 + ], + "score": 0.83, + "content": "S", + "type": "inline_equation" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "interline_equation", + "bbox": [ + 166, + 475, + 444, + 496 + ], + "lines": [ + { + "bbox": [ + 166, + 475, + 444, + 496 + ], + "spans": [ + { + "bbox": [ + 166, + 475, + 444, + 496 + ], + "score": 0.93, + "content": "\\mathcal { L } ( S ) = \\mathbb { E } _ { \\mathbf { x } \\sim p _ { X } } \\left[ K L ( Y | \\mathbf { X } = \\mathbf { x } | | Y | \\mathbf { X } ^ { ( S ( \\mathbf { x } ) ) } = \\mathbf { x } ^ { ( S ( \\mathbf { x } ) ) } ) + \\lambda | | S ( \\mathbf { x } ) | | \\right]", + "type": "interline_equation", + "image_path": "e6fae9de7600871b807e358a95c8c1d48afbdadc5e22c04235b6068019216920.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 166, + 475, + 444, + 496 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 505, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 498, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 133, + 514 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 500, + 154, + 512 + ], + "score": 0.91, + "content": "| | \\cdot | |", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 498, + 505, + 514 + ], + "score": 1.0, + "content": "simply denotes the number of non-zero entries of a vector (or equivalently in this case,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 199, + 523 + ], + "score": 1.0, + "content": "the number of 1s) and", + "type": "text" + }, + { + "bbox": [ + 199, + 511, + 207, + 520 + ], + "score": 0.83, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "is a hyper-parameter that trades off between the constraint in (1) and the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 521, + 403, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 403, + 534 + ], + "score": 1.0, + "content": "number of selected features. The KL divergence in (2) can be rewritten as", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "interline_equation", + "bbox": [ + 114, + 536, + 497, + 614 + ], + "lines": [ + { + "bbox": [ + 114, + 536, + 497, + 614 + ], + "spans": [ + { + "bbox": [ + 114, + 536, + 497, + 614 + ], + "score": 0.94, + "content": "\\begin{array} { l } { { \\displaystyle K L ( Y | { \\bf X } = { \\bf x } | | Y | { \\bf X } ^ { ( S ( { \\bf x } ) ) } = { \\bf x } ^ { ( S ( { \\bf x } ) ) } ) = \\mathbb { E } _ { y \\sim Y | { \\bf X } = { \\bf x } } \\left[ \\log \\left( \\frac { p _ { Y } ( y | { \\bf x } ) } { p _ { Y } ( y | { \\bf x } ^ { ( S ( { \\bf x } ) ) } ) } \\right) \\right] } \\ ~ } \\\\ { { \\displaystyle = \\mathbb { E } _ { y \\sim Y | { \\bf X } = { \\bf x } } \\left[ \\log ( p _ { Y } ( y | { \\bf x } ) ) - \\log ( p _ { Y } ( y | { \\bf x } ^ { ( S ( { \\bf x } ) ) } ) ) \\right] } \\ ~ } \\\\ { { \\displaystyle = \\int _ { y } p _ { Y } ( y | { \\bf x } ) \\left[ \\log ( p _ { Y } ( y | { \\bf x } ) ) - \\log ( p _ { Y } ( y | { \\bf x } ^ { ( S ( { \\bf x } ) ) } ) ) \\right] d y } , } \\end{array}", + "type": "interline_equation", + "image_path": "738a0bebf00450836c2bb3e80d9af5cc8ddb55ce657b718e6bc18d104f7b16d6.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 114, + 536, + 497, + 562.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 114, + 562.0, + 497, + 588.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 114, + 588.0, + 497, + 614.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 615, + 425, + 628 + ], + "lines": [ + { + "bbox": [ + 105, + 615, + 425, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 133, + 629 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 616, + 162, + 628 + ], + "score": 0.92, + "content": "p _ { Y } ( \\cdot | \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 615, + 354, + 629 + ], + "score": 1.0, + "content": "denotes the appropriate conditional densities of", + "type": "text" + }, + { + "bbox": [ + 355, + 617, + 364, + 626 + ], + "score": 0.78, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 615, + 425, + 629 + ], + "score": 1.0, + "content": ". We will write", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 631, + 428, + 658 + ], + "lines": [ + { + "bbox": [ + 183, + 631, + 428, + 658 + ], + "spans": [ + { + "bbox": [ + 183, + 631, + 428, + 658 + ], + "score": 0.91, + "content": "l ( \\mathbf { x } , \\mathbf { s } ) = \\int _ { \\mathcal { V } } p _ { Y } ( y | \\mathbf { x } ) \\left[ \\log ( p _ { Y } ( y | \\mathbf { x } ) ) - \\log ( p _ { Y } ( y | \\mathbf { x } ^ { ( s ) } ) ) \\right] d y", + "type": "interline_equation", + "image_path": "de7b63d5d093ee776d85ede20c13488c842cead58b44ed74c9bfd5a76676164c.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 183, + 631, + 428, + 640.0 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 183, + 640.0, + 428, + 649.0 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 183, + 649.0, + 428, + 658.0 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 660, + 259, + 672 + ], + "lines": [ + { + "bbox": [ + 106, + 660, + 259, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 259, + 672 + ], + "score": 1.0, + "content": "so that our final loss can be written as", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 675, + 387, + 689 + ], + "lines": [ + { + "bbox": [ + 223, + 675, + 387, + 689 + ], + "spans": [ + { + "bbox": [ + 223, + 675, + 387, + 689 + ], + "score": 0.9, + "content": "\\mathcal { L } ( S ) = \\mathbb { E } _ { \\mathbf { x } \\sim p _ { X } } \\left[ l ( \\mathbf { x } , S ( \\mathbf { x } ) ) + \\lambda | | S ( \\mathbf { x } ) | | \\right]", + "type": "interline_equation", + "image_path": "b02731cda31838827c2d06ab791d382d2329226ae050173acc96858d117f040d.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 223, + 675, + 387, + 689 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 692, + 275, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 691, + 275, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 133, + 705 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 693, + 153, + 704 + ], + "score": 0.89, + "content": "| | \\cdot | |", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 691, + 201, + 705 + ], + "score": 1.0, + "content": "denotes the", + "type": "text" + }, + { + "bbox": [ + 202, + 693, + 210, + 703 + ], + "score": 0.85, + "content": "l _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 691, + 275, + 705 + ], + "score": 1.0, + "content": "(pseudo-)norm.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 711, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 709, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 292, + 724 + ], + "score": 1.0, + "content": "2We will occasionally abuse notation and write", + "type": "text" + }, + { + "bbox": [ + 293, + 713, + 301, + 722 + ], + "score": 0.83, + "content": "y _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 709, + 495, + 724 + ], + "score": 1.0, + "content": "to denote the ith element of the one-hot encoding of", + "type": "text" + }, + { + "bbox": [ + 496, + 714, + 501, + 722 + ], + "score": 0.77, + "content": "_ y", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 709, + 506, + 724 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 328, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 328, + 732 + ], + "score": 1.0, + "content": "though the context should make it clear when this is the case.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 505, + 128 + ], + "lines": [], + "index": 1.5, + "bbox_fs": [ + 105, + 82, + 506, + 129 + ], + "lines_deleted": true + }, + { + "type": "interline_equation", + "bbox": [ + 257, + 127, + 343, + 155 + ], + "lines": [ + { + "bbox": [ + 257, + 127, + 343, + 155 + ], + "spans": [ + { + "bbox": [ + 257, + 127, + 343, + 155 + ], + "score": 0.93, + "content": "x _ { i } ^ { ( \\mathbf { s } ) } = \\left\\{ { \\atop * \\operatorname { i f } s _ { i } = 0 } \\right.", + "type": "interline_equation", + "image_path": "97551ba6af2138e3dcf88974553e2a1250aee89c0e538f893a574d2a06f3ba96.jpg" + } + ] + } + ], + "index": 4.5, + "virtual_lines": [ + { + "bbox": [ + 257, + 127, + 343, + 141.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 257, + 141.0, + 343, + 155.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 156, + 300, + 168 + ], + "lines": [ + { + "bbox": [ + 106, + 156, + 301, + 168 + ], + "spans": [ + { + "bbox": [ + 106, + 156, + 135, + 168 + ], + "score": 1.0, + "content": "so that", + "type": "text" + }, + { + "bbox": [ + 135, + 158, + 142, + 166 + ], + "score": 0.76, + "content": "^ *", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 156, + 301, + 168 + ], + "score": 1.0, + "content": "represents that a feature is not selected.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 156, + 301, + 168 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 173, + 505, + 220 + ], + "lines": [ + { + "bbox": [ + 106, + 173, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 505, + 185 + ], + "score": 1.0, + "content": "In the global feature selection literature, the goal is to find the smallest s (i.e. the one with fewest 1s)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 184, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 106, + 185, + 145, + 198 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 146, + 184, + 240, + 198 + ], + "score": 0.92, + "content": "\\mathbb { E } ( Y | \\mathbf { X } ^ { ( \\mathbf { s } ) } ) = \\mathbb { E } ( Y | \\mathbf { X } )", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 185, + 470, + 198 + ], + "score": 1.0, + "content": ", or equivalently such that the conditional distribution of", + "type": "text" + }, + { + "bbox": [ + 470, + 186, + 479, + 195 + ], + "score": 0.78, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 185, + 505, + 198 + ], + "score": 1.0, + "content": "given", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 196, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 127, + 208 + ], + "score": 0.87, + "content": "\\mathbf { X } ^ { ( \\mathbf { s } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 196, + 189, + 211 + ], + "score": 1.0, + "content": "is the same as", + "type": "text" + }, + { + "bbox": [ + 189, + 198, + 199, + 208 + ], + "score": 0.78, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 196, + 250, + 211 + ], + "score": 1.0, + "content": "given all of", + "type": "text" + }, + { + "bbox": [ + 250, + 198, + 260, + 208 + ], + "score": 0.53, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 196, + 505, + 211 + ], + "score": 1.0, + "content": ". Note that this definition is given fully in terms of random", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 209, + 349, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 349, + 219 + ], + "score": 1.0, + "content": "variables, rather than realizations of those random variables.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5, + "bbox_fs": [ + 106, + 173, + 505, + 219 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 225, + 505, + 270 + ], + "lines": [ + { + "bbox": [ + 105, + 225, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 505, + 238 + ], + "score": 1.0, + "content": "In contrast, our problem necessarily needs to be defined in terms of realizations since we are aiming", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 237, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 342, + 249 + ], + "score": 1.0, + "content": "to select features for a given realization. We will write", + "type": "text" + }, + { + "bbox": [ + 342, + 239, + 350, + 246 + ], + "score": 0.65, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 237, + 505, + 249 + ], + "score": 1.0, + "content": "to denote realizations of the random", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 247, + 504, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 141, + 259 + ], + "score": 1.0, + "content": "variable", + "type": "text" + }, + { + "bbox": [ + 141, + 248, + 151, + 258 + ], + "score": 0.33, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 247, + 434, + 259 + ], + "score": 1.0, + "content": ". Then we formalize our problem as one of finding a selector function,", + "type": "text" + }, + { + "bbox": [ + 434, + 247, + 504, + 259 + ], + "score": 0.93, + "content": "S : \\mathcal { X } \\{ 0 , 1 \\} ^ { d }", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 259, + 321, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 212, + 271 + ], + "score": 1.0, + "content": "such that for almost every", + "type": "text" + }, + { + "bbox": [ + 212, + 259, + 240, + 269 + ], + "score": 0.89, + "content": "\\mathbf { x } \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 259, + 267, + 271 + ], + "score": 1.0, + "content": "(w.r.t.", + "type": "text" + }, + { + "bbox": [ + 267, + 260, + 281, + 270 + ], + "score": 0.74, + "content": "p _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 259, + 321, + 271 + ], + "score": 1.0, + "content": ") we have", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 225, + 505, + 271 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 228, + 274, + 383, + 290 + ], + "lines": [ + { + "bbox": [ + 228, + 274, + 383, + 290 + ], + "spans": [ + { + "bbox": [ + 228, + 274, + 383, + 290 + ], + "score": 0.92, + "content": "( Y | \\mathbf { X } ^ { ( S ( \\mathbf { x } ) ) } = \\mathbf { x } ^ { ( S ( \\mathbf { x } ) ) } ) \\overset { d . } { = } ( Y | \\mathbf { X } = \\mathbf { x } )", + "type": "interline_equation", + "image_path": "2969b89ba791131e980d398fdff5633999de0e7730b1e0f75971b658c4fe9ef5.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 228, + 274, + 383, + 290 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 297, + 493, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 294, + 495, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 132, + 310 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 294, + 144, + 308 + ], + "score": 0.6, + "content": "\\underline { { \\underline { { d . } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 295, + 286, + 310 + ], + "score": 1.0, + "content": "denotes equality in distribution and", + "type": "text" + }, + { + "bbox": [ + 287, + 298, + 308, + 310 + ], + "score": 0.92, + "content": "S ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 295, + 495, + 310 + ], + "score": 1.0, + "content": "is minimal (i.e. fewest 1s) such that (1) holds.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 294, + 495, + 310 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 313, + 505, + 362 + ], + "lines": [ + { + "bbox": [ + 105, + 313, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 254, + 329 + ], + "score": 1.0, + "content": "We suppose that we have a dataset", + "type": "text" + }, + { + "bbox": [ + 254, + 314, + 336, + 328 + ], + "score": 0.93, + "content": "\\mathbfcal { D } = \\{ ( \\mathbf { x } _ { j } , y _ { j } ) \\} _ { j = 1 } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 313, + 394, + 329 + ], + "score": 1.0, + "content": "consisting of", + "type": "text" + }, + { + "bbox": [ + 395, + 317, + 402, + 325 + ], + "score": 0.75, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 313, + 506, + 329 + ], + "score": 1.0, + "content": "i.i.d. realizations of the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 125, + 340 + ], + "score": 1.0, + "content": "pair", + "type": "text" + }, + { + "bbox": [ + 126, + 327, + 155, + 340 + ], + "score": 0.91, + "content": "( \\mathbf { X } , Y )", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 327, + 205, + 340 + ], + "score": 1.0, + "content": ".2 Note that", + "type": "text" + }, + { + "bbox": [ + 205, + 328, + 215, + 338 + ], + "score": 0.75, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 327, + 505, + 340 + ], + "score": 1.0, + "content": "can be viewed as having either come from a dataset, in which case the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 339, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 505, + 351 + ], + "score": 1.0, + "content": "problem is of selecting predictive features, or as having come from a predictive model, in which", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 350, + 338, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 338, + 362 + ], + "score": 1.0, + "content": "case the problem is of explaining the model’s predictions.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 313, + 506, + 362 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 374, + 240, + 385 + ], + "lines": [ + { + "bbox": [ + 106, + 374, + 241, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 241, + 387 + ], + "score": 1.0, + "content": "2.1 OPTIMIZATION PROBLEM", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 394, + 505, + 428 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 505, + 406 + ], + "score": 1.0, + "content": "In order to learn a suitable selector function, we transform the constraint (1) into a soft constraint", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 406, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 404, + 418 + ], + "score": 1.0, + "content": "using the Kullback-Leibler (KL) divergence which, for random variables", + "type": "text" + }, + { + "bbox": [ + 405, + 407, + 416, + 416 + ], + "score": 0.77, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 406, + 435, + 418 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 436, + 406, + 445, + 416 + ], + "score": 0.82, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 406, + 505, + 418 + ], + "score": 1.0, + "content": "with densities", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 107, + 417, + 207, + 429 + ], + "spans": [ + { + "bbox": [ + 107, + 419, + 122, + 429 + ], + "score": 0.77, + "content": "p _ { W }", + "type": "inline_equation" + }, + { + "bbox": [ + 122, + 417, + 140, + 429 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 140, + 418, + 153, + 429 + ], + "score": 0.85, + "content": "p _ { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 417, + 207, + 429 + ], + "score": 1.0, + "content": "is defined as", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 106, + 396, + 505, + 429 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 426, + 381, + 455 + ], + "lines": [ + { + "bbox": [ + 230, + 426, + 381, + 455 + ], + "spans": [ + { + "bbox": [ + 230, + 426, + 381, + 455 + ], + "score": 0.94, + "content": "K L ( W | | V ) = \\mathbb { E } \\left[ \\log \\left( \\frac { p _ { W } ( W ) } { p _ { V } ( W ) } \\right) \\right] .", + "type": "interline_equation", + "image_path": "abe864ca7f43b91eab4dffe97e1c19d8412f7b1e526fedd5de3732abd1ed56bf.jpg" + } + ] + } + ], + "index": 25.5, + "virtual_lines": [ + { + "bbox": [ + 230, + 426, + 381, + 440.5 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 230, + 440.5, + 381, + 455.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 460, + 331, + 472 + ], + "lines": [ + { + "bbox": [ + 107, + 460, + 330, + 473 + ], + "spans": [ + { + "bbox": [ + 107, + 460, + 321, + 473 + ], + "score": 1.0, + "content": "We define the following loss for our selector function", + "type": "text" + }, + { + "bbox": [ + 322, + 461, + 330, + 470 + ], + "score": 0.83, + "content": "S", + "type": "inline_equation" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 107, + 460, + 330, + 473 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 166, + 475, + 444, + 496 + ], + "lines": [ + { + "bbox": [ + 166, + 475, + 444, + 496 + ], + "spans": [ + { + "bbox": [ + 166, + 475, + 444, + 496 + ], + "score": 0.93, + "content": "\\mathcal { L } ( S ) = \\mathbb { E } _ { \\mathbf { x } \\sim p _ { X } } \\left[ K L ( Y | \\mathbf { X } = \\mathbf { x } | | Y | \\mathbf { X } ^ { ( S ( \\mathbf { x } ) ) } = \\mathbf { x } ^ { ( S ( \\mathbf { x } ) ) } ) + \\lambda | | S ( \\mathbf { x } ) | | \\right]", + "type": "interline_equation", + "image_path": "e6fae9de7600871b807e358a95c8c1d48afbdadc5e22c04235b6068019216920.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 166, + 475, + 444, + 496 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 505, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 498, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 133, + 514 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 500, + 154, + 512 + ], + "score": 0.91, + "content": "| | \\cdot | |", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 498, + 505, + 514 + ], + "score": 1.0, + "content": "simply denotes the number of non-zero entries of a vector (or equivalently in this case,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 199, + 523 + ], + "score": 1.0, + "content": "the number of 1s) and", + "type": "text" + }, + { + "bbox": [ + 199, + 511, + 207, + 520 + ], + "score": 0.83, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "is a hyper-parameter that trades off between the constraint in (1) and the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 521, + 403, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 403, + 534 + ], + "score": 1.0, + "content": "number of selected features. The KL divergence in (2) can be rewritten as", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 498, + 505, + 534 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 114, + 536, + 497, + 614 + ], + "lines": [ + { + "bbox": [ + 114, + 536, + 497, + 614 + ], + "spans": [ + { + "bbox": [ + 114, + 536, + 497, + 614 + ], + "score": 0.94, + "content": "\\begin{array} { l } { { \\displaystyle K L ( Y | { \\bf X } = { \\bf x } | | Y | { \\bf X } ^ { ( S ( { \\bf x } ) ) } = { \\bf x } ^ { ( S ( { \\bf x } ) ) } ) = \\mathbb { E } _ { y \\sim Y | { \\bf X } = { \\bf x } } \\left[ \\log \\left( \\frac { p _ { Y } ( y | { \\bf x } ) } { p _ { Y } ( y | { \\bf x } ^ { ( S ( { \\bf x } ) ) } ) } \\right) \\right] } \\ ~ } \\\\ { { \\displaystyle = \\mathbb { E } _ { y \\sim Y | { \\bf X } = { \\bf x } } \\left[ \\log ( p _ { Y } ( y | { \\bf x } ) ) - \\log ( p _ { Y } ( y | { \\bf x } ^ { ( S ( { \\bf x } ) ) } ) ) \\right] } \\ ~ } \\\\ { { \\displaystyle = \\int _ { y } p _ { Y } ( y | { \\bf x } ) \\left[ \\log ( p _ { Y } ( y | { \\bf x } ) ) - \\log ( p _ { Y } ( y | { \\bf x } ^ { ( S ( { \\bf x } ) ) } ) ) \\right] d y } , } \\end{array}", + "type": "interline_equation", + "image_path": "738a0bebf00450836c2bb3e80d9af5cc8ddb55ce657b718e6bc18d104f7b16d6.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 114, + 536, + 497, + 562.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 114, + 562.0, + 497, + 588.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 114, + 588.0, + 497, + 614.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 615, + 425, + 628 + ], + "lines": [ + { + "bbox": [ + 105, + 615, + 425, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 133, + 629 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 616, + 162, + 628 + ], + "score": 0.92, + "content": "p _ { Y } ( \\cdot | \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 615, + 354, + 629 + ], + "score": 1.0, + "content": "denotes the appropriate conditional densities of", + "type": "text" + }, + { + "bbox": [ + 355, + 617, + 364, + 626 + ], + "score": 0.78, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 615, + 425, + 629 + ], + "score": 1.0, + "content": ". We will write", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 615, + 425, + 629 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 631, + 428, + 658 + ], + "lines": [ + { + "bbox": [ + 183, + 631, + 428, + 658 + ], + "spans": [ + { + "bbox": [ + 183, + 631, + 428, + 658 + ], + "score": 0.91, + "content": "l ( \\mathbf { x } , \\mathbf { s } ) = \\int _ { \\mathcal { V } } p _ { Y } ( y | \\mathbf { x } ) \\left[ \\log ( p _ { Y } ( y | \\mathbf { x } ) ) - \\log ( p _ { Y } ( y | \\mathbf { x } ^ { ( s ) } ) ) \\right] d y", + "type": "interline_equation", + "image_path": "de7b63d5d093ee776d85ede20c13488c842cead58b44ed74c9bfd5a76676164c.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 183, + 631, + 428, + 640.0 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 183, + 640.0, + 428, + 649.0 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 183, + 649.0, + 428, + 658.0 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 660, + 259, + 672 + ], + "lines": [ + { + "bbox": [ + 106, + 660, + 259, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 259, + 672 + ], + "score": 1.0, + "content": "so that our final loss can be written as", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39, + "bbox_fs": [ + 106, + 660, + 259, + 672 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 675, + 387, + 689 + ], + "lines": [ + { + "bbox": [ + 223, + 675, + 387, + 689 + ], + "spans": [ + { + "bbox": [ + 223, + 675, + 387, + 689 + ], + "score": 0.9, + "content": "\\mathcal { L } ( S ) = \\mathbb { E } _ { \\mathbf { x } \\sim p _ { X } } \\left[ l ( \\mathbf { x } , S ( \\mathbf { x } ) ) + \\lambda | | S ( \\mathbf { x } ) | | \\right]", + "type": "interline_equation", + "image_path": "b02731cda31838827c2d06ab791d382d2329226ae050173acc96858d117f040d.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 223, + 675, + 387, + 689 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 692, + 275, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 691, + 275, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 133, + 705 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 693, + 153, + 704 + ], + "score": 0.89, + "content": "| | \\cdot | |", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 691, + 201, + 705 + ], + "score": 1.0, + "content": "denotes the", + "type": "text" + }, + { + "bbox": [ + 202, + 693, + 210, + 703 + ], + "score": 0.85, + "content": "l _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 691, + 275, + 705 + ], + "score": 1.0, + "content": "(pseudo-)norm.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41, + "bbox_fs": [ + 106, + 691, + 275, + 705 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 222, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 225, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 225, + 96 + ], + "score": 1.0, + "content": "3 PROPOSED MODEL", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 106, + 505, + 164 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 505, + 119 + ], + "score": 1.0, + "content": "There are two main challenges in minimizing the loss in (4). First, the output space of the selector", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 505, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 142, + 131 + ], + "score": 1.0, + "content": "function", + "type": "text" + }, + { + "bbox": [ + 143, + 117, + 179, + 130 + ], + "score": 0.92, + "content": "( \\{ 0 , 1 \\} ^ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 117, + 505, + 131 + ], + "score": 1.0, + "content": "is large - its size increases exponentially with the dimension of the feature space;", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 129, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 505, + 141 + ], + "score": 1.0, + "content": "thus a complete search is impractical in high dimensional settings (and it should be noted that it is", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 139, + 505, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 139, + 505, + 152 + ], + "score": 1.0, + "content": "in high dimensional settings where feature selection is most necessary). Second, we do not have", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 149, + 406, + 166 + ], + "spans": [ + { + "bbox": [ + 104, + 149, + 196, + 166 + ], + "score": 1.0, + "content": "access to the densities", + "type": "text" + }, + { + "bbox": [ + 197, + 151, + 252, + 164 + ], + "score": 0.93, + "content": "p _ { Y } \\big ( \\cdot | \\mathbf { x } ^ { ( S ( \\mathbf { x } ) ) } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 149, + 270, + 166 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 270, + 151, + 305, + 164 + ], + "score": 0.93, + "content": "p _ { Y } ( y \\vert \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 149, + 406, + 166 + ], + "score": 1.0, + "content": "required to compute (4).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 107, + 178, + 211, + 189 + ], + "lines": [ + { + "bbox": [ + 106, + 178, + 212, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 212, + 191 + ], + "score": 1.0, + "content": "3.1 LOSS ESTIMATION", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 198, + 506, + 235 + ], + "lines": [ + { + "bbox": [ + 105, + 197, + 504, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 385, + 212 + ], + "score": 1.0, + "content": "To approximate the densities in (3), we introduce a pair of functions", + "type": "text" + }, + { + "bbox": [ + 385, + 198, + 504, + 211 + ], + "score": 0.92, + "content": "f ^ { \\phi } : \\mathcal { X } ^ { * } \\times \\{ 0 , 1 \\} ^ { d } \\to [ 0 , 1 ] ^ { c }", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 210, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 104, + 210, + 175, + 225 + ], + "score": 1.0, + "content": "parametrized by", + "type": "text" + }, + { + "bbox": [ + 175, + 212, + 183, + 223 + ], + "score": 0.83, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 210, + 202, + 225 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 203, + 211, + 277, + 224 + ], + "score": 0.92, + "content": "f ^ { \\gamma } : \\mathcal { X } \\to [ 0 , 1 ] ^ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 210, + 347, + 225 + ], + "score": 1.0, + "content": "parametrized by", + "type": "text" + }, + { + "bbox": [ + 347, + 213, + 356, + 223 + ], + "score": 0.81, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 210, + 430, + 225 + ], + "score": 1.0, + "content": "that will estimate", + "type": "text" + }, + { + "bbox": [ + 430, + 211, + 486, + 224 + ], + "score": 0.91, + "content": "p _ { Y } \\big ( \\cdot | \\mathbf { x } ^ { ( S ( \\mathbf { x } ) ) } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 210, + 505, + 225 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 222, + 193, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 139, + 235 + ], + "score": 0.92, + "content": "p _ { Y } ( \\cdot | \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 222, + 193, + 236 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "title", + "bbox": [ + 107, + 247, + 237, + 259 + ], + "lines": [ + { + "bbox": [ + 106, + 247, + 239, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 247, + 239, + 260 + ], + "score": 1.0, + "content": "3.1.1 PREDICTOR NETWORK", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 267, + 505, + 301 + ], + "lines": [ + { + "bbox": [ + 105, + 265, + 503, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 155, + 280 + ], + "score": 1.0, + "content": "We refer to", + "type": "text" + }, + { + "bbox": [ + 155, + 266, + 168, + 279 + ], + "score": 0.9, + "content": "f ^ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 265, + 486, + 280 + ], + "score": 1.0, + "content": "as the predictor network. This will take as input a suppressed3 feature vector", + "type": "text" + }, + { + "bbox": [ + 486, + 266, + 503, + 278 + ], + "score": 0.86, + "content": "\\mathbf { x } ^ { ( \\mathbf { s } ) }", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 279, + 504, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 504, + 291 + ], + "score": 1.0, + "content": "and its corresponding selection vector s and will output a probability distribution (using a softmax", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 289, + 281, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 167, + 302 + ], + "score": 1.0, + "content": "layer) over the", + "type": "text" + }, + { + "bbox": [ + 167, + 291, + 173, + 299 + ], + "score": 0.79, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 289, + 281, + 302 + ], + "score": 1.0, + "content": "-dimensional output space.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 306, + 335, + 318 + ], + "lines": [ + { + "bbox": [ + 107, + 303, + 335, + 321 + ], + "spans": [ + { + "bbox": [ + 107, + 305, + 119, + 318 + ], + "score": 0.88, + "content": "f ^ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 303, + 335, + 321 + ], + "score": 1.0, + "content": "is trained to minimize the cross entropy loss given by", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 324, + 414, + 357 + ], + "lines": [ + { + "bbox": [ + 196, + 324, + 414, + 357 + ], + "spans": [ + { + "bbox": [ + 196, + 324, + 414, + 357 + ], + "score": 0.94, + "content": "l _ { 1 } ( \\phi ) = - \\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim p , \\mathbf { s } \\sim \\pi _ { \\theta } ( \\mathbf { x } , \\cdot ) } \\Big [ \\sum _ { i = 1 } ^ { c } y _ { i } \\log ( f _ { i } ^ { \\phi } ( \\mathbf { x } ^ { ( \\mathbf { s } ) } , \\mathbf { s } ) ) \\Big ]", + "type": "interline_equation", + "image_path": "f6e76f984c5307b4bcfa01bb51fc0551a472054048cbd2378137f3c25b776d88.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 196, + 324, + 414, + 340.5 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 196, + 340.5, + 414, + 357.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 362, + 505, + 396 + ], + "lines": [ + { + "bbox": [ + 105, + 361, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 133, + 375 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 365, + 144, + 374 + ], + "score": 0.84, + "content": "y _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 361, + 170, + 375 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 171, + 364, + 175, + 372 + ], + "score": 0.47, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 361, + 344, + 375 + ], + "score": 1.0, + "content": "th component of the one-hot encoding of", + "type": "text" + }, + { + "bbox": [ + 344, + 365, + 351, + 374 + ], + "score": 0.8, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 361, + 370, + 375 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 370, + 364, + 381, + 374 + ], + "score": 0.85, + "content": "\\pi _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 361, + 505, + 375 + ], + "score": 1.0, + "content": "is the distribution induced by", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 372, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 385, + 387 + ], + "score": 1.0, + "content": "our selector network which will be defined in the following section.", + "type": "text" + }, + { + "bbox": [ + 386, + 373, + 398, + 385 + ], + "score": 0.91, + "content": "f ^ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 372, + 505, + 387 + ], + "score": 1.0, + "content": "is implemented as a fully", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 385, + 219, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 219, + 395 + ], + "score": 1.0, + "content": "connected neural network4.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 107, + 409, + 231, + 421 + ], + "lines": [ + { + "bbox": [ + 106, + 409, + 232, + 422 + ], + "spans": [ + { + "bbox": [ + 106, + 409, + 232, + 422 + ], + "score": 1.0, + "content": "3.1.2 BASELINE NETWORK", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 105, + 429, + 504, + 452 + ], + "lines": [ + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 155, + 442 + ], + "score": 1.0, + "content": "We refer to", + "type": "text" + }, + { + "bbox": [ + 155, + 430, + 167, + 441 + ], + "score": 0.89, + "content": "f ^ { \\gamma }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "as the baseline network, which is standard in the actor-critic literature for variance", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 440, + 478, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 150, + 452 + ], + "score": 1.0, + "content": "reduction.", + "type": "text" + }, + { + "bbox": [ + 150, + 441, + 162, + 452 + ], + "score": 0.88, + "content": "f ^ { \\gamma }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 440, + 478, + 452 + ], + "score": 1.0, + "content": "is implemented as a fully connected neural network and is trained to minimize", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 458, + 388, + 491 + ], + "lines": [ + { + "bbox": [ + 223, + 458, + 388, + 491 + ], + "spans": [ + { + "bbox": [ + 223, + 458, + 388, + 491 + ], + "score": 0.94, + "content": "l _ { 3 } ( \\gamma ) = - \\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim p } \\Big [ \\sum _ { i = 1 } ^ { c } y _ { i } \\log ( f _ { i } ^ { \\gamma } ( \\mathbf { x } ) ) \\Big ] .", + "type": "interline_equation", + "image_path": "cf524fe7f418feec9fb53678b87e66de2fb8d8c2b87eaba770a51e74b02f05dd.jpg" + } + ] + } + ], + "index": 23.5, + "virtual_lines": [ + { + "bbox": [ + 223, + 458, + 388, + 474.5 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 223, + 474.5, + 388, + 491.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 504, + 300, + 517 + ], + "lines": [ + { + "bbox": [ + 104, + 502, + 301, + 519 + ], + "spans": [ + { + "bbox": [ + 104, + 502, + 145, + 519 + ], + "score": 1.0, + "content": "For fixed", + "type": "text" + }, + { + "bbox": [ + 145, + 506, + 163, + 517 + ], + "score": 0.91, + "content": "\\phi , \\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 502, + 280, + 519 + ], + "score": 1.0, + "content": "we define our loss estimator,", + "type": "text" + }, + { + "bbox": [ + 280, + 504, + 285, + 516 + ], + "score": 0.69, + "content": "\\hat { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 502, + 301, + 519 + ], + "score": 1.0, + "content": ", by", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "interline_equation", + "bbox": [ + 184, + 523, + 427, + 558 + ], + "lines": [ + { + "bbox": [ + 184, + 523, + 427, + 558 + ], + "spans": [ + { + "bbox": [ + 184, + 523, + 427, + 558 + ], + "score": 0.93, + "content": "\\hat { l } ( \\mathbf { x } , \\mathbf { s } ) = - \\left[ \\sum _ { i = 1 } ^ { c } y _ { i } \\log ( f _ { i } ^ { \\phi } ( \\mathbf { x ^ { ( s ) } } , \\mathbf { s } ) ) - \\sum _ { i = 1 } ^ { c } y _ { i } \\log ( f _ { i } ^ { \\gamma } ( \\mathbf { x } ) ) \\right] .", + "type": "interline_equation", + "image_path": "1df8420908f508fa82b62f85d8fc06987bb663df220ae5f7a61dc8f0b53cfda6.jpg" + } + ] + } + ], + "index": 26.5, + "virtual_lines": [ + { + "bbox": [ + 184, + 523, + 427, + 540.5 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 184, + 540.5, + 427, + 558.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "title", + "bbox": [ + 108, + 578, + 288, + 590 + ], + "lines": [ + { + "bbox": [ + 105, + 578, + 290, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 290, + 592 + ], + "score": 1.0, + "content": "3.2 SELECTOR FUNCTION OPTIMIZATION", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 598, + 505, + 658 + ], + "lines": [ + { + "bbox": [ + 105, + 598, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 258, + 612 + ], + "score": 1.0, + "content": "We approximate the selector function", + "type": "text" + }, + { + "bbox": [ + 258, + 599, + 326, + 612 + ], + "score": 0.93, + "content": "S : \\mathcal { X } \\{ 0 , 1 \\} ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 598, + 462, + 612 + ], + "score": 1.0, + "content": "by using a single neural network,", + "type": "text" + }, + { + "bbox": [ + 462, + 598, + 505, + 610 + ], + "score": 0.91, + "content": "\\hat { S } ^ { \\theta } : \\mathcal { X } ", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 107, + 609, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 107, + 610, + 132, + 623 + ], + "score": 0.91, + "content": "[ 0 , 1 ] ^ { \\bar { d } }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 609, + 239, + 624 + ], + "score": 1.0, + "content": "parameterized by weights", + "type": "text" + }, + { + "bbox": [ + 240, + 611, + 245, + 621 + ], + "score": 0.79, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 609, + 506, + 624 + ], + "score": 1.0, + "content": ", that outputs a probability for selecting each feature (i.e. the ith", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 622, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 164, + 636 + ], + "score": 1.0, + "content": "component of", + "type": "text" + }, + { + "bbox": [ + 165, + 622, + 190, + 636 + ], + "score": 0.93, + "content": "\\hat { S } ^ { \\theta } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 622, + 506, + 636 + ], + "score": 1.0, + "content": "will denote the probability with which we select the ith feature). The selector", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 634, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 373, + 648 + ], + "score": 1.0, + "content": "network induces a probability distribution over the selection space", + "type": "text" + }, + { + "bbox": [ + 373, + 634, + 409, + 646 + ], + "score": 0.91, + "content": "( \\{ 0 , 1 \\} ^ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 634, + 506, + 648 + ], + "score": 1.0, + "content": ", with the probability of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 645, + 336, + 658 + ], + "spans": [ + { + "bbox": [ + 104, + 645, + 223, + 658 + ], + "score": 1.0, + "content": "a given joint selection vector", + "type": "text" + }, + { + "bbox": [ + 223, + 645, + 271, + 658 + ], + "score": 0.93, + "content": "\\mathbf { s } \\in \\{ 0 , 1 \\} ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 645, + 336, + 658 + ], + "score": 1.0, + "content": "being given by5", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 663, + 391, + 679 + ], + "lines": [ + { + "bbox": [ + 219, + 663, + 391, + 679 + ], + "spans": [ + { + "bbox": [ + 219, + 663, + 391, + 679 + ], + "score": 0.91, + "content": "\\pi _ { \\boldsymbol \\theta } ( \\mathbf { x } , \\mathbf { s } ) = \\Pi _ { i = 1 } ^ { d } \\hat { S } _ { i } ^ { \\theta } ( \\mathbf { x } ) ^ { s _ { i } } ( 1 - \\hat { S } _ { i } ^ { \\theta } ( \\mathbf { x } ) ) ^ { 1 - s _ { i } } .", + "type": "interline_equation", + "image_path": "58b4ad2348bf8465d485f7aac9e1256be37fa6dbb67bc89f3b6f9fa7d96406e3.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 219, + 663, + 391, + 679 + ], + "spans": [], + "index": 34 + } + ] + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 689, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 686, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 118, + 686, + 219, + 702 + ], + "score": 1.0, + "content": "3When implemented we set", + "type": "text" + }, + { + "bbox": [ + 219, + 690, + 241, + 698 + ], + "score": 0.86, + "content": "* = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 686, + 475, + 702 + ], + "score": 1.0, + "content": "and include the selection vector to differentiate this from the case", + "type": "text" + }, + { + "bbox": [ + 475, + 690, + 501, + 699 + ], + "score": 0.9, + "content": "x _ { i } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 686, + 505, + 702 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ] + }, + { + "bbox": [ + 119, + 697, + 414, + 714 + ], + "spans": [ + { + "bbox": [ + 119, + 699, + 148, + 711 + ], + "score": 0.75, + "content": "^ 4 f ^ { \\phi } , f ^ { \\gamma }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 697, + 165, + 714 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 165, + 699, + 176, + 710 + ], + "score": 0.88, + "content": "\\hat { S } ^ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 697, + 414, + 714 + ], + "score": 1.0, + "content": "could also be implemented as CNNs or RNNs, when appropriate.", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 709, + 505, + 725 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 181, + 725 + ], + "score": 1.0, + "content": "5Note that, when", + "type": "text" + }, + { + "bbox": [ + 182, + 712, + 187, + 721 + ], + "score": 0.79, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 709, + 369, + 725 + ], + "score": 1.0, + "content": "is large, this becomes vanishingly small, however,", + "type": "text" + }, + { + "bbox": [ + 369, + 713, + 379, + 721 + ], + "score": 0.82, + "content": "\\pi \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 709, + 505, + 725 + ], + "score": 1.0, + "content": "appears in our loss only via its log", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 722, + 249, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 722, + 249, + 732 + ], + "score": 1.0, + "content": "and so in practice this is not a problem.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "4", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 222, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 225, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 225, + 96 + ], + "score": 1.0, + "content": "3 PROPOSED MODEL", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 106, + 505, + 164 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 505, + 119 + ], + "score": 1.0, + "content": "There are two main challenges in minimizing the loss in (4). First, the output space of the selector", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 505, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 142, + 131 + ], + "score": 1.0, + "content": "function", + "type": "text" + }, + { + "bbox": [ + 143, + 117, + 179, + 130 + ], + "score": 0.92, + "content": "( \\{ 0 , 1 \\} ^ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 117, + 505, + 131 + ], + "score": 1.0, + "content": "is large - its size increases exponentially with the dimension of the feature space;", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 129, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 505, + 141 + ], + "score": 1.0, + "content": "thus a complete search is impractical in high dimensional settings (and it should be noted that it is", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 139, + 505, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 139, + 505, + 152 + ], + "score": 1.0, + "content": "in high dimensional settings where feature selection is most necessary). Second, we do not have", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 149, + 406, + 166 + ], + "spans": [ + { + "bbox": [ + 104, + 149, + 196, + 166 + ], + "score": 1.0, + "content": "access to the densities", + "type": "text" + }, + { + "bbox": [ + 197, + 151, + 252, + 164 + ], + "score": 0.93, + "content": "p _ { Y } \\big ( \\cdot | \\mathbf { x } ^ { ( S ( \\mathbf { x } ) ) } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 149, + 270, + 166 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 270, + 151, + 305, + 164 + ], + "score": 0.93, + "content": "p _ { Y } ( y \\vert \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 149, + 406, + 166 + ], + "score": 1.0, + "content": "required to compute (4).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3, + "bbox_fs": [ + 104, + 106, + 505, + 166 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 178, + 211, + 189 + ], + "lines": [ + { + "bbox": [ + 106, + 178, + 212, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 212, + 191 + ], + "score": 1.0, + "content": "3.1 LOSS ESTIMATION", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 198, + 506, + 235 + ], + "lines": [ + { + "bbox": [ + 105, + 197, + 504, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 385, + 212 + ], + "score": 1.0, + "content": "To approximate the densities in (3), we introduce a pair of functions", + "type": "text" + }, + { + "bbox": [ + 385, + 198, + 504, + 211 + ], + "score": 0.92, + "content": "f ^ { \\phi } : \\mathcal { X } ^ { * } \\times \\{ 0 , 1 \\} ^ { d } \\to [ 0 , 1 ] ^ { c }", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 210, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 104, + 210, + 175, + 225 + ], + "score": 1.0, + "content": "parametrized by", + "type": "text" + }, + { + "bbox": [ + 175, + 212, + 183, + 223 + ], + "score": 0.83, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 210, + 202, + 225 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 203, + 211, + 277, + 224 + ], + "score": 0.92, + "content": "f ^ { \\gamma } : \\mathcal { X } \\to [ 0 , 1 ] ^ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 210, + 347, + 225 + ], + "score": 1.0, + "content": "parametrized by", + "type": "text" + }, + { + "bbox": [ + 347, + 213, + 356, + 223 + ], + "score": 0.81, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 210, + 430, + 225 + ], + "score": 1.0, + "content": "that will estimate", + "type": "text" + }, + { + "bbox": [ + 430, + 211, + 486, + 224 + ], + "score": 0.91, + "content": "p _ { Y } \\big ( \\cdot | \\mathbf { x } ^ { ( S ( \\mathbf { x } ) ) } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 210, + 505, + 225 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 222, + 193, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 139, + 235 + ], + "score": 0.92, + "content": "p _ { Y } ( \\cdot | \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 222, + 193, + 236 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 104, + 197, + 505, + 236 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 247, + 237, + 259 + ], + "lines": [ + { + "bbox": [ + 106, + 247, + 239, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 247, + 239, + 260 + ], + "score": 1.0, + "content": "3.1.1 PREDICTOR NETWORK", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 267, + 505, + 301 + ], + "lines": [ + { + "bbox": [ + 105, + 265, + 503, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 155, + 280 + ], + "score": 1.0, + "content": "We refer to", + "type": "text" + }, + { + "bbox": [ + 155, + 266, + 168, + 279 + ], + "score": 0.9, + "content": "f ^ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 265, + 486, + 280 + ], + "score": 1.0, + "content": "as the predictor network. This will take as input a suppressed3 feature vector", + "type": "text" + }, + { + "bbox": [ + 486, + 266, + 503, + 278 + ], + "score": 0.86, + "content": "\\mathbf { x } ^ { ( \\mathbf { s } ) }", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 279, + 504, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 504, + 291 + ], + "score": 1.0, + "content": "and its corresponding selection vector s and will output a probability distribution (using a softmax", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 289, + 281, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 167, + 302 + ], + "score": 1.0, + "content": "layer) over the", + "type": "text" + }, + { + "bbox": [ + 167, + 291, + 173, + 299 + ], + "score": 0.79, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 289, + 281, + 302 + ], + "score": 1.0, + "content": "-dimensional output space.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 265, + 504, + 302 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 306, + 335, + 318 + ], + "lines": [ + { + "bbox": [ + 107, + 303, + 335, + 321 + ], + "spans": [ + { + "bbox": [ + 107, + 305, + 119, + 318 + ], + "score": 0.88, + "content": "f ^ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 303, + 335, + 321 + ], + "score": 1.0, + "content": "is trained to minimize the cross entropy loss given by", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 107, + 303, + 335, + 321 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 324, + 414, + 357 + ], + "lines": [ + { + "bbox": [ + 196, + 324, + 414, + 357 + ], + "spans": [ + { + "bbox": [ + 196, + 324, + 414, + 357 + ], + "score": 0.94, + "content": "l _ { 1 } ( \\phi ) = - \\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim p , \\mathbf { s } \\sim \\pi _ { \\theta } ( \\mathbf { x } , \\cdot ) } \\Big [ \\sum _ { i = 1 } ^ { c } y _ { i } \\log ( f _ { i } ^ { \\phi } ( \\mathbf { x } ^ { ( \\mathbf { s } ) } , \\mathbf { s } ) ) \\Big ]", + "type": "interline_equation", + "image_path": "f6e76f984c5307b4bcfa01bb51fc0551a472054048cbd2378137f3c25b776d88.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 196, + 324, + 414, + 340.5 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 196, + 340.5, + 414, + 357.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 362, + 505, + 396 + ], + "lines": [ + { + "bbox": [ + 105, + 361, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 133, + 375 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 365, + 144, + 374 + ], + "score": 0.84, + "content": "y _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 361, + 170, + 375 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 171, + 364, + 175, + 372 + ], + "score": 0.47, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 361, + 344, + 375 + ], + "score": 1.0, + "content": "th component of the one-hot encoding of", + "type": "text" + }, + { + "bbox": [ + 344, + 365, + 351, + 374 + ], + "score": 0.8, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 361, + 370, + 375 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 370, + 364, + 381, + 374 + ], + "score": 0.85, + "content": "\\pi _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 361, + 505, + 375 + ], + "score": 1.0, + "content": "is the distribution induced by", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 372, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 385, + 387 + ], + "score": 1.0, + "content": "our selector network which will be defined in the following section.", + "type": "text" + }, + { + "bbox": [ + 386, + 373, + 398, + 385 + ], + "score": 0.91, + "content": "f ^ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 372, + 505, + 387 + ], + "score": 1.0, + "content": "is implemented as a fully", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 385, + 219, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 219, + 395 + ], + "score": 1.0, + "content": "connected neural network4.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 361, + 505, + 395 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 409, + 231, + 421 + ], + "lines": [ + { + "bbox": [ + 106, + 409, + 232, + 422 + ], + "spans": [ + { + "bbox": [ + 106, + 409, + 232, + 422 + ], + "score": 1.0, + "content": "3.1.2 BASELINE NETWORK", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 105, + 429, + 504, + 452 + ], + "lines": [ + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 155, + 442 + ], + "score": 1.0, + "content": "We refer to", + "type": "text" + }, + { + "bbox": [ + 155, + 430, + 167, + 441 + ], + "score": 0.89, + "content": "f ^ { \\gamma }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "as the baseline network, which is standard in the actor-critic literature for variance", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 440, + 478, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 150, + 452 + ], + "score": 1.0, + "content": "reduction.", + "type": "text" + }, + { + "bbox": [ + 150, + 441, + 162, + 452 + ], + "score": 0.88, + "content": "f ^ { \\gamma }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 440, + 478, + 452 + ], + "score": 1.0, + "content": "is implemented as a fully connected neural network and is trained to minimize", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 429, + 505, + 452 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 458, + 388, + 491 + ], + "lines": [ + { + "bbox": [ + 223, + 458, + 388, + 491 + ], + "spans": [ + { + "bbox": [ + 223, + 458, + 388, + 491 + ], + "score": 0.94, + "content": "l _ { 3 } ( \\gamma ) = - \\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim p } \\Big [ \\sum _ { i = 1 } ^ { c } y _ { i } \\log ( f _ { i } ^ { \\gamma } ( \\mathbf { x } ) ) \\Big ] .", + "type": "interline_equation", + "image_path": "cf524fe7f418feec9fb53678b87e66de2fb8d8c2b87eaba770a51e74b02f05dd.jpg" + } + ] + } + ], + "index": 23.5, + "virtual_lines": [ + { + "bbox": [ + 223, + 458, + 388, + 474.5 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 223, + 474.5, + 388, + 491.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 504, + 300, + 517 + ], + "lines": [ + { + "bbox": [ + 104, + 502, + 301, + 519 + ], + "spans": [ + { + "bbox": [ + 104, + 502, + 145, + 519 + ], + "score": 1.0, + "content": "For fixed", + "type": "text" + }, + { + "bbox": [ + 145, + 506, + 163, + 517 + ], + "score": 0.91, + "content": "\\phi , \\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 502, + 280, + 519 + ], + "score": 1.0, + "content": "we define our loss estimator,", + "type": "text" + }, + { + "bbox": [ + 280, + 504, + 285, + 516 + ], + "score": 0.69, + "content": "\\hat { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 502, + 301, + 519 + ], + "score": 1.0, + "content": ", by", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 104, + 502, + 301, + 519 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 184, + 523, + 427, + 558 + ], + "lines": [ + { + "bbox": [ + 184, + 523, + 427, + 558 + ], + "spans": [ + { + "bbox": [ + 184, + 523, + 427, + 558 + ], + "score": 0.93, + "content": "\\hat { l } ( \\mathbf { x } , \\mathbf { s } ) = - \\left[ \\sum _ { i = 1 } ^ { c } y _ { i } \\log ( f _ { i } ^ { \\phi } ( \\mathbf { x ^ { ( s ) } } , \\mathbf { s } ) ) - \\sum _ { i = 1 } ^ { c } y _ { i } \\log ( f _ { i } ^ { \\gamma } ( \\mathbf { x } ) ) \\right] .", + "type": "interline_equation", + "image_path": "1df8420908f508fa82b62f85d8fc06987bb663df220ae5f7a61dc8f0b53cfda6.jpg" + } + ] + } + ], + "index": 26.5, + "virtual_lines": [ + { + "bbox": [ + 184, + 523, + 427, + 540.5 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 184, + 540.5, + 427, + 558.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "title", + "bbox": [ + 108, + 578, + 288, + 590 + ], + "lines": [ + { + "bbox": [ + 105, + 578, + 290, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 290, + 592 + ], + "score": 1.0, + "content": "3.2 SELECTOR FUNCTION OPTIMIZATION", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 598, + 505, + 658 + ], + "lines": [ + { + "bbox": [ + 105, + 598, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 258, + 612 + ], + "score": 1.0, + "content": "We approximate the selector function", + "type": "text" + }, + { + "bbox": [ + 258, + 599, + 326, + 612 + ], + "score": 0.93, + "content": "S : \\mathcal { X } \\{ 0 , 1 \\} ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 598, + 462, + 612 + ], + "score": 1.0, + "content": "by using a single neural network,", + "type": "text" + }, + { + "bbox": [ + 462, + 598, + 505, + 610 + ], + "score": 0.91, + "content": "\\hat { S } ^ { \\theta } : \\mathcal { X } ", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 107, + 609, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 107, + 610, + 132, + 623 + ], + "score": 0.91, + "content": "[ 0 , 1 ] ^ { \\bar { d } }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 609, + 239, + 624 + ], + "score": 1.0, + "content": "parameterized by weights", + "type": "text" + }, + { + "bbox": [ + 240, + 611, + 245, + 621 + ], + "score": 0.79, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 609, + 506, + 624 + ], + "score": 1.0, + "content": ", that outputs a probability for selecting each feature (i.e. the ith", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 622, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 164, + 636 + ], + "score": 1.0, + "content": "component of", + "type": "text" + }, + { + "bbox": [ + 165, + 622, + 190, + 636 + ], + "score": 0.93, + "content": "\\hat { S } ^ { \\theta } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 622, + 506, + 636 + ], + "score": 1.0, + "content": "will denote the probability with which we select the ith feature). The selector", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 634, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 373, + 648 + ], + "score": 1.0, + "content": "network induces a probability distribution over the selection space", + "type": "text" + }, + { + "bbox": [ + 373, + 634, + 409, + 646 + ], + "score": 0.91, + "content": "( \\{ 0 , 1 \\} ^ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 634, + 506, + 648 + ], + "score": 1.0, + "content": ", with the probability of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 645, + 336, + 658 + ], + "spans": [ + { + "bbox": [ + 104, + 645, + 223, + 658 + ], + "score": 1.0, + "content": "a given joint selection vector", + "type": "text" + }, + { + "bbox": [ + 223, + 645, + 271, + 658 + ], + "score": 0.93, + "content": "\\mathbf { s } \\in \\{ 0 , 1 \\} ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 645, + 336, + 658 + ], + "score": 1.0, + "content": "being given by5", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31, + "bbox_fs": [ + 104, + 598, + 506, + 658 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 663, + 391, + 679 + ], + "lines": [ + { + "bbox": [ + 219, + 663, + 391, + 679 + ], + "spans": [ + { + "bbox": [ + 219, + 663, + 391, + 679 + ], + "score": 0.91, + "content": "\\pi _ { \\boldsymbol \\theta } ( \\mathbf { x } , \\mathbf { s } ) = \\Pi _ { i = 1 } ^ { d } \\hat { S } _ { i } ^ { \\theta } ( \\mathbf { x } ) ^ { s _ { i } } ( 1 - \\hat { S } _ { i } ^ { \\theta } ( \\mathbf { x } ) ) ^ { 1 - s _ { i } } .", + "type": "interline_equation", + "image_path": "58b4ad2348bf8465d485f7aac9e1256be37fa6dbb67bc89f3b6f9fa7d96406e3.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 219, + 663, + 391, + 679 + ], + "spans": [], + "index": 34 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 79, + 504, + 262 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 79, + 504, + 262 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 79, + 504, + 262 + ], + "spans": [ + { + "bbox": [ + 109, + 79, + 504, + 262 + ], + "score": 0.972, + "type": "image", + "image_path": "dab836e1e2e287b6c85e1510eb3ffcad658b59e83e87918824fa99ded51229df.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 79, + 504, + 140.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 140.0, + 504, + 201.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 201.0, + 504, + 262.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 270, + 506, + 338 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 270, + 506, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 506, + 284 + ], + "score": 1.0, + "content": "Figure 1: Block diagram of INVASE. Instances are fed into the selector network which outputs", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 282, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 104, + 282, + 505, + 294 + ], + "score": 1.0, + "content": "a vector of selection probabilities. The selection vector is then sampled according to these proba-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 292, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 292, + 506, + 305 + ], + "score": 1.0, + "content": "bilities. The predictor network then receives the selected features and makes a prediction and the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "score": 1.0, + "content": "baseline network is given the entire feature vector and makes a prediction. Each of these networks", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 315, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 506, + 327 + ], + "score": 1.0, + "content": "are trained using backpropagation using the real label. The loss of the baseline network is then", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 326, + 477, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 477, + 338 + ], + "score": 1.0, + "content": "subtracted from the prediction network’s loss and this is used to update the selector network.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 106, + 357, + 365, + 370 + ], + "lines": [ + { + "bbox": [ + 105, + 357, + 366, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 366, + 371 + ], + "score": 1.0, + "content": "Using this, we define the following loss for our selector network", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 373, + 446, + 436 + ], + "lines": [ + { + "bbox": [ + 165, + 373, + 446, + 436 + ], + "spans": [ + { + "bbox": [ + 165, + 373, + 446, + 436 + ], + "score": 0.93, + "content": "\\begin{array} { l } { l _ { 2 } ( \\theta ) = \\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim p } \\left[ \\mathbb { E } _ { \\mathbf { s } \\sim \\pi _ { \\theta } ( \\mathbf { x } , \\cdot ) } \\Big [ \\hat { l } ( \\mathbf { x } , \\mathbf { s } ) + \\lambda | | \\mathbf { s } | | _ { 0 } \\Big ] \\right] } \\\\ { \\displaystyle = \\int _ { \\mathcal { X } \\times \\mathcal { Y } } p ( \\mathbf { x } , y ) \\left( \\sum _ { \\mathbf { s } \\in \\{ 0 , 1 \\} ^ { d } } \\pi _ { \\theta } ( \\mathbf { x } , \\mathbf { s } ) \\left( \\hat { l } ( \\mathbf { x } , \\mathbf { s } ) + \\lambda | | \\mathbf { s } | | _ { 0 } \\right) \\right) d x d y . } \\end{array}", + "type": "interline_equation", + "image_path": "8e89b4e003bdcf0781f3fdacceb8da4c9f26c1faeccc8ce7d4a46819f9d97fdc.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 165, + 373, + 446, + 394.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 165, + 394.0, + 446, + 415.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 165, + 415.0, + 446, + 436.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 444, + 335, + 456 + ], + "lines": [ + { + "bbox": [ + 105, + 443, + 335, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 293, + 459 + ], + "score": 1.0, + "content": "Taking the gradient of this loss with respect to", + "type": "text" + }, + { + "bbox": [ + 293, + 446, + 299, + 455 + ], + "score": 0.82, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 443, + 335, + 459 + ], + "score": 1.0, + "content": "gives us", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "interline_equation", + "bbox": [ + 129, + 461, + 482, + 603 + ], + "lines": [ + { + "bbox": [ + 129, + 461, + 482, + 603 + ], + "spans": [ + { + "bbox": [ + 129, + 461, + 482, + 603 + ], + "score": 0.96, + "content": "\\begin{array} { l } { { \\displaystyle \\nabla _ { \\theta } l _ { 2 } ( \\theta ) = \\int _ { \\mathcal { X } \\times \\mathcal { Y } } p ( { \\bf x } , y ) \\left( \\sum _ { { \\bf s \\in \\{ 0 , 1 \\} } ^ { d } } \\nabla _ { \\theta } \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) \\left( \\hat { l } ( { \\bf x } , { \\bf s } ) + \\lambda | | { \\bf s } | | _ { 0 } \\right) \\right) d x d y } \\ ~ } \\\\ { { \\displaystyle ~ = \\int _ { \\mathcal { X } \\times \\mathcal { Y } } p ( { \\bf x } , y ) \\left( \\sum _ { { \\bf s \\in \\{ 0 , 1 \\} } ^ { d } } \\frac { \\nabla _ { \\theta } \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) } { \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) } \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) \\left( \\hat { l } ( { \\bf x } , { \\bf s } ) + \\lambda | | { \\bf s } | | _ { 0 } \\right) \\right) d x d y } \\ ~ } \\\\ { { \\displaystyle ~ = \\int _ { \\mathcal { X } \\times \\mathcal { Y } } p ( { \\bf x } , y ) \\left( \\sum _ { { \\bf s \\in \\{ 0 , 1 \\} } ^ { d } } \\nabla _ { \\theta } \\log \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) \\left( \\hat { l } ( { \\bf x } , { \\bf s } ) + \\lambda | | { \\bf s } | | _ { 0 } \\right) \\right) d x d y } \\ ~ } \\\\ { \\displaystyle ~ = \\mathbb { E } _ { ( { \\bf x } , y ) \\sim p } \\left[ \\mathbb { E } _ { { \\bf s } \\sim \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) } \\left[ \\left( \\hat { l } ( { \\bf x } , { \\bf s } ) + \\lambda | | { \\bf s } | | _ { 0 } \\right) \\nabla _ { \\theta } \\log \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) \\right] \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "d828bf588159c3f1e8f2443dd31c598b14176d9f51ef881b11a865a94649b92c.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 129, + 461, + 482, + 508.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 129, + 508.3333333333333, + 482, + 555.6666666666666 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 129, + 555.6666666666666, + 482, + 603.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 612, + 505, + 636 + ], + "lines": [ + { + "bbox": [ + 105, + 611, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 187, + 627 + ], + "score": 1.0, + "content": "We update each of", + "type": "text" + }, + { + "bbox": [ + 187, + 612, + 199, + 624 + ], + "score": 0.78, + "content": "{ \\hat { S } } ^ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 611, + 204, + 627 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 205, + 612, + 217, + 625 + ], + "score": 0.73, + "content": "f ^ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 611, + 237, + 627 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 238, + 614, + 250, + 625 + ], + "score": 0.89, + "content": "f ^ { \\gamma }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 611, + 506, + 627 + ], + "score": 1.0, + "content": "iteratively using stochastic gradient descent. Pseudo-code of", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 624, + 488, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 488, + 637 + ], + "score": 1.0, + "content": "INVASE is given in Algorithm 1 and a block representation of INVASE can be found in Fig. 1.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "title", + "bbox": [ + 108, + 651, + 200, + 664 + ], + "lines": [ + { + "bbox": [ + 105, + 651, + 201, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 201, + 666 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "In this section, we quantitatively evaluate INVASE against various state-of-the-art benchmarks on", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "both synthetic and real-world datasets. We evaluate our performance both at identifying ground", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "truth relevance and at enhancing predictions. We compare our model with 4 global variable selection", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "models: Knockoffs [3], Tree Ensembles (Tree) [7], Sequential Correlation Feature Selection (SCFS)", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 720, + 506, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 732 + ], + "score": 1.0, + "content": "[11], and LASSO regularized linear model; and 3 instance-wise feature selection methods: L2X", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22 + } + ], + "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, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 79, + 504, + 262 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 79, + 504, + 262 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 79, + 504, + 262 + ], + "spans": [ + { + "bbox": [ + 109, + 79, + 504, + 262 + ], + "score": 0.972, + "type": "image", + "image_path": "dab836e1e2e287b6c85e1510eb3ffcad658b59e83e87918824fa99ded51229df.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 79, + 504, + 140.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 140.0, + 504, + 201.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 201.0, + 504, + 262.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 270, + 506, + 338 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 270, + 506, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 506, + 284 + ], + "score": 1.0, + "content": "Figure 1: Block diagram of INVASE. Instances are fed into the selector network which outputs", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 282, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 104, + 282, + 505, + 294 + ], + "score": 1.0, + "content": "a vector of selection probabilities. The selection vector is then sampled according to these proba-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 292, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 292, + 506, + 305 + ], + "score": 1.0, + "content": "bilities. The predictor network then receives the selected features and makes a prediction and the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "score": 1.0, + "content": "baseline network is given the entire feature vector and makes a prediction. Each of these networks", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 315, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 506, + 327 + ], + "score": 1.0, + "content": "are trained using backpropagation using the real label. The loss of the baseline network is then", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 326, + 477, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 477, + 338 + ], + "score": 1.0, + "content": "subtracted from the prediction network’s loss and this is used to update the selector network.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 106, + 357, + 365, + 370 + ], + "lines": [ + { + "bbox": [ + 105, + 357, + 366, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 366, + 371 + ], + "score": 1.0, + "content": "Using this, we define the following loss for our selector network", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 357, + 366, + 371 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 373, + 446, + 436 + ], + "lines": [ + { + "bbox": [ + 165, + 373, + 446, + 436 + ], + "spans": [ + { + "bbox": [ + 165, + 373, + 446, + 436 + ], + "score": 0.93, + "content": "\\begin{array} { l } { l _ { 2 } ( \\theta ) = \\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim p } \\left[ \\mathbb { E } _ { \\mathbf { s } \\sim \\pi _ { \\theta } ( \\mathbf { x } , \\cdot ) } \\Big [ \\hat { l } ( \\mathbf { x } , \\mathbf { s } ) + \\lambda | | \\mathbf { s } | | _ { 0 } \\Big ] \\right] } \\\\ { \\displaystyle = \\int _ { \\mathcal { X } \\times \\mathcal { Y } } p ( \\mathbf { x } , y ) \\left( \\sum _ { \\mathbf { s } \\in \\{ 0 , 1 \\} ^ { d } } \\pi _ { \\theta } ( \\mathbf { x } , \\mathbf { s } ) \\left( \\hat { l } ( \\mathbf { x } , \\mathbf { s } ) + \\lambda | | \\mathbf { s } | | _ { 0 } \\right) \\right) d x d y . } \\end{array}", + "type": "interline_equation", + "image_path": "8e89b4e003bdcf0781f3fdacceb8da4c9f26c1faeccc8ce7d4a46819f9d97fdc.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 165, + 373, + 446, + 394.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 165, + 394.0, + 446, + 415.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 165, + 415.0, + 446, + 436.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 444, + 335, + 456 + ], + "lines": [ + { + "bbox": [ + 105, + 443, + 335, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 293, + 459 + ], + "score": 1.0, + "content": "Taking the gradient of this loss with respect to", + "type": "text" + }, + { + "bbox": [ + 293, + 446, + 299, + 455 + ], + "score": 0.82, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 443, + 335, + 459 + ], + "score": 1.0, + "content": "gives us", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 443, + 335, + 459 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 129, + 461, + 482, + 603 + ], + "lines": [ + { + "bbox": [ + 129, + 461, + 482, + 603 + ], + "spans": [ + { + "bbox": [ + 129, + 461, + 482, + 603 + ], + "score": 0.96, + "content": "\\begin{array} { l } { { \\displaystyle \\nabla _ { \\theta } l _ { 2 } ( \\theta ) = \\int _ { \\mathcal { X } \\times \\mathcal { Y } } p ( { \\bf x } , y ) \\left( \\sum _ { { \\bf s \\in \\{ 0 , 1 \\} } ^ { d } } \\nabla _ { \\theta } \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) \\left( \\hat { l } ( { \\bf x } , { \\bf s } ) + \\lambda | | { \\bf s } | | _ { 0 } \\right) \\right) d x d y } \\ ~ } \\\\ { { \\displaystyle ~ = \\int _ { \\mathcal { X } \\times \\mathcal { Y } } p ( { \\bf x } , y ) \\left( \\sum _ { { \\bf s \\in \\{ 0 , 1 \\} } ^ { d } } \\frac { \\nabla _ { \\theta } \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) } { \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) } \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) \\left( \\hat { l } ( { \\bf x } , { \\bf s } ) + \\lambda | | { \\bf s } | | _ { 0 } \\right) \\right) d x d y } \\ ~ } \\\\ { { \\displaystyle ~ = \\int _ { \\mathcal { X } \\times \\mathcal { Y } } p ( { \\bf x } , y ) \\left( \\sum _ { { \\bf s \\in \\{ 0 , 1 \\} } ^ { d } } \\nabla _ { \\theta } \\log \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) \\left( \\hat { l } ( { \\bf x } , { \\bf s } ) + \\lambda | | { \\bf s } | | _ { 0 } \\right) \\right) d x d y } \\ ~ } \\\\ { \\displaystyle ~ = \\mathbb { E } _ { ( { \\bf x } , y ) \\sim p } \\left[ \\mathbb { E } _ { { \\bf s } \\sim \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) } \\left[ \\left( \\hat { l } ( { \\bf x } , { \\bf s } ) + \\lambda | | { \\bf s } | | _ { 0 } \\right) \\nabla _ { \\theta } \\log \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) \\right] \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "d828bf588159c3f1e8f2443dd31c598b14176d9f51ef881b11a865a94649b92c.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 129, + 461, + 482, + 508.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 129, + 508.3333333333333, + 482, + 555.6666666666666 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 129, + 555.6666666666666, + 482, + 603.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 612, + 505, + 636 + ], + "lines": [ + { + "bbox": [ + 105, + 611, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 187, + 627 + ], + "score": 1.0, + "content": "We update each of", + "type": "text" + }, + { + "bbox": [ + 187, + 612, + 199, + 624 + ], + "score": 0.78, + "content": "{ \\hat { S } } ^ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 611, + 204, + 627 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 205, + 612, + 217, + 625 + ], + "score": 0.73, + "content": "f ^ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 611, + 237, + 627 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 238, + 614, + 250, + 625 + ], + "score": 0.89, + "content": "f ^ { \\gamma }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 611, + 506, + 627 + ], + "score": 1.0, + "content": "iteratively using stochastic gradient descent. Pseudo-code of", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 624, + 488, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 488, + 637 + ], + "score": 1.0, + "content": "INVASE is given in Algorithm 1 and a block representation of INVASE can be found in Fig. 1.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 611, + 506, + 637 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 651, + 200, + 664 + ], + "lines": [ + { + "bbox": [ + 105, + 651, + 201, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 201, + 666 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "In this section, we quantitatively evaluate INVASE against various state-of-the-art benchmarks on", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "both synthetic and real-world datasets. We evaluate our performance both at identifying ground", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "truth relevance and at enhancing predictions. We compare our model with 4 global variable selection", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "models: Knockoffs [3], Tree Ensembles (Tree) [7], Sequential Correlation Feature Selection (SCFS)", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 720, + 506, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 732 + ], + "score": 1.0, + "content": "[11], and LASSO regularized linear model; and 3 instance-wise feature selection methods: L2X", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 676, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 262, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 263, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 263, + 95 + ], + "score": 1.0, + "content": "Algorithm 1 Pseudo-code of INVASE", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 110, + 97, + 446, + 281 + ], + "lines": [ + { + "bbox": [ + 110, + 97, + 398, + 109 + ], + "spans": [ + { + "bbox": [ + 110, + 97, + 214, + 109 + ], + "score": 1.0, + "content": "1: Inputs: learning rates", + "type": "text" + }, + { + "bbox": [ + 214, + 98, + 250, + 109 + ], + "score": 0.9, + "content": "\\alpha , \\beta > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 97, + 318, + 109 + ], + "score": 1.0, + "content": ", mini-batch size", + "type": "text" + }, + { + "bbox": [ + 318, + 99, + 354, + 109 + ], + "score": 0.89, + "content": "n _ { m b } > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 97, + 388, + 109 + ], + "score": 1.0, + "content": ", dataset", + "type": "text" + }, + { + "bbox": [ + 388, + 98, + 398, + 108 + ], + "score": 0.66, + "content": "\\mathcal { D }", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 109, + 106, + 237, + 122 + ], + "spans": [ + { + "bbox": [ + 109, + 106, + 209, + 122 + ], + "score": 1.0, + "content": "2: Initialize parameters", + "type": "text" + }, + { + "bbox": [ + 210, + 109, + 237, + 120 + ], + "score": 0.89, + "content": "\\theta , \\phi , \\gamma", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 109, + 118, + 203, + 132 + ], + "spans": [ + { + "bbox": [ + 109, + 118, + 203, + 132 + ], + "score": 1.0, + "content": "3: while Converge do", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 110, + 125, + 360, + 147 + ], + "spans": [ + { + "bbox": [ + 110, + 130, + 122, + 142 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 135, + 125, + 290, + 147 + ], + "score": 1.0, + "content": "Sample a mini-batch from the dataset", + "type": "text" + }, + { + "bbox": [ + 290, + 130, + 360, + 144 + ], + "score": 0.9, + "content": "( \\mathbf { x } _ { j } , y _ { j } ) _ { j = 1 } ^ { n _ { m b } } \\sim \\mathcal { D }", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 110, + 141, + 227, + 155 + ], + "spans": [ + { + "bbox": [ + 110, + 141, + 122, + 154 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 136, + 141, + 153, + 155 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 154, + 142, + 212, + 154 + ], + "score": 0.89, + "content": "j = 1 , . . . , n _ { m b }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 141, + 227, + 155 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 110, + 153, + 284, + 165 + ], + "spans": [ + { + "bbox": [ + 110, + 154, + 122, + 165 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 153, + 153, + 284, + 165 + ], + "score": 1.0, + "content": "Calculate selection probabilities", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 268, + 170, + 360, + 186 + ], + "spans": [ + { + "bbox": [ + 268, + 170, + 360, + 186 + ], + "score": 0.91, + "content": "( p _ { 1 } ^ { j } , . . . , p _ { d } ^ { j } ) \\hat { S } ^ { \\theta } ( \\mathbf { x } _ { j } )", + "type": "inline_equation", + "image_path": "6a577df6f5dc55a19b8ae5de34fee11e95bf45cef0cdbb111ad00b54432e2c6e.jpg" + } + ], + "index": 7 + }, + { + "bbox": [ + 110, + 190, + 251, + 203 + ], + "spans": [ + { + "bbox": [ + 110, + 190, + 122, + 203 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 153, + 190, + 251, + 203 + ], + "score": 1.0, + "content": "Sample selection vector", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 110, + 200, + 228, + 214 + ], + "spans": [ + { + "bbox": [ + 110, + 200, + 122, + 214 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 153, + 201, + 168, + 213 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 168, + 202, + 214, + 213 + ], + "score": 0.9, + "content": "i = 1 , . . . , d", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 201, + 228, + 213 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 284, + 210, + 343, + 227 + ], + "spans": [ + { + "bbox": [ + 284, + 210, + 343, + 227 + ], + "score": 0.89, + "content": "s _ { i } ^ { j } \\sim B e r ( p _ { i } ^ { j } )", + "type": "inline_equation", + "image_path": "4c734564d4e5f09cc5795990998b47411c4ebce6f177d6e261443fcf7f9dfec8.jpg" + } + ], + "index": 10 + }, + { + "bbox": [ + 110, + 230, + 212, + 244 + ], + "spans": [ + { + "bbox": [ + 110, + 232, + 121, + 244 + ], + "score": 1.0, + "content": "9:", + "type": "text" + }, + { + "bbox": [ + 153, + 230, + 212, + 244 + ], + "score": 1.0, + "content": "Calculate loss", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 181, + 246, + 446, + 281 + ], + "spans": [ + { + "bbox": [ + 181, + 246, + 446, + 281 + ], + "score": 0.93, + "content": "\\hat { l } _ { j } ( \\mathbf { x } _ { j } , \\mathbf { s } _ { j } ) \\gets - \\left[ \\sum _ { i = 1 } ^ { c } y _ { i } ^ { j } \\log ( f _ { i } ^ { \\phi } ( \\mathbf { x } _ { j } ^ { ( \\mathbf { s } _ { j } ) } , \\mathbf { s } _ { j } ) ) - \\sum _ { i = 1 } ^ { c } y _ { i } ^ { j } \\log ( f _ { i } ^ { \\gamma } ( \\mathbf { x } _ { j } ) ) \\right]", + "type": "inline_equation", + "image_path": "6ce189adbabc7c0aaa875205c5719c66b19ecb8f9e33f1a1c24cea5a2fdb0ed1.jpg" + } + ], + "index": 12 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 108, + 288, + 307, + 300 + ], + "lines": [ + { + "bbox": [ + 106, + 287, + 306, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 122, + 300 + ], + "score": 1.0, + "content": "10:", + "type": "text" + }, + { + "bbox": [ + 137, + 287, + 299, + 300 + ], + "score": 1.0, + "content": "Update the selector network parameters", + "type": "text" + }, + { + "bbox": [ + 299, + 289, + 306, + 298 + ], + "score": 0.8, + "content": "\\theta", + "type": "inline_equation" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "interline_equation", + "bbox": [ + 192, + 305, + 435, + 339 + ], + "lines": [ + { + "bbox": [ + 192, + 305, + 435, + 339 + ], + "spans": [ + { + "bbox": [ + 192, + 305, + 435, + 339 + ], + "score": 0.93, + "content": "\\theta \\theta - \\alpha \\frac { 1 } { n _ { m b } } \\sum _ { j = 1 } ^ { n _ { m b } } ( \\hat { l } _ { j } ( \\mathbf { x } _ { j } , \\mathbf { s } _ { j } ) + \\lambda | | \\mathbf { s } _ { j } | | ) \\nabla _ { \\theta } \\log \\pi _ { \\theta } ( \\mathbf { x } _ { j } , \\mathbf { s } _ { j } )", + "type": "interline_equation", + "image_path": "d69e374bf7b12a3bda95e953590e5c61e9aad154142cc5a5d8c93a216ec07eab.jpg" + } + ] + } + ], + "index": 14.5, + "virtual_lines": [ + { + "bbox": [ + 192, + 305, + 435, + 322.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 192, + 322.0, + 435, + 339.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 344, + 313, + 356 + ], + "lines": [ + { + "bbox": [ + 106, + 342, + 311, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 122, + 356 + ], + "score": 1.0, + "content": "11:", + "type": "text" + }, + { + "bbox": [ + 137, + 342, + 304, + 359 + ], + "score": 1.0, + "content": "Update the predictor network parameters", + "type": "text" + }, + { + "bbox": [ + 304, + 344, + 311, + 356 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "interline_equation", + "bbox": [ + 208, + 360, + 419, + 394 + ], + "lines": [ + { + "bbox": [ + 208, + 360, + 419, + 394 + ], + "spans": [ + { + "bbox": [ + 208, + 360, + 419, + 394 + ], + "score": 0.94, + "content": "\\phi \\phi - \\beta \\frac { 1 } { n _ { m b } } \\sum _ { j = 1 } ^ { n _ { m b } } \\sum _ { i = 1 } ^ { c } y _ { i } ^ { j } \\times \\nabla _ { \\phi } \\log ( f _ { i } ^ { \\phi } ( \\mathbf { x } _ { j } ^ { ( \\mathbf { s } _ { j } ) } , \\mathbf { s } _ { j } ) )", + "type": "interline_equation", + "image_path": "1607f8ec033f6f782875805691678d1709b29c1c82018363dd95ed52c9eccef3.jpg" + } + ] + } + ], + "index": 17.5, + "virtual_lines": [ + { + "bbox": [ + 208, + 360, + 419, + 377.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 208, + 377.0, + 419, + 394.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 399, + 308, + 411 + ], + "lines": [ + { + "bbox": [ + 106, + 397, + 308, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 122, + 412 + ], + "score": 1.0, + "content": "12:", + "type": "text" + }, + { + "bbox": [ + 137, + 397, + 300, + 415 + ], + "score": 1.0, + "content": "Update the baseline network parameters", + "type": "text" + }, + { + "bbox": [ + 301, + 402, + 308, + 411 + ], + "score": 0.79, + "content": "\\gamma", + "type": "inline_equation" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 416, + 408, + 451 + ], + "lines": [ + { + "bbox": [ + 219, + 416, + 408, + 451 + ], + "spans": [ + { + "bbox": [ + 219, + 416, + 408, + 451 + ], + "score": 0.93, + "content": "\\gamma \\gamma - \\beta \\frac { 1 } { n _ { m b } } \\sum _ { j = 1 } ^ { n _ { m b } } \\sum _ { i = 1 } ^ { c } y _ { i } ^ { j } \\times \\nabla _ { \\gamma } \\log ( f _ { i } ^ { \\gamma } ( \\mathbf { x } _ { j } ) )", + "type": "interline_equation", + "image_path": "c295c629c66c4c76388b6ce90dfc6c52e6bd57f37267038fb1a27603e6fd8a48.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 219, + 416, + 408, + 433.5 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 219, + 433.5, + 408, + 451.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 483, + 505, + 517 + ], + "lines": [ + { + "bbox": [ + 106, + 483, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 505, + 495 + ], + "score": 1.0, + "content": "[4], LIME [24], and Shapley [18]. The details of benchmark implementation can be found in the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 494, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 505, + 507 + ], + "score": 1.0, + "content": "appendix. Implementation of INVASE can be found at https://github.com/jsyoon0823/", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 506, + 147, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 147, + 516 + ], + "score": 1.0, + "content": "INVASE.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 108, + 532, + 269, + 544 + ], + "lines": [ + { + "bbox": [ + 105, + 532, + 270, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 270, + 545 + ], + "score": 1.0, + "content": "4.1 SYNTHETIC DATA EXPERIMENTS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 108, + 553, + 252, + 565 + ], + "lines": [ + { + "bbox": [ + 106, + 554, + 253, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 253, + 565 + ], + "score": 1.0, + "content": "4.1.1 EXPERIMENTAL SETTINGS", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 573, + 505, + 620 + ], + "lines": [ + { + "bbox": [ + 106, + 574, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 505, + 586 + ], + "score": 1.0, + "content": "For our first set of experiments, we use the same synthetic data generation models as in L2X [4]. The", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 583, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 506, + 597 + ], + "score": 1.0, + "content": "input features are generated from an 11-dimensional67 Gaussian distribution with no correlations", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 596, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 186, + 608 + ], + "score": 1.0, + "content": "across the features", + "type": "text" + }, + { + "bbox": [ + 186, + 596, + 248, + 608 + ], + "score": 0.91, + "content": "( \\mathbf { X } \\sim \\mathcal { N } ( \\mathbf { 0 } , \\mathbf { I } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 596, + 297, + 608 + ], + "score": 1.0, + "content": ". The label", + "type": "text" + }, + { + "bbox": [ + 297, + 596, + 307, + 606 + ], + "score": 0.79, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 596, + 505, + 608 + ], + "score": 1.0, + "content": "is sampled as a Bernoulli random variable with", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 604, + 473, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 210, + 622 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mathbb { P } ( Y = 1 | \\mathbf { X } ) = \\frac { 1 } { 1 + \\mathrm { l o g i t } ( \\mathbf { X } ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 604, + 261, + 624 + ], + "score": 1.0, + "content": ", where logit", + "type": "text" + }, + { + "bbox": [ + 261, + 607, + 277, + 619 + ], + "score": 0.53, + "content": "( \\mathbf { X } )", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 604, + 473, + 624 + ], + "score": 1.0, + "content": "is varied to create 3 different synthetic datasets:", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 131, + 630, + 357, + 680 + ], + "lines": [ + { + "bbox": [ + 132, + 630, + 222, + 645 + ], + "spans": [ + { + "bbox": [ + 132, + 630, + 173, + 645 + ], + "score": 1.0, + "content": "• Syn1:", + "type": "text" + }, + { + "bbox": [ + 173, + 631, + 222, + 643 + ], + "score": 0.83, + "content": "\\exp ( X _ { 1 } X _ { 2 } )", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 130, + 646, + 253, + 666 + ], + "spans": [ + { + "bbox": [ + 130, + 646, + 173, + 666 + ], + "score": 1.0, + "content": "• Syn2:", + "type": "text" + }, + { + "bbox": [ + 173, + 648, + 253, + 663 + ], + "score": 0.73, + "content": "\\textstyle \\exp ( \\sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 132, + 665, + 356, + 680 + ], + "spans": [ + { + "bbox": [ + 132, + 665, + 172, + 680 + ], + "score": 1.0, + "content": "• Syn3:", + "type": "text" + }, + { + "bbox": [ + 173, + 666, + 356, + 679 + ], + "score": 0.8, + "content": "- 1 0 \\times \\sin 2 X _ { 7 } + 2 | X _ { 8 } | + X _ { 9 } + \\exp ( - X _ { 1 0 } )", + "type": "inline_equation" + } + ], + "index": 33 + } + ], + "index": 32 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 690, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 687, + 506, + 704 + ], + "spans": [ + { + "bbox": [ + 119, + 689, + 150, + 700 + ], + "score": 0.56, + "content": "^ { 6 } \\mathrm { I n } \\mathrm { L } 2 \\mathrm { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 687, + 332, + 704 + ], + "score": 1.0, + "content": "they use a 10-dimensional Gaussian, we introduce", + "type": "text" + }, + { + "bbox": [ + 333, + 691, + 349, + 700 + ], + "score": 0.89, + "content": "X _ { 1 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 687, + 506, + 704 + ], + "score": 1.0, + "content": "to act as a “switch” to create instance-wise", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 701, + 504, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 701, + 353, + 712 + ], + "score": 1.0, + "content": "relevance. Experiments where instead the “switch” variable is one of", + "type": "text" + }, + { + "bbox": [ + 353, + 701, + 397, + 711 + ], + "score": 0.92, + "content": "X _ { 1 } , . . . , X _ { 1 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 701, + 504, + 712 + ], + "score": 1.0, + "content": "can be found in the appendix.", + "type": "text" + } + ] + }, + { + "bbox": [ + 117, + 707, + 506, + 726 + ], + "spans": [ + { + "bbox": [ + 117, + 707, + 506, + 726 + ], + "score": 1.0, + "content": "7We also perform experiments using 100 features in the Appendix to demonstrate the scalability of our", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 138, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 138, + 732 + ], + "score": 1.0, + "content": "method.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 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, + 82, + 262, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 263, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 263, + 95 + ], + "score": 1.0, + "content": "Algorithm 1 Pseudo-code of INVASE", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "list", + "bbox": [ + 110, + 97, + 446, + 281 + ], + "lines": [ + { + "bbox": [ + 110, + 97, + 398, + 109 + ], + "spans": [ + { + "bbox": [ + 110, + 97, + 214, + 109 + ], + "score": 1.0, + "content": "1: Inputs: learning rates", + "type": "text" + }, + { + "bbox": [ + 214, + 98, + 250, + 109 + ], + "score": 0.9, + "content": "\\alpha , \\beta > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 97, + 318, + 109 + ], + "score": 1.0, + "content": ", mini-batch size", + "type": "text" + }, + { + "bbox": [ + 318, + 99, + 354, + 109 + ], + "score": 0.89, + "content": "n _ { m b } > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 97, + 388, + 109 + ], + "score": 1.0, + "content": ", dataset", + "type": "text" + }, + { + "bbox": [ + 388, + 98, + 398, + 108 + ], + "score": 0.66, + "content": "\\mathcal { D }", + "type": "inline_equation" + } + ], + "index": 1, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 106, + 237, + 122 + ], + "spans": [ + { + "bbox": [ + 109, + 106, + 209, + 122 + ], + "score": 1.0, + "content": "2: Initialize parameters", + "type": "text" + }, + { + "bbox": [ + 210, + 109, + 237, + 120 + ], + "score": 0.89, + "content": "\\theta , \\phi , \\gamma", + "type": "inline_equation" + } + ], + "index": 2, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 118, + 203, + 132 + ], + "spans": [ + { + "bbox": [ + 109, + 118, + 203, + 132 + ], + "score": 1.0, + "content": "3: while Converge do", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 125, + 360, + 147 + ], + "spans": [ + { + "bbox": [ + 110, + 130, + 122, + 142 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 135, + 125, + 290, + 147 + ], + "score": 1.0, + "content": "Sample a mini-batch from the dataset", + "type": "text" + }, + { + "bbox": [ + 290, + 130, + 360, + 144 + ], + "score": 0.9, + "content": "( \\mathbf { x } _ { j } , y _ { j } ) _ { j = 1 } ^ { n _ { m b } } \\sim \\mathcal { D }", + "type": "inline_equation" + } + ], + "index": 4, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 141, + 227, + 155 + ], + "spans": [ + { + "bbox": [ + 110, + 141, + 122, + 154 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 136, + 141, + 153, + 155 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 154, + 142, + 212, + 154 + ], + "score": 0.89, + "content": "j = 1 , . . . , n _ { m b }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 141, + 227, + 155 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 153, + 284, + 165 + ], + "spans": [ + { + "bbox": [ + 110, + 154, + 122, + 165 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 153, + 153, + 284, + 165 + ], + "score": 1.0, + "content": "Calculate selection probabilities", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 268, + 170, + 360, + 186 + ], + "spans": [ + { + "bbox": [ + 268, + 170, + 360, + 186 + ], + "score": 0.91, + "content": "( p _ { 1 } ^ { j } , . . . , p _ { d } ^ { j } ) \\hat { S } ^ { \\theta } ( \\mathbf { x } _ { j } )", + "type": "inline_equation", + "image_path": "6a577df6f5dc55a19b8ae5de34fee11e95bf45cef0cdbb111ad00b54432e2c6e.jpg" + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 190, + 251, + 203 + ], + "spans": [ + { + "bbox": [ + 110, + 190, + 122, + 203 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 153, + 190, + 251, + 203 + ], + "score": 1.0, + "content": "Sample selection vector", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 200, + 228, + 214 + ], + "spans": [ + { + "bbox": [ + 110, + 200, + 122, + 214 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 153, + 201, + 168, + 213 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 168, + 202, + 214, + 213 + ], + "score": 0.9, + "content": "i = 1 , . . . , d", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 201, + 228, + 213 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 284, + 210, + 343, + 227 + ], + "spans": [ + { + "bbox": [ + 284, + 210, + 343, + 227 + ], + "score": 0.89, + "content": "s _ { i } ^ { j } \\sim B e r ( p _ { i } ^ { j } )", + "type": "inline_equation", + "image_path": "4c734564d4e5f09cc5795990998b47411c4ebce6f177d6e261443fcf7f9dfec8.jpg" + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 230, + 212, + 244 + ], + "spans": [ + { + "bbox": [ + 110, + 232, + 121, + 244 + ], + "score": 1.0, + "content": "9:", + "type": "text" + }, + { + "bbox": [ + 153, + 230, + 212, + 244 + ], + "score": 1.0, + "content": "Calculate loss", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 181, + 246, + 446, + 281 + ], + "spans": [ + { + "bbox": [ + 181, + 246, + 446, + 281 + ], + "score": 0.93, + "content": "\\hat { l } _ { j } ( \\mathbf { x } _ { j } , \\mathbf { s } _ { j } ) \\gets - \\left[ \\sum _ { i = 1 } ^ { c } y _ { i } ^ { j } \\log ( f _ { i } ^ { \\phi } ( \\mathbf { x } _ { j } ^ { ( \\mathbf { s } _ { j } ) } , \\mathbf { s } _ { j } ) ) - \\sum _ { i = 1 } ^ { c } y _ { i } ^ { j } \\log ( f _ { i } ^ { \\gamma } ( \\mathbf { x } _ { j } ) ) \\right]", + "type": "inline_equation", + "image_path": "6ce189adbabc7c0aaa875205c5719c66b19ecb8f9e33f1a1c24cea5a2fdb0ed1.jpg" + } + ], + "index": 12 + } + ], + "index": 6.5, + "bbox_fs": [ + 109, + 97, + 446, + 281 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 288, + 307, + 300 + ], + "lines": [ + { + "bbox": [ + 106, + 287, + 306, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 122, + 300 + ], + "score": 1.0, + "content": "10:", + "type": "text" + }, + { + "bbox": [ + 137, + 287, + 299, + 300 + ], + "score": 1.0, + "content": "Update the selector network parameters", + "type": "text" + }, + { + "bbox": [ + 299, + 289, + 306, + 298 + ], + "score": 0.8, + "content": "\\theta", + "type": "inline_equation" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 287, + 306, + 300 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 192, + 305, + 435, + 339 + ], + "lines": [ + { + "bbox": [ + 192, + 305, + 435, + 339 + ], + "spans": [ + { + "bbox": [ + 192, + 305, + 435, + 339 + ], + "score": 0.93, + "content": "\\theta \\theta - \\alpha \\frac { 1 } { n _ { m b } } \\sum _ { j = 1 } ^ { n _ { m b } } ( \\hat { l } _ { j } ( \\mathbf { x } _ { j } , \\mathbf { s } _ { j } ) + \\lambda | | \\mathbf { s } _ { j } | | ) \\nabla _ { \\theta } \\log \\pi _ { \\theta } ( \\mathbf { x } _ { j } , \\mathbf { s } _ { j } )", + "type": "interline_equation", + "image_path": "d69e374bf7b12a3bda95e953590e5c61e9aad154142cc5a5d8c93a216ec07eab.jpg" + } + ] + } + ], + "index": 14.5, + "virtual_lines": [ + { + "bbox": [ + 192, + 305, + 435, + 322.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 192, + 322.0, + 435, + 339.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 344, + 313, + 356 + ], + "lines": [ + { + "bbox": [ + 106, + 342, + 311, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 122, + 356 + ], + "score": 1.0, + "content": "11:", + "type": "text" + }, + { + "bbox": [ + 137, + 342, + 304, + 359 + ], + "score": 1.0, + "content": "Update the predictor network parameters", + "type": "text" + }, + { + "bbox": [ + 304, + 344, + 311, + 356 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + } + ], + "index": 16 + } + ], + "index": 16, + "bbox_fs": [ + 106, + 342, + 311, + 359 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 208, + 360, + 419, + 394 + ], + "lines": [ + { + "bbox": [ + 208, + 360, + 419, + 394 + ], + "spans": [ + { + "bbox": [ + 208, + 360, + 419, + 394 + ], + "score": 0.94, + "content": "\\phi \\phi - \\beta \\frac { 1 } { n _ { m b } } \\sum _ { j = 1 } ^ { n _ { m b } } \\sum _ { i = 1 } ^ { c } y _ { i } ^ { j } \\times \\nabla _ { \\phi } \\log ( f _ { i } ^ { \\phi } ( \\mathbf { x } _ { j } ^ { ( \\mathbf { s } _ { j } ) } , \\mathbf { s } _ { j } ) )", + "type": "interline_equation", + "image_path": "1607f8ec033f6f782875805691678d1709b29c1c82018363dd95ed52c9eccef3.jpg" + } + ] + } + ], + "index": 17.5, + "virtual_lines": [ + { + "bbox": [ + 208, + 360, + 419, + 377.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 208, + 377.0, + 419, + 394.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 399, + 308, + 411 + ], + "lines": [ + { + "bbox": [ + 106, + 397, + 308, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 122, + 412 + ], + "score": 1.0, + "content": "12:", + "type": "text" + }, + { + "bbox": [ + 137, + 397, + 300, + 415 + ], + "score": 1.0, + "content": "Update the baseline network parameters", + "type": "text" + }, + { + "bbox": [ + 301, + 402, + 308, + 411 + ], + "score": 0.79, + "content": "\\gamma", + "type": "inline_equation" + } + ], + "index": 19 + } + ], + "index": 19, + "bbox_fs": [ + 106, + 397, + 308, + 415 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 416, + 408, + 451 + ], + "lines": [ + { + "bbox": [ + 219, + 416, + 408, + 451 + ], + "spans": [ + { + "bbox": [ + 219, + 416, + 408, + 451 + ], + "score": 0.93, + "content": "\\gamma \\gamma - \\beta \\frac { 1 } { n _ { m b } } \\sum _ { j = 1 } ^ { n _ { m b } } \\sum _ { i = 1 } ^ { c } y _ { i } ^ { j } \\times \\nabla _ { \\gamma } \\log ( f _ { i } ^ { \\gamma } ( \\mathbf { x } _ { j } ) )", + "type": "interline_equation", + "image_path": "c295c629c66c4c76388b6ce90dfc6c52e6bd57f37267038fb1a27603e6fd8a48.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 219, + 416, + 408, + 433.5 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 219, + 433.5, + 408, + 451.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 483, + 505, + 517 + ], + "lines": [ + { + "bbox": [ + 106, + 483, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 505, + 495 + ], + "score": 1.0, + "content": "[4], LIME [24], and Shapley [18]. The details of benchmark implementation can be found in the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 494, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 505, + 507 + ], + "score": 1.0, + "content": "appendix. Implementation of INVASE can be found at https://github.com/jsyoon0823/", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 506, + 147, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 147, + 516 + ], + "score": 1.0, + "content": "INVASE.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 483, + 505, + 516 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 532, + 269, + 544 + ], + "lines": [ + { + "bbox": [ + 105, + 532, + 270, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 270, + 545 + ], + "score": 1.0, + "content": "4.1 SYNTHETIC DATA EXPERIMENTS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 108, + 553, + 252, + 565 + ], + "lines": [ + { + "bbox": [ + 106, + 554, + 253, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 253, + 565 + ], + "score": 1.0, + "content": "4.1.1 EXPERIMENTAL SETTINGS", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 573, + 505, + 620 + ], + "lines": [ + { + "bbox": [ + 106, + 574, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 505, + 586 + ], + "score": 1.0, + "content": "For our first set of experiments, we use the same synthetic data generation models as in L2X [4]. The", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 583, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 506, + 597 + ], + "score": 1.0, + "content": "input features are generated from an 11-dimensional67 Gaussian distribution with no correlations", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 596, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 186, + 608 + ], + "score": 1.0, + "content": "across the features", + "type": "text" + }, + { + "bbox": [ + 186, + 596, + 248, + 608 + ], + "score": 0.91, + "content": "( \\mathbf { X } \\sim \\mathcal { N } ( \\mathbf { 0 } , \\mathbf { I } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 596, + 297, + 608 + ], + "score": 1.0, + "content": ". The label", + "type": "text" + }, + { + "bbox": [ + 297, + 596, + 307, + 606 + ], + "score": 0.79, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 596, + 505, + 608 + ], + "score": 1.0, + "content": "is sampled as a Bernoulli random variable with", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 604, + 473, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 210, + 622 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mathbb { P } ( Y = 1 | \\mathbf { X } ) = \\frac { 1 } { 1 + \\mathrm { l o g i t } ( \\mathbf { X } ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 604, + 261, + 624 + ], + "score": 1.0, + "content": ", where logit", + "type": "text" + }, + { + "bbox": [ + 261, + 607, + 277, + 619 + ], + "score": 0.53, + "content": "( \\mathbf { X } )", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 604, + 473, + 624 + ], + "score": 1.0, + "content": "is varied to create 3 different synthetic datasets:", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 574, + 506, + 624 + ] + }, + { + "type": "list", + "bbox": [ + 131, + 630, + 357, + 680 + ], + "lines": [ + { + "bbox": [ + 132, + 630, + 222, + 645 + ], + "spans": [ + { + "bbox": [ + 132, + 630, + 173, + 645 + ], + "score": 1.0, + "content": "• Syn1:", + "type": "text" + }, + { + "bbox": [ + 173, + 631, + 222, + 643 + ], + "score": 0.83, + "content": "\\exp ( X _ { 1 } X _ { 2 } )", + "type": "inline_equation" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 130, + 646, + 253, + 666 + ], + "spans": [ + { + "bbox": [ + 130, + 646, + 173, + 666 + ], + "score": 1.0, + "content": "• Syn2:", + "type": "text" + }, + { + "bbox": [ + 173, + 648, + 253, + 663 + ], + "score": 0.73, + "content": "\\textstyle \\exp ( \\sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )", + "type": "inline_equation" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 665, + 356, + 680 + ], + "spans": [ + { + "bbox": [ + 132, + 665, + 172, + 680 + ], + "score": 1.0, + "content": "• Syn3:", + "type": "text" + }, + { + "bbox": [ + 173, + 666, + 356, + 679 + ], + "score": 0.8, + "content": "- 1 0 \\times \\sin 2 X _ { 7 } + 2 | X _ { 8 } | + X _ { 9 } + \\exp ( - X _ { 1 0 } )", + "type": "inline_equation" + } + ], + "index": 33, + "is_list_start_line": true + } + ], + "index": 32, + "bbox_fs": [ + 130, + 630, + 356, + 680 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "In each of these datasets, the label depends on the same subset of features for every sample. To high-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "light the capability of INVASE to detect instance-wise dependence, we generate 3 further synthetic", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 186, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 186, + 116 + ], + "score": 1.0, + "content": "datasets as follows:", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 132, + 124, + 423, + 167 + ], + "lines": [ + { + "bbox": [ + 132, + 124, + 423, + 138 + ], + "spans": [ + { + "bbox": [ + 132, + 124, + 182, + 138 + ], + "score": 1.0, + "content": "• Syn4: If", + "type": "text" + }, + { + "bbox": [ + 182, + 126, + 218, + 137 + ], + "score": 0.91, + "content": "X _ { 1 1 } < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 124, + 423, + 138 + ], + "score": 1.0, + "content": ", logit follows Syn1, otherwise, logit follows Syn2.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 132, + 139, + 424, + 153 + ], + "spans": [ + { + "bbox": [ + 132, + 139, + 182, + 153 + ], + "score": 1.0, + "content": "• Syn5: If", + "type": "text" + }, + { + "bbox": [ + 182, + 140, + 218, + 151 + ], + "score": 0.91, + "content": "X _ { 1 1 } < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 139, + 424, + 153 + ], + "score": 1.0, + "content": ", logit follows Syn1, otherwise, logit follows Syn3.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 132, + 154, + 423, + 167 + ], + "spans": [ + { + "bbox": [ + 132, + 154, + 182, + 167 + ], + "score": 1.0, + "content": "• Syn6: If", + "type": "text" + }, + { + "bbox": [ + 182, + 155, + 218, + 166 + ], + "score": 0.92, + "content": "X _ { 1 1 } < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 154, + 423, + 167 + ], + "score": 1.0, + "content": ", logit follows Syn2, otherwise, logit follows Syn3.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 175, + 480, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 175, + 482, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 482, + 189 + ], + "score": 1.0, + "content": "Note that in Syn4 and Syn5, the number of relevant features is different for different samples.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 192, + 506, + 292 + ], + "lines": [ + { + "bbox": [ + 106, + 192, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 505, + 205 + ], + "score": 1.0, + "content": "For each of Syn1 to Syn6 we draw 20,000 samples from the data generation model and separate each", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 102, + 198, + 509, + 227 + ], + "spans": [ + { + "bbox": [ + 102, + 198, + 161, + 227 + ], + "score": 1.0, + "content": "into trainingwe try to fin", + "type": "text" + }, + { + "bbox": [ + 161, + 203, + 261, + 216 + ], + "score": 0.9, + "content": "( \\mathcal { D } _ { t r a i n } { \\bf \\bar { \\alpha } } = ( { \\bf x } _ { i } , y _ { i } ) _ { i = 1 } ^ { 1 0 0 0 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 198, + 312, + 227 + ], + "score": 1.0, + "content": "and testingures for each", + "type": "text" + }, + { + "bbox": [ + 313, + 203, + 407, + 216 + ], + "score": 0.89, + "content": "( \\mathcal { D } _ { t e s t } = ( \\mathbf { \\bar { x } } _ { j } ^ { - } , y _ { j } ) _ { j = 1 } ^ { 1 0 0 0 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 198, + 509, + 227 + ], + "score": 1.0, + "content": "sets. For each methodfor Syn1, Syn2, Syn3,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 198, + 216, + 407, + 225 + ], + "spans": [ + { + "bbox": [ + 198, + 216, + 205, + 225 + ], + "score": 0.77, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 216, + 407, + 225 + ], + "score": 0.8, + "content": "k = 4", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 225, + 506, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 175, + 238 + ], + "score": 1.0, + "content": "Syn4, Syn5 and", + "type": "text" + }, + { + "bbox": [ + 175, + 226, + 203, + 236 + ], + "score": 0.9, + "content": "k = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 225, + 330, + 238 + ], + "score": 1.0, + "content": "for Syn6), note, however, that", + "type": "text" + }, + { + "bbox": [ + 330, + 226, + 337, + 235 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 225, + 506, + 238 + ], + "score": 1.0, + "content": "is not given as an input to INVASE (but", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 236, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 104, + 236, + 506, + 250 + ], + "score": 1.0, + "content": "is necessary for other methods). The performance metrics we use are the true positive rate (TPR)", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 247, + 506, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 247, + 277, + 260 + ], + "score": 1.0, + "content": "(higher is better) and false discovery rate", + "type": "text" + }, + { + "bbox": [ + 277, + 247, + 308, + 259 + ], + "score": 0.63, + "content": "\\mathrm { ( F D R ) } ^ { 8 }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 247, + 506, + 260 + ], + "score": 1.0, + "content": "(lower is better) to measure the performance of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "score": 1.0, + "content": "the methods when the focus is on discovery (i.e. discovering which features are relevant) and we", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 269, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 506, + 282 + ], + "score": 1.0, + "content": "use Area Under the Receiver Operating Characteristic Curve (AUROC), Area Under the Precision", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 280, + 391, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 391, + 293 + ], + "score": 1.0, + "content": "Recall Curve (AUPRC) and accuracy when the focus is on predictions.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11 + }, + { + "type": "title", + "bbox": [ + 107, + 304, + 191, + 315 + ], + "lines": [ + { + "bbox": [ + 105, + 302, + 192, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 192, + 317 + ], + "score": 1.0, + "content": "4.1.2 DISCOVERY", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "table", + "bbox": [ + 106, + 326, + 505, + 447 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 326, + 505, + 447 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 326, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 505, + 447 + ], + "score": 0.984, + "html": "
DatasetSyn1Syn2Syn3Syn4Syn5Syn6
Metrics (%)TPRFDRTPRFDRTPRFDRTPRFDRTPRFDRTPRFDR
INVASE100.00.0100.00.092.00.099.810.384.81.190.17.4
L2X LIME100.0 13.80.0 86.2100.0 100.00.0 0.069.4 98.130.6 1.979.5 40.721.8 49.474.8 41.126.3 50.683.3 50.516.7 49.5
Shapley Knockoff60.4 10.039.6 70.093.3 8.76.7 36.290.9 81.29.1 17.565.2 38.831.9 35.162.9 41.033.7 51.171.2 56.628.8 42.1
Tree100.00.0100.00.0100.00.054.739.056.840.0
37.560.0
SCFS23.539.5
76.560.578.322.048.952.442.451.256.143.9
LASSO19.081.039.860.278.321.749.950.945.548.256.443.6
", + "type": "table", + "image_path": "e394ddcd36f9c90b7f27b7632d2a651c298e379e5c1df9bd6f1d28ab4c2ab4eb.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 106, + 326, + 505, + 366.3333333333333 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 106, + 366.3333333333333, + 505, + 406.66666666666663 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 106, + 406.66666666666663, + 505, + 446.99999999999994 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 142, + 455, + 469, + 467 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 141, + 454, + 470, + 468 + ], + "spans": [ + { + "bbox": [ + 141, + 454, + 470, + 468 + ], + "score": 1.0, + "content": "Table 1: Relevant feature discovery results for Synthetic datasets with 11 features", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + } + ], + "index": 19.0 + }, + { + "type": "text", + "bbox": [ + 107, + 481, + 505, + 548 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "score": 1.0, + "content": "As demonstrated by Table 1, our method is capable of detecting relevant features on a global level", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 491, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 506 + ], + "score": 1.0, + "content": "(Syn1, Syn2 and Syn3) as well as on an instance-wise level (Syn4, Syn5 and Syn6) outperforming", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 502, + 506, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 506, + 517 + ], + "score": 1.0, + "content": "all other methods in both cases (both global and instance-wise methods). The particularly poor", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 514, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 506, + 527 + ], + "score": 1.0, + "content": "performance of some global feature selection methods in Syn1, Syn2 and Syn3 (where there is no", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 524, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 506, + 538 + ], + "score": 1.0, + "content": "instance-wise relevance) is due to the non-linearity of the relationship between features and labels,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 537, + 287, + 548 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 287, + 548 + ], + "score": 1.0, + "content": "further details can be found in the Appendix.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 553, + 505, + 631 + ], + "lines": [ + { + "bbox": [ + 105, + 552, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 505, + 566 + ], + "score": 1.0, + "content": "The results for Syn4, Syn5 and Syn6 demonstrate that INVASE is capable of detecting a different", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 564, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 577 + ], + "score": 1.0, + "content": "number of relevant features for each sample when necessary - the performance improvement over", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 575, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 506, + 587 + ], + "score": 1.0, + "content": "L2X is greater in Syn4 and Syn5 than Syn6. In particular, in Syn4, L2X is forced to overselect", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 586, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 166, + 599 + ], + "score": 1.0, + "content": "features when", + "type": "text" + }, + { + "bbox": [ + 167, + 586, + 206, + 597 + ], + "score": 0.92, + "content": "X _ { 1 1 } ~ < ~ 0", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 586, + 299, + 599 + ], + "score": 1.0, + "content": "and underselect when", + "type": "text" + }, + { + "bbox": [ + 300, + 586, + 339, + 597 + ], + "score": 0.92, + "content": "X _ { 1 1 } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 586, + 506, + 599 + ], + "score": 1.0, + "content": "thus resulting in higher FDR and lower", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 596, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 610 + ], + "score": 1.0, + "content": "TPR, respectively. To highlight this, in Table 2 we report the group specific FDR and TPR on Syn4", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 608, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 201, + 622 + ], + "score": 1.0, + "content": "and Syn5 when setting", + "type": "text" + }, + { + "bbox": [ + 201, + 608, + 245, + 619 + ], + "score": 0.91, + "content": "k = 3 , 4 , 5", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 608, + 403, + 622 + ], + "score": 1.0, + "content": ", where Group 1 refers to samples with", + "type": "text" + }, + { + "bbox": [ + 403, + 608, + 441, + 619 + ], + "score": 0.92, + "content": "X _ { 1 1 } < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 608, + 506, + 622 + ], + "score": 1.0, + "content": "and Group 2 to", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 619, + 201, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 161, + 631 + ], + "score": 1.0, + "content": "samples with", + "type": "text" + }, + { + "bbox": [ + 162, + 619, + 198, + 630 + ], + "score": 0.92, + "content": "X _ { 1 1 } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 619, + 201, + 631 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 635, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 636, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 122, + 648 + ], + "score": 1.0, + "content": "For", + "type": "text" + }, + { + "bbox": [ + 123, + 636, + 148, + 646 + ], + "score": 0.89, + "content": "k = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 636, + 505, + 648 + ], + "score": 1.0, + "content": "in Syn4, we see that INVASE and L2X have comparable FDR in Group 1, since the total", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 647, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 302, + 659 + ], + "score": 1.0, + "content": "number of relevant features for each sample is 3", + "type": "text" + }, + { + "bbox": [ + 302, + 647, + 361, + 659 + ], + "score": 0.93, + "content": "( X _ { 1 } , X _ { 2 } , X _ { 1 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 648, + 480, + 659 + ], + "score": 1.0, + "content": ". However, when we increase", + "type": "text" + }, + { + "bbox": [ + 480, + 647, + 487, + 657 + ], + "score": 0.78, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 648, + 505, + 659 + ], + "score": 1.0, + "content": ", we", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 657, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 505, + 670 + ], + "score": 1.0, + "content": "see that the FDR increases for L2X as it is forced to select more than 3 features, which necessarily", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 258, + 681 + ], + "score": 1.0, + "content": "means that the FDR must be at least", + "type": "text" + }, + { + "bbox": [ + 258, + 669, + 278, + 680 + ], + "score": 0.87, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 668, + 505, + 681 + ], + "score": 1.0, + "content": "even if L2X was finding the relevant features perfectly.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 679, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 679, + 356, + 692 + ], + "score": 1.0, + "content": "On the other hand, for Group 2 we see that the TPR is low for", + "type": "text" + }, + { + "bbox": [ + 357, + 680, + 382, + 690 + ], + "score": 0.91, + "content": "k = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 679, + 505, + 692 + ], + "score": 1.0, + "content": "since necessarily, L2X cannot", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 691, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 506, + 703 + ], + "score": 1.0, + "content": "possibly select all of the 5 relevant features. INVASE, however, is able to select the correct number", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 702, + 307, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 702, + 307, + 714 + ], + "score": 1.0, + "content": "in both and hence enjoys low FDR and high TPR.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 119, + 721, + 338, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 720, + 339, + 733 + ], + "spans": [ + { + "bbox": [ + 119, + 720, + 339, + 733 + ], + "score": 1.0, + "content": "8Definitions of TPR and FDR can be found in the Appendix.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "In each of these datasets, the label depends on the same subset of features for every sample. To high-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "light the capability of INVASE to detect instance-wise dependence, we generate 3 further synthetic", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 186, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 186, + 116 + ], + "score": 1.0, + "content": "datasets as follows:", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 81, + 505, + 116 + ] + }, + { + "type": "list", + "bbox": [ + 132, + 124, + 423, + 167 + ], + "lines": [ + { + "bbox": [ + 132, + 124, + 423, + 138 + ], + "spans": [ + { + "bbox": [ + 132, + 124, + 182, + 138 + ], + "score": 1.0, + "content": "• Syn4: If", + "type": "text" + }, + { + "bbox": [ + 182, + 126, + 218, + 137 + ], + "score": 0.91, + "content": "X _ { 1 1 } < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 124, + 423, + 138 + ], + "score": 1.0, + "content": ", logit follows Syn1, otherwise, logit follows Syn2.", + "type": "text" + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 139, + 424, + 153 + ], + "spans": [ + { + "bbox": [ + 132, + 139, + 182, + 153 + ], + "score": 1.0, + "content": "• Syn5: If", + "type": "text" + }, + { + "bbox": [ + 182, + 140, + 218, + 151 + ], + "score": 0.91, + "content": "X _ { 1 1 } < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 139, + 424, + 153 + ], + "score": 1.0, + "content": ", logit follows Syn1, otherwise, logit follows Syn3.", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 154, + 423, + 167 + ], + "spans": [ + { + "bbox": [ + 132, + 154, + 182, + 167 + ], + "score": 1.0, + "content": "• Syn6: If", + "type": "text" + }, + { + "bbox": [ + 182, + 155, + 218, + 166 + ], + "score": 0.92, + "content": "X _ { 1 1 } < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 154, + 423, + 167 + ], + "score": 1.0, + "content": ", logit follows Syn2, otherwise, logit follows Syn3.", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 4, + "bbox_fs": [ + 132, + 124, + 424, + 167 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 175, + 480, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 175, + 482, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 482, + 189 + ], + "score": 1.0, + "content": "Note that in Syn4 and Syn5, the number of relevant features is different for different samples.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 175, + 482, + 189 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 192, + 506, + 292 + ], + "lines": [ + { + "bbox": [ + 106, + 192, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 505, + 205 + ], + "score": 1.0, + "content": "For each of Syn1 to Syn6 we draw 20,000 samples from the data generation model and separate each", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 102, + 198, + 509, + 227 + ], + "spans": [ + { + "bbox": [ + 102, + 198, + 161, + 227 + ], + "score": 1.0, + "content": "into trainingwe try to fin", + "type": "text" + }, + { + "bbox": [ + 161, + 203, + 261, + 216 + ], + "score": 0.9, + "content": "( \\mathcal { D } _ { t r a i n } { \\bf \\bar { \\alpha } } = ( { \\bf x } _ { i } , y _ { i } ) _ { i = 1 } ^ { 1 0 0 0 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 198, + 312, + 227 + ], + "score": 1.0, + "content": "and testingures for each", + "type": "text" + }, + { + "bbox": [ + 313, + 203, + 407, + 216 + ], + "score": 0.89, + "content": "( \\mathcal { D } _ { t e s t } = ( \\mathbf { \\bar { x } } _ { j } ^ { - } , y _ { j } ) _ { j = 1 } ^ { 1 0 0 0 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 198, + 509, + 227 + ], + "score": 1.0, + "content": "sets. For each methodfor Syn1, Syn2, Syn3,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 198, + 216, + 407, + 225 + ], + "spans": [ + { + "bbox": [ + 198, + 216, + 205, + 225 + ], + "score": 0.77, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 216, + 407, + 225 + ], + "score": 0.8, + "content": "k = 4", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 225, + 506, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 175, + 238 + ], + "score": 1.0, + "content": "Syn4, Syn5 and", + "type": "text" + }, + { + "bbox": [ + 175, + 226, + 203, + 236 + ], + "score": 0.9, + "content": "k = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 225, + 330, + 238 + ], + "score": 1.0, + "content": "for Syn6), note, however, that", + "type": "text" + }, + { + "bbox": [ + 330, + 226, + 337, + 235 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 225, + 506, + 238 + ], + "score": 1.0, + "content": "is not given as an input to INVASE (but", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 236, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 104, + 236, + 506, + 250 + ], + "score": 1.0, + "content": "is necessary for other methods). The performance metrics we use are the true positive rate (TPR)", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 247, + 506, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 247, + 277, + 260 + ], + "score": 1.0, + "content": "(higher is better) and false discovery rate", + "type": "text" + }, + { + "bbox": [ + 277, + 247, + 308, + 259 + ], + "score": 0.63, + "content": "\\mathrm { ( F D R ) } ^ { 8 }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 247, + 506, + 260 + ], + "score": 1.0, + "content": "(lower is better) to measure the performance of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "score": 1.0, + "content": "the methods when the focus is on discovery (i.e. discovering which features are relevant) and we", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 269, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 506, + 282 + ], + "score": 1.0, + "content": "use Area Under the Receiver Operating Characteristic Curve (AUROC), Area Under the Precision", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 280, + 391, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 391, + 293 + ], + "score": 1.0, + "content": "Recall Curve (AUPRC) and accuracy when the focus is on predictions.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11, + "bbox_fs": [ + 102, + 192, + 509, + 293 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 304, + 191, + 315 + ], + "lines": [ + { + "bbox": [ + 105, + 302, + 192, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 192, + 317 + ], + "score": 1.0, + "content": "4.1.2 DISCOVERY", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "table", + "bbox": [ + 106, + 326, + 505, + 447 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 326, + 505, + 447 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 326, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 505, + 447 + ], + "score": 0.984, + "html": "
DatasetSyn1Syn2Syn3Syn4Syn5Syn6
Metrics (%)TPRFDRTPRFDRTPRFDRTPRFDRTPRFDRTPRFDR
INVASE100.00.0100.00.092.00.099.810.384.81.190.17.4
L2X LIME100.0 13.80.0 86.2100.0 100.00.0 0.069.4 98.130.6 1.979.5 40.721.8 49.474.8 41.126.3 50.683.3 50.516.7 49.5
Shapley Knockoff60.4 10.039.6 70.093.3 8.76.7 36.290.9 81.29.1 17.565.2 38.831.9 35.162.9 41.033.7 51.171.2 56.628.8 42.1
Tree100.00.0100.00.0100.00.054.739.056.840.0
37.560.0
SCFS23.539.5
76.560.578.322.048.952.442.451.256.143.9
LASSO19.081.039.860.278.321.749.950.945.548.256.443.6
", + "type": "table", + "image_path": "e394ddcd36f9c90b7f27b7632d2a651c298e379e5c1df9bd6f1d28ab4c2ab4eb.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 106, + 326, + 505, + 366.3333333333333 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 106, + 366.3333333333333, + 505, + 406.66666666666663 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 106, + 406.66666666666663, + 505, + 446.99999999999994 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 142, + 455, + 469, + 467 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 141, + 454, + 470, + 468 + ], + "spans": [ + { + "bbox": [ + 141, + 454, + 470, + 468 + ], + "score": 1.0, + "content": "Table 1: Relevant feature discovery results for Synthetic datasets with 11 features", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + } + ], + "index": 19.0 + }, + { + "type": "text", + "bbox": [ + 107, + 481, + 505, + 548 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "score": 1.0, + "content": "As demonstrated by Table 1, our method is capable of detecting relevant features on a global level", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 491, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 506 + ], + "score": 1.0, + "content": "(Syn1, Syn2 and Syn3) as well as on an instance-wise level (Syn4, Syn5 and Syn6) outperforming", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 502, + 506, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 506, + 517 + ], + "score": 1.0, + "content": "all other methods in both cases (both global and instance-wise methods). The particularly poor", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 514, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 506, + 527 + ], + "score": 1.0, + "content": "performance of some global feature selection methods in Syn1, Syn2 and Syn3 (where there is no", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 524, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 506, + 538 + ], + "score": 1.0, + "content": "instance-wise relevance) is due to the non-linearity of the relationship between features and labels,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 537, + 287, + 548 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 287, + 548 + ], + "score": 1.0, + "content": "further details can be found in the Appendix.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 482, + 506, + 548 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 553, + 505, + 631 + ], + "lines": [ + { + "bbox": [ + 105, + 552, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 505, + 566 + ], + "score": 1.0, + "content": "The results for Syn4, Syn5 and Syn6 demonstrate that INVASE is capable of detecting a different", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 564, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 577 + ], + "score": 1.0, + "content": "number of relevant features for each sample when necessary - the performance improvement over", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 575, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 506, + 587 + ], + "score": 1.0, + "content": "L2X is greater in Syn4 and Syn5 than Syn6. In particular, in Syn4, L2X is forced to overselect", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 586, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 166, + 599 + ], + "score": 1.0, + "content": "features when", + "type": "text" + }, + { + "bbox": [ + 167, + 586, + 206, + 597 + ], + "score": 0.92, + "content": "X _ { 1 1 } ~ < ~ 0", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 586, + 299, + 599 + ], + "score": 1.0, + "content": "and underselect when", + "type": "text" + }, + { + "bbox": [ + 300, + 586, + 339, + 597 + ], + "score": 0.92, + "content": "X _ { 1 1 } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 586, + 506, + 599 + ], + "score": 1.0, + "content": "thus resulting in higher FDR and lower", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 596, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 610 + ], + "score": 1.0, + "content": "TPR, respectively. To highlight this, in Table 2 we report the group specific FDR and TPR on Syn4", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 608, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 201, + 622 + ], + "score": 1.0, + "content": "and Syn5 when setting", + "type": "text" + }, + { + "bbox": [ + 201, + 608, + 245, + 619 + ], + "score": 0.91, + "content": "k = 3 , 4 , 5", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 608, + 403, + 622 + ], + "score": 1.0, + "content": ", where Group 1 refers to samples with", + "type": "text" + }, + { + "bbox": [ + 403, + 608, + 441, + 619 + ], + "score": 0.92, + "content": "X _ { 1 1 } < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 608, + 506, + 622 + ], + "score": 1.0, + "content": "and Group 2 to", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 619, + 201, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 161, + 631 + ], + "score": 1.0, + "content": "samples with", + "type": "text" + }, + { + "bbox": [ + 162, + 619, + 198, + 630 + ], + "score": 0.92, + "content": "X _ { 1 1 } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 619, + 201, + 631 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 552, + 506, + 631 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 635, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 636, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 122, + 648 + ], + "score": 1.0, + "content": "For", + "type": "text" + }, + { + "bbox": [ + 123, + 636, + 148, + 646 + ], + "score": 0.89, + "content": "k = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 636, + 505, + 648 + ], + "score": 1.0, + "content": "in Syn4, we see that INVASE and L2X have comparable FDR in Group 1, since the total", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 647, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 302, + 659 + ], + "score": 1.0, + "content": "number of relevant features for each sample is 3", + "type": "text" + }, + { + "bbox": [ + 302, + 647, + 361, + 659 + ], + "score": 0.93, + "content": "( X _ { 1 } , X _ { 2 } , X _ { 1 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 648, + 480, + 659 + ], + "score": 1.0, + "content": ". However, when we increase", + "type": "text" + }, + { + "bbox": [ + 480, + 647, + 487, + 657 + ], + "score": 0.78, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 648, + 505, + 659 + ], + "score": 1.0, + "content": ", we", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 657, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 505, + 670 + ], + "score": 1.0, + "content": "see that the FDR increases for L2X as it is forced to select more than 3 features, which necessarily", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 258, + 681 + ], + "score": 1.0, + "content": "means that the FDR must be at least", + "type": "text" + }, + { + "bbox": [ + 258, + 669, + 278, + 680 + ], + "score": 0.87, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 668, + 505, + 681 + ], + "score": 1.0, + "content": "even if L2X was finding the relevant features perfectly.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 679, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 679, + 356, + 692 + ], + "score": 1.0, + "content": "On the other hand, for Group 2 we see that the TPR is low for", + "type": "text" + }, + { + "bbox": [ + 357, + 680, + 382, + 690 + ], + "score": 0.91, + "content": "k = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 679, + 505, + 692 + ], + "score": 1.0, + "content": "since necessarily, L2X cannot", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 691, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 506, + 703 + ], + "score": 1.0, + "content": "possibly select all of the 5 relevant features. INVASE, however, is able to select the correct number", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 702, + 307, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 702, + 307, + 714 + ], + "score": 1.0, + "content": "in both and hence enjoys low FDR and high TPR.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 636, + 506, + 714 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 193 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 504, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 504, + 94 + ], + "score": 1.0, + "content": "Syn5 reinforces the conclusions we drew for L2X in Syn4. Interestingly, though, for INVASE, we", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 152, + 106 + ], + "score": 1.0, + "content": "found that", + "type": "text" + }, + { + "bbox": [ + 152, + 94, + 170, + 105 + ], + "score": 0.9, + "content": "X _ { 1 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "was almost never selected for Group 1 in Syn5. We believe this is because the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "lack of overlap between the relevant features for each group means that the predictor network can", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "essentially learn two separate networks - one for each group. This is because it is possible to create", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 140 + ], + "score": 1.0, + "content": "two subnetworks with non-overlapping weights that each take as input the features of a given group.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 136, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 107, + 137, + 124, + 149 + ], + "score": 0.89, + "content": "X _ { 1 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 125, + 136, + 379, + 150 + ], + "score": 1.0, + "content": "is therefore unnecessary for prediction. Note, however, that", + "type": "text" + }, + { + "bbox": [ + 379, + 137, + 397, + 149 + ], + "score": 0.91, + "content": "X _ { 1 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 136, + 505, + 150 + ], + "score": 1.0, + "content": "is highly relevant for the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 428, + 161 + ], + "score": 1.0, + "content": "selector network in deciding which features to pass on and so it is not true that", + "type": "text" + }, + { + "bbox": [ + 428, + 149, + 446, + 159 + ], + "score": 0.9, + "content": "X _ { 1 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 147, + 505, + 161 + ], + "score": 1.0, + "content": "isn’t relevant,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "but simply that the selector network does not need to “pass on” its relevance to the predictor network.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 169, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 506, + 183 + ], + "score": 1.0, + "content": "To investigate this further, results for settings where the features overlap between groups (and so it", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 181, + 405, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 405, + 194 + ], + "score": 1.0, + "content": "is not possible to disentangle the networks) can be found in the Appendix.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 4.5 + }, + { + "type": "table", + "bbox": [ + 144, + 204, + 466, + 308 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 144, + 204, + 466, + 308 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 144, + 204, + 466, + 308 + ], + "spans": [ + { + "bbox": [ + 144, + 204, + 466, + 308 + ], + "score": 0.979, + "html": "
DatasetsSyn4Syn5
Group1212
Metrics (%)TPRFDRTPRFDRTPRFDRTPRFDR
INVASE99.524.6100.00.41 69.21.699.80.6
L2X (k = 3)71.128.957.24.665.534.555.47.7
L2X (k = 4)81.039.274.96.376.242.972.49.4
L2X(k = 5)89.946.084.615.487.547.582.117.9
", + "type": "table", + "image_path": "37b8f1184e6131e7a980904451b7349da08a88f011b6d525d2e57049001ef4ad.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 144, + 204, + 466, + 238.66666666666666 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 144, + 238.66666666666666, + 466, + 273.3333333333333 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 144, + 273.3333333333333, + 466, + 308.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 317, + 505, + 351 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 316, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 505, + 330 + ], + "score": 1.0, + "content": "Table 2: Detailed comparison of INVASE with L2X in Syn4 and Syn5, highlighting the capability", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 423, + 340 + ], + "score": 1.0, + "content": "of INVASE to select a flexible number of features for each sample. Group 1:", + "type": "text" + }, + { + "bbox": [ + 424, + 328, + 462, + 339 + ], + "score": 0.91, + "content": "X _ { 1 1 } < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 327, + 505, + 340 + ], + "score": 1.0, + "content": ", Group 2:", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 339, + 143, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 143, + 351 + ], + "score": 0.89, + "content": "X _ { 1 1 } \\geq 0", + "type": "inline_equation" + } + ], + "index": 15 + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "title", + "bbox": [ + 107, + 372, + 193, + 383 + ], + "lines": [ + { + "bbox": [ + 105, + 371, + 195, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 195, + 385 + ], + "score": 1.0, + "content": "4.1.3 PREDICTION", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 392, + 505, + 524 + ], + "lines": [ + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "score": 1.0, + "content": "In this experiment we analyze the effect of using feature selection as a pre-processing step for predic-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 403, + 504, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 504, + 416 + ], + "score": 1.0, + "content": "tion. We first perform feature selection (either instance-wise or global) and then train a 3-layer fully", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 414, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 505, + 426 + ], + "score": 1.0, + "content": "connected network with Batch Normalization [12] in every layer (to avoid overfitting) to perform", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 425, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 104, + 425, + 505, + 438 + ], + "score": 1.0, + "content": "predictions on top of the (feature-selected) data. In this setting we compare the two global fea-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 436, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 505, + 448 + ], + "score": 1.0, + "content": "ture selection methods (LASSO and Tree) and one instance-wise feature selection method (L2X).", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 447, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 505, + 459 + ], + "score": 1.0, + "content": "Furthermore, we also compare with the predictive model without any feature selections (w/o FS)", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 458, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 505, + 470 + ], + "score": 1.0, + "content": "and the predictive model with ground truth globally relevant features9 (with Global). In particular,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 468, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 482 + ], + "score": 1.0, + "content": "this allows us to demonstrate that the improvements in prediction performance are not just because", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "score": 1.0, + "content": "the global feature selection performed implicitly by INVASE is better than the other global feature", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 491, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 503 + ], + "score": 1.0, + "content": "selection methods but are also due to the fact that we select features on an instance-wise level. Ex-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 502, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 505, + 514 + ], + "score": 1.0, + "content": "periments here are conducted on synthetic data with 100 features but the same labelling procedures", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 513, + 146, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 146, + 525 + ], + "score": 1.0, + "content": "as above.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 106, + 529, + 505, + 640 + ], + "lines": [ + { + "bbox": [ + 106, + 529, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 506, + 542 + ], + "score": 1.0, + "content": "As can be seen in Table 3, there is a significant performance improvement when discarding all of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 540, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 553 + ], + "score": 1.0, + "content": "the irrelevant features (with Global). However, neither of the global feature selection methods (Tree", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 551, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 506, + 564 + ], + "score": 1.0, + "content": "and Lasso) are capable of achieving this improvement. On the other hand, INVASE is capable of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 563, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 505, + 574 + ], + "score": 1.0, + "content": "achieving (and beating - in Syn4 and Syn6) this improvement, demonstrating its capability both at", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 574, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 586 + ], + "score": 1.0, + "content": "selecting features globally better than existing methods but also at improving on global selection", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 583, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 506, + 597 + ], + "score": 1.0, + "content": "with instance-wise selection (where relevant), to provide further improvements. On the other hand,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 595, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 125, + 606 + ], + "score": 0.43, + "content": "L 2 X", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 595, + 506, + 608 + ], + "score": 1.0, + "content": "performs worse than the global methods in Syn1-3, demonstrating an inability to perform even", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 605, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 619 + ], + "score": 1.0, + "content": "global feature selection in this higher dimensional setting (this is supported by the high dimensional", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "discovery results in the Appendix), and in Syn4-6 is performing worse than with Global (which now", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 628, + 191, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 191, + 641 + ], + "score": 1.0, + "content": "is not even optimal).", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 107, + 645, + 504, + 700 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "score": 1.0, + "content": "Furthermore, even though we include Batch Normalization to avoid overfitting, with a small number", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 656, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 505, + 668 + ], + "score": 1.0, + "content": "of samples and high number of dimensions, the 3-layer fully connected network still suffers from", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "overfitting as demonstrated by the significant difference in performance between w/o FS and with", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "Global. This demonstrates the necessity of feature selection as a pre-processing step. Lastly, in", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 689, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 702 + ], + "score": 1.0, + "content": "comparison to with Global, with INVASE achieves performance gains in Syn4 and Syn6. It quan-", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 712, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 438, + 723 + ], + "score": 1.0, + "content": "9For example, in Syn1 the predictor network in the with Global setting is trained on only", + "type": "text" + }, + { + "bbox": [ + 438, + 712, + 451, + 721 + ], + "score": 0.87, + "content": "X _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 709, + 466, + 723 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 467, + 712, + 479, + 721 + ], + "score": 0.87, + "content": "X _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "and in", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 324, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 209, + 733 + ], + "score": 1.0, + "content": "Syn4 it would be trained on", + "type": "text" + }, + { + "bbox": [ + 209, + 721, + 320, + 732 + ], + "score": 0.91, + "content": "\\bar { X _ { 1 } } , \\bar { X _ { 2 } } , \\bar { X _ { 3 } } , \\bar { X _ { 4 } } , \\bar { X _ { 5 } } , \\bar { X _ { 6 } } , \\bar { X _ { 1 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 721, + 324, + 733 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 9 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 193 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 504, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 504, + 94 + ], + "score": 1.0, + "content": "Syn5 reinforces the conclusions we drew for L2X in Syn4. Interestingly, though, for INVASE, we", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 152, + 106 + ], + "score": 1.0, + "content": "found that", + "type": "text" + }, + { + "bbox": [ + 152, + 94, + 170, + 105 + ], + "score": 0.9, + "content": "X _ { 1 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "was almost never selected for Group 1 in Syn5. We believe this is because the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "lack of overlap between the relevant features for each group means that the predictor network can", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "essentially learn two separate networks - one for each group. This is because it is possible to create", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 140 + ], + "score": 1.0, + "content": "two subnetworks with non-overlapping weights that each take as input the features of a given group.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 136, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 107, + 137, + 124, + 149 + ], + "score": 0.89, + "content": "X _ { 1 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 125, + 136, + 379, + 150 + ], + "score": 1.0, + "content": "is therefore unnecessary for prediction. Note, however, that", + "type": "text" + }, + { + "bbox": [ + 379, + 137, + 397, + 149 + ], + "score": 0.91, + "content": "X _ { 1 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 136, + 505, + 150 + ], + "score": 1.0, + "content": "is highly relevant for the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 428, + 161 + ], + "score": 1.0, + "content": "selector network in deciding which features to pass on and so it is not true that", + "type": "text" + }, + { + "bbox": [ + 428, + 149, + 446, + 159 + ], + "score": 0.9, + "content": "X _ { 1 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 147, + 505, + 161 + ], + "score": 1.0, + "content": "isn’t relevant,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "but simply that the selector network does not need to “pass on” its relevance to the predictor network.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 169, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 506, + 183 + ], + "score": 1.0, + "content": "To investigate this further, results for settings where the features overlap between groups (and so it", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 181, + 405, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 405, + 194 + ], + "score": 1.0, + "content": "is not possible to disentangle the networks) can be found in the Appendix.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 83, + 506, + 194 + ] + }, + { + "type": "table", + "bbox": [ + 144, + 204, + 466, + 308 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 144, + 204, + 466, + 308 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 144, + 204, + 466, + 308 + ], + "spans": [ + { + "bbox": [ + 144, + 204, + 466, + 308 + ], + "score": 0.979, + "html": "
DatasetsSyn4Syn5
Group1212
Metrics (%)TPRFDRTPRFDRTPRFDRTPRFDR
INVASE99.524.6100.00.41 69.21.699.80.6
L2X (k = 3)71.128.957.24.665.534.555.47.7
L2X (k = 4)81.039.274.96.376.242.972.49.4
L2X(k = 5)89.946.084.615.487.547.582.117.9
", + "type": "table", + "image_path": "37b8f1184e6131e7a980904451b7349da08a88f011b6d525d2e57049001ef4ad.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 144, + 204, + 466, + 238.66666666666666 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 144, + 238.66666666666666, + 466, + 273.3333333333333 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 144, + 273.3333333333333, + 466, + 308.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 317, + 505, + 351 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 316, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 505, + 330 + ], + "score": 1.0, + "content": "Table 2: Detailed comparison of INVASE with L2X in Syn4 and Syn5, highlighting the capability", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 423, + 340 + ], + "score": 1.0, + "content": "of INVASE to select a flexible number of features for each sample. Group 1:", + "type": "text" + }, + { + "bbox": [ + 424, + 328, + 462, + 339 + ], + "score": 0.91, + "content": "X _ { 1 1 } < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 327, + 505, + 340 + ], + "score": 1.0, + "content": ", Group 2:", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 339, + 143, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 143, + 351 + ], + "score": 0.89, + "content": "X _ { 1 1 } \\geq 0", + "type": "inline_equation" + } + ], + "index": 15 + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "title", + "bbox": [ + 107, + 372, + 193, + 383 + ], + "lines": [ + { + "bbox": [ + 105, + 371, + 195, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 195, + 385 + ], + "score": 1.0, + "content": "4.1.3 PREDICTION", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 392, + 505, + 524 + ], + "lines": [ + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "score": 1.0, + "content": "In this experiment we analyze the effect of using feature selection as a pre-processing step for predic-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 403, + 504, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 504, + 416 + ], + "score": 1.0, + "content": "tion. We first perform feature selection (either instance-wise or global) and then train a 3-layer fully", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 414, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 505, + 426 + ], + "score": 1.0, + "content": "connected network with Batch Normalization [12] in every layer (to avoid overfitting) to perform", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 425, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 104, + 425, + 505, + 438 + ], + "score": 1.0, + "content": "predictions on top of the (feature-selected) data. In this setting we compare the two global fea-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 436, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 505, + 448 + ], + "score": 1.0, + "content": "ture selection methods (LASSO and Tree) and one instance-wise feature selection method (L2X).", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 447, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 505, + 459 + ], + "score": 1.0, + "content": "Furthermore, we also compare with the predictive model without any feature selections (w/o FS)", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 458, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 505, + 470 + ], + "score": 1.0, + "content": "and the predictive model with ground truth globally relevant features9 (with Global). In particular,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 468, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 482 + ], + "score": 1.0, + "content": "this allows us to demonstrate that the improvements in prediction performance are not just because", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "score": 1.0, + "content": "the global feature selection performed implicitly by INVASE is better than the other global feature", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 491, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 503 + ], + "score": 1.0, + "content": "selection methods but are also due to the fact that we select features on an instance-wise level. Ex-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 502, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 505, + 514 + ], + "score": 1.0, + "content": "periments here are conducted on synthetic data with 100 features but the same labelling procedures", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 513, + 146, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 146, + 525 + ], + "score": 1.0, + "content": "as above.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 22.5, + "bbox_fs": [ + 104, + 392, + 505, + 525 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 529, + 505, + 640 + ], + "lines": [ + { + "bbox": [ + 106, + 529, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 506, + 542 + ], + "score": 1.0, + "content": "As can be seen in Table 3, there is a significant performance improvement when discarding all of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 540, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 553 + ], + "score": 1.0, + "content": "the irrelevant features (with Global). However, neither of the global feature selection methods (Tree", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 551, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 506, + 564 + ], + "score": 1.0, + "content": "and Lasso) are capable of achieving this improvement. On the other hand, INVASE is capable of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 563, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 505, + 574 + ], + "score": 1.0, + "content": "achieving (and beating - in Syn4 and Syn6) this improvement, demonstrating its capability both at", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 574, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 586 + ], + "score": 1.0, + "content": "selecting features globally better than existing methods but also at improving on global selection", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 583, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 506, + 597 + ], + "score": 1.0, + "content": "with instance-wise selection (where relevant), to provide further improvements. On the other hand,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 595, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 125, + 606 + ], + "score": 0.43, + "content": "L 2 X", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 595, + 506, + 608 + ], + "score": 1.0, + "content": "performs worse than the global methods in Syn1-3, demonstrating an inability to perform even", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 605, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 619 + ], + "score": 1.0, + "content": "global feature selection in this higher dimensional setting (this is supported by the high dimensional", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "discovery results in the Appendix), and in Syn4-6 is performing worse than with Global (which now", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 628, + 191, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 191, + 641 + ], + "score": 1.0, + "content": "is not even optimal).", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 529, + 506, + 641 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 645, + 504, + 700 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "score": 1.0, + "content": "Furthermore, even though we include Batch Normalization to avoid overfitting, with a small number", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 656, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 505, + 668 + ], + "score": 1.0, + "content": "of samples and high number of dimensions, the 3-layer fully connected network still suffers from", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "overfitting as demonstrated by the significant difference in performance between w/o FS and with", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "Global. This demonstrates the necessity of feature selection as a pre-processing step. Lastly, in", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 689, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 702 + ], + "score": 1.0, + "content": "comparison to with Global, with INVASE achieves performance gains in Syn4 and Syn6. It quan-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 349, + 504, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 504, + 362 + ], + "score": 1.0, + "content": "titatively shows that instance-wise feature selection can further improves the predictive model from", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 361, + 256, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 256, + 373 + ], + "score": 1.0, + "content": "ground truth global feature selection.", + "type": "text", + "cross_page": true + } + ], + "index": 7 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 644, + 506, + 702 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 81, + 507, + 286 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 81, + 507, + 286 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 81, + 507, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 507, + 286 + ], + "score": 0.934, + "html": "
DatasetAUROC
w/o FSwith Globalwith INVASEwith Treewith L2Xwith LASSO
Syn1.578±.004.686±.005.690±.006.574±.101.498±.005.498±.006
Syn2.789±.003.873±.003.877±.003.872±.003.823±.029.555±.061
Syn3.854±.004.900±.003.902±.003.899±.001.862±.009.886±.003
Syn4.558±.021.774±.006.787±.004.684±.017.678±.024.514±.031
Syn5.662±.013.784±.005 .858±.004.784±.005.741±.004.709±.008.691±.024
Syn6.692±.015.877±.003.771±.031.827±.017.727±.025
DatasetAUPRC
w/o FSwith Globalwith INVASEwith Treewith L2Xwith LASSO
Syn1.567±.007.690±.006.694±.006.577±.102.498±.007.499±.008
Syn2.799±.005.878±.005.886±.004.878±.004.817±.031.591±.037
Syn3.861±.003.905±.002.907±.003.904±.002.860±.012.890±.002
Syn4.572±.019.794±.006.804±.004.681±.031.672±.025.536±.025
Syn5.665±.019.796±.005.797±.006.765±.003.719±.011.680±.040
Syn6.709±.018.870±.005.886±.004.779±.027.835±.017.757±.036
", + "type": "table", + "image_path": "dbadf4765c63a4956b3903cffa08ea6abd78c43ecb5ff0560682c8714bd5a452.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 81, + 507, + 149.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 149.33333333333331, + 507, + 217.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 217.66666666666663, + 507, + 285.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 294, + 506, + 327 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 293, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 505, + 307 + ], + "score": 1.0, + "content": "Table 3: Prediction performance comparison with and without feature selection methods (L2X,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 304, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 104, + 304, + 506, + 318 + ], + "score": 1.0, + "content": "LASSO, Tree, INVASE, and Global). Global is using ground-truth globally relevant features for", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 316, + 158, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 158, + 327 + ], + "score": 1.0, + "content": "each dataset", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 108, + 349, + 504, + 371 + ], + "lines": [ + { + "bbox": [ + 106, + 349, + 504, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 504, + 362 + ], + "score": 1.0, + "content": "titatively shows that instance-wise feature selection can further improves the predictive model from", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 361, + 256, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 256, + 373 + ], + "score": 1.0, + "content": "ground truth global feature selection.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "title", + "bbox": [ + 108, + 385, + 279, + 396 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 280, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 280, + 397 + ], + "score": 1.0, + "content": "4.2 REAL-WORLD DATA EXPERIMENTS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "title", + "bbox": [ + 108, + 406, + 225, + 417 + ], + "lines": [ + { + "bbox": [ + 106, + 406, + 226, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 226, + 418 + ], + "score": 1.0, + "content": "4.2.1 DATA DESCRIPTION", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 425, + 505, + 502 + ], + "lines": [ + { + "bbox": [ + 105, + 425, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 505, + 438 + ], + "score": 1.0, + "content": "In this section we use two real-world datasets to perform a series of further experiments. The first, the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 436, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 505, + 448 + ], + "score": 1.0, + "content": "Meta-Analysis Global Group in Chronic Heart Failure (MAGGIC) dataset [23], has 40,409 patients", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 446, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 461 + ], + "score": 1.0, + "content": "each with 31 measured features. The label is all-cause mortality. The second, the Prostate, Lung,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 457, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 505, + 470 + ], + "score": 1.0, + "content": "Colorectal and Ovarian (PLCO) Cancer Screening Trial in the US and the European Randomized", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 469, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 505, + 481 + ], + "score": 1.0, + "content": "Study of Screening for Prostate Cancer (ERSPC) dataset [8; 26] contains 38,001 each with 106", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 480, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 506, + 492 + ], + "score": 1.0, + "content": "measured features. The label in this dataset is mortality due to prostate cancer. We refer to this as", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 491, + 182, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 182, + 502 + ], + "score": 1.0, + "content": "the PLCO dataset.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 508, + 504, + 541 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 522 + ], + "score": 1.0, + "content": "The first experiment we carried out was to create semi-synthetic datasets by using the labelling", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 518, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 506, + 533 + ], + "score": 1.0, + "content": "procedures Syn1-6 from above but with the features now coming from real data (instead of being", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 530, + 417, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 417, + 543 + ], + "score": 1.0, + "content": "i.i.d. Gaussian). The results of this experiment can be found in the Appendix.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 108, + 554, + 412, + 565 + ], + "lines": [ + { + "bbox": [ + 105, + 552, + 414, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 414, + 567 + ], + "score": 1.0, + "content": "4.2.2 THE DISCOVERED FEATURE IMPORTANCE IN MAGGIC DATASET", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 572, + 505, + 628 + ], + "lines": [ + { + "bbox": [ + 105, + 572, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 586 + ], + "score": 1.0, + "content": "In this next experiment, we visualize the ability of INVASE to select features on an individualized", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 584, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 584, + 505, + 596 + ], + "score": 1.0, + "content": "level. Fig. 2(left) shows the selection probability (given by INVASE) of each feature for 20 randomly", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 594, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 608 + ], + "score": 1.0, + "content": "selected patients in the MAGGIC dataset. Fig. 2(right) shows the selection probability of each", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 606, + 504, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 504, + 618 + ], + "score": 1.0, + "content": "feature averaged over different binary splits of the data (i.e. when split into Male and Female). In", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 616, + 503, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 503, + 631 + ], + "score": 1.0, + "content": "Table 4, we also report the mean and variance of the number of selected features in each subgroup.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 633, + 503, + 656 + ], + "lines": [ + { + "bbox": [ + 106, + 632, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 505, + 646 + ], + "score": 1.0, + "content": "As can be seen, INVASE discovers significantly different features for both individuals and for dif-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 644, + 234, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 234, + 657 + ], + "score": 1.0, + "content": "ferent subgroups of the dataset.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "title", + "bbox": [ + 108, + 669, + 449, + 680 + ], + "lines": [ + { + "bbox": [ + 106, + 668, + 451, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 451, + 681 + ], + "score": 1.0, + "content": "4.2.3 RESULTS: PREDICTION USING REAL DATA VARIABLES WITH REAL LABEL", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "score": 1.0, + "content": "Evaluating the performance of feature selection methods on real data is difficult, since ground truth", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 699, + 505, + 710 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 710 + ], + "score": 1.0, + "content": "relevance is often not known. We therefore cannot use TPR and FDR to evaluate the performance", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 710, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 504, + 722 + ], + "score": 1.0, + "content": "on real data. In our final experiment, therefore, we instead focus on prediction performance exactly", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 721, + 397, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 397, + 732 + ], + "score": 1.0, + "content": "as in 4.1.3 (except now both the features and label come from real data).", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.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 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 81, + 507, + 286 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 81, + 507, + 286 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 81, + 507, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 507, + 286 + ], + "score": 0.934, + "html": "
DatasetAUROC
w/o FSwith Globalwith INVASEwith Treewith L2Xwith LASSO
Syn1.578±.004.686±.005.690±.006.574±.101.498±.005.498±.006
Syn2.789±.003.873±.003.877±.003.872±.003.823±.029.555±.061
Syn3.854±.004.900±.003.902±.003.899±.001.862±.009.886±.003
Syn4.558±.021.774±.006.787±.004.684±.017.678±.024.514±.031
Syn5.662±.013.784±.005 .858±.004.784±.005.741±.004.709±.008.691±.024
Syn6.692±.015.877±.003.771±.031.827±.017.727±.025
DatasetAUPRC
w/o FSwith Globalwith INVASEwith Treewith L2Xwith LASSO
Syn1.567±.007.690±.006.694±.006.577±.102.498±.007.499±.008
Syn2.799±.005.878±.005.886±.004.878±.004.817±.031.591±.037
Syn3.861±.003.905±.002.907±.003.904±.002.860±.012.890±.002
Syn4.572±.019.794±.006.804±.004.681±.031.672±.025.536±.025
Syn5.665±.019.796±.005.797±.006.765±.003.719±.011.680±.040
Syn6.709±.018.870±.005.886±.004.779±.027.835±.017.757±.036
", + "type": "table", + "image_path": "dbadf4765c63a4956b3903cffa08ea6abd78c43ecb5ff0560682c8714bd5a452.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 81, + 507, + 149.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 149.33333333333331, + 507, + 217.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 217.66666666666663, + 507, + 285.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 294, + 506, + 327 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 293, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 505, + 307 + ], + "score": 1.0, + "content": "Table 3: Prediction performance comparison with and without feature selection methods (L2X,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 304, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 104, + 304, + 506, + 318 + ], + "score": 1.0, + "content": "LASSO, Tree, INVASE, and Global). Global is using ground-truth globally relevant features for", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 316, + 158, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 158, + 327 + ], + "score": 1.0, + "content": "each dataset", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 108, + 349, + 504, + 371 + ], + "lines": [], + "index": 6.5, + "bbox_fs": [ + 106, + 349, + 504, + 373 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 385, + 279, + 396 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 280, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 280, + 397 + ], + "score": 1.0, + "content": "4.2 REAL-WORLD DATA EXPERIMENTS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "title", + "bbox": [ + 108, + 406, + 225, + 417 + ], + "lines": [ + { + "bbox": [ + 106, + 406, + 226, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 226, + 418 + ], + "score": 1.0, + "content": "4.2.1 DATA DESCRIPTION", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 425, + 505, + 502 + ], + "lines": [ + { + "bbox": [ + 105, + 425, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 505, + 438 + ], + "score": 1.0, + "content": "In this section we use two real-world datasets to perform a series of further experiments. The first, the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 436, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 505, + 448 + ], + "score": 1.0, + "content": "Meta-Analysis Global Group in Chronic Heart Failure (MAGGIC) dataset [23], has 40,409 patients", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 446, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 461 + ], + "score": 1.0, + "content": "each with 31 measured features. The label is all-cause mortality. The second, the Prostate, Lung,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 457, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 505, + 470 + ], + "score": 1.0, + "content": "Colorectal and Ovarian (PLCO) Cancer Screening Trial in the US and the European Randomized", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 469, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 505, + 481 + ], + "score": 1.0, + "content": "Study of Screening for Prostate Cancer (ERSPC) dataset [8; 26] contains 38,001 each with 106", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 480, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 506, + 492 + ], + "score": 1.0, + "content": "measured features. The label in this dataset is mortality due to prostate cancer. We refer to this as", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 491, + 182, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 182, + 502 + ], + "score": 1.0, + "content": "the PLCO dataset.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 425, + 506, + 502 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 508, + 504, + 541 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 522 + ], + "score": 1.0, + "content": "The first experiment we carried out was to create semi-synthetic datasets by using the labelling", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 518, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 506, + 533 + ], + "score": 1.0, + "content": "procedures Syn1-6 from above but with the features now coming from real data (instead of being", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 530, + 417, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 417, + 543 + ], + "score": 1.0, + "content": "i.i.d. Gaussian). The results of this experiment can be found in the Appendix.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 506, + 506, + 543 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 554, + 412, + 565 + ], + "lines": [ + { + "bbox": [ + 105, + 552, + 414, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 414, + 567 + ], + "score": 1.0, + "content": "4.2.2 THE DISCOVERED FEATURE IMPORTANCE IN MAGGIC DATASET", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 572, + 505, + 628 + ], + "lines": [ + { + "bbox": [ + 105, + 572, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 586 + ], + "score": 1.0, + "content": "In this next experiment, we visualize the ability of INVASE to select features on an individualized", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 584, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 584, + 505, + 596 + ], + "score": 1.0, + "content": "level. Fig. 2(left) shows the selection probability (given by INVASE) of each feature for 20 randomly", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 594, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 608 + ], + "score": 1.0, + "content": "selected patients in the MAGGIC dataset. Fig. 2(right) shows the selection probability of each", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 606, + 504, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 504, + 618 + ], + "score": 1.0, + "content": "feature averaged over different binary splits of the data (i.e. when split into Male and Female). In", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 616, + 503, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 503, + 631 + ], + "score": 1.0, + "content": "Table 4, we also report the mean and variance of the number of selected features in each subgroup.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 572, + 505, + 631 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 633, + 503, + 656 + ], + "lines": [ + { + "bbox": [ + 106, + 632, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 505, + 646 + ], + "score": 1.0, + "content": "As can be seen, INVASE discovers significantly different features for both individuals and for dif-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 644, + 234, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 234, + 657 + ], + "score": 1.0, + "content": "ferent subgroups of the dataset.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 106, + 632, + 505, + 657 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 669, + 449, + 680 + ], + "lines": [ + { + "bbox": [ + 106, + 668, + 451, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 451, + 681 + ], + "score": 1.0, + "content": "4.2.3 RESULTS: PREDICTION USING REAL DATA VARIABLES WITH REAL LABEL", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "score": 1.0, + "content": "Evaluating the performance of feature selection methods on real data is difficult, since ground truth", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 699, + 505, + 710 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 710 + ], + "score": 1.0, + "content": "relevance is often not known. We therefore cannot use TPR and FDR to evaluate the performance", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 710, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 504, + 722 + ], + "score": 1.0, + "content": "on real data. In our final experiment, therefore, we instead focus on prediction performance exactly", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 721, + 397, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 397, + 732 + ], + "score": 1.0, + "content": "as in 4.1.3 (except now both the features and label come from real data).", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 688, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 121, + 81, + 502, + 262 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 121, + 81, + 502, + 262 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 121, + 81, + 502, + 262 + ], + "spans": [ + { + "bbox": [ + 121, + 81, + 502, + 262 + ], + "score": 0.968, + "type": "image", + "image_path": "d1951e735951992fdbed0a447435470530b7108fcf6a6da51afe008e69ba6a2e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 121, + 81, + 502, + 141.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 121, + 141.33333333333334, + 502, + 201.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 121, + 201.66666666666669, + 502, + 262.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 273, + 506, + 297 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 273, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 505, + 286 + ], + "score": 1.0, + "content": "Figure 2: Left: The feature importance for each of 20 randomly selected patients in the MAGGIC", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 284, + 501, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 501, + 297 + ], + "score": 1.0, + "content": "dataset. Right: The average feature importance for different binary splits in the MAGGIC dataset.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "table", + "bbox": [ + 107, + 318, + 509, + 384 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 107, + 318, + 509, + 384 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 318, + 509, + 384 + ], + "spans": [ + { + "bbox": [ + 107, + 318, + 509, + 384 + ], + "score": 0.972, + "html": "
OverallMaleDiabetesHypertensionSmokerHeart Failure
42.5±18.443.5±10.7 53.2±10.846.6±9.3 41.0±12.151.8±11.1
FemaleNon-diabetesNon-hypertension Non-smokerNo Heart Failure
40.8±15.639.3±8.040.0±9.343.2±7.039.6±6.9
", + "type": "table", + "image_path": "fee71c8a5e21b10c90ffcf8fa5b75f97f6f7c14483bd6e82625e1a1d12f99fa7.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 107, + 318, + 509, + 340.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 107, + 340.0, + 509, + 362.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 107, + 362.0, + 509, + 384.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 392, + 503, + 415 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 391, + 504, + 404 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 504, + 404 + ], + "score": 1.0, + "content": "Table 4: Selection probability of overall and patient subgroups by INVASE in MAGGIC dataset.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 402, + 165, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 134, + 416 + ], + "score": 1.0, + "content": "(Mean", + "type": "text" + }, + { + "bbox": [ + 134, + 404, + 145, + 414 + ], + "score": 0.25, + "content": "\\pm", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 402, + 165, + 416 + ], + "score": 1.0, + "content": "Std)", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + } + ], + "index": 7.25 + }, + { + "type": "table", + "bbox": [ + 126, + 436, + 486, + 543 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 126, + 436, + 486, + 543 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 126, + 436, + 486, + 543 + ], + "spans": [ + { + "bbox": [ + 126, + 436, + 486, + 543 + ], + "score": 0.982, + "html": "
DatasetsMetricsAUROC AUPRCAUROC AUPRC
Labels3year5year
MAGGICINVASEWithout INVASE.722±.005.720±.006.655±.010.639±.009.740±.005 .867±.006.730±.006 .855±.004
Labels5year10 year
PLCOINVASEWithout INVASE.637±.007.629±.008.329±.013.324±.011.673±.007.657±.006.506±.006.485±.008
", + "type": "table", + "image_path": "c993b7690edd123a9cd7b97a955966231a26dda017bf364afcb5ab3ee1abf035.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 126, + 436, + 486, + 471.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 126, + 471.6666666666667, + 486, + 507.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 126, + 507.33333333333337, + 486, + 543.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 172, + 551, + 438, + 563 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 172, + 551, + 438, + 564 + ], + "spans": [ + { + "bbox": [ + 172, + 551, + 438, + 564 + ], + "score": 1.0, + "content": "Table 5: Prediction performance for MAGGIC and PLCO dataset.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + } + ], + "index": 12.0 + }, + { + "type": "text", + "bbox": [ + 107, + 594, + 505, + 617 + ], + "lines": [ + { + "bbox": [ + 106, + 594, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 608 + ], + "score": 1.0, + "content": "As can be seen in Table 5, INVASE consistently improves prediction performance in each of the two", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 605, + 304, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 304, + 618 + ], + "score": 1.0, + "content": "settings (different time horizons) in each dataset.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "title", + "bbox": [ + 108, + 645, + 205, + 658 + ], + "lines": [ + { + "bbox": [ + 105, + 643, + 207, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 207, + 659 + ], + "score": 1.0, + "content": "5 FUTURE WORK", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "While this paper has focused on discovering relevant features in the static setting, this could also", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "be extended to apply in the temporal setting. One such avenue of exploration for this would be", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "to replace each of the networks with an RNN. Particular care will need to be taken in defining the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "problem, though; do we treat each stream as a feature or each time point of each stream? We leave", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 720, + 238, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 238, + 732 + ], + "score": 1.0, + "content": "this investigation to future work.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 301, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 121, + 81, + 502, + 262 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 121, + 81, + 502, + 262 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 121, + 81, + 502, + 262 + ], + "spans": [ + { + "bbox": [ + 121, + 81, + 502, + 262 + ], + "score": 0.968, + "type": "image", + "image_path": "d1951e735951992fdbed0a447435470530b7108fcf6a6da51afe008e69ba6a2e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 121, + 81, + 502, + 141.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 121, + 141.33333333333334, + 502, + 201.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 121, + 201.66666666666669, + 502, + 262.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 273, + 506, + 297 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 273, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 505, + 286 + ], + "score": 1.0, + "content": "Figure 2: Left: The feature importance for each of 20 randomly selected patients in the MAGGIC", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 284, + 501, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 501, + 297 + ], + "score": 1.0, + "content": "dataset. Right: The average feature importance for different binary splits in the MAGGIC dataset.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "table", + "bbox": [ + 107, + 318, + 509, + 384 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 107, + 318, + 509, + 384 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 318, + 509, + 384 + ], + "spans": [ + { + "bbox": [ + 107, + 318, + 509, + 384 + ], + "score": 0.972, + "html": "
OverallMaleDiabetesHypertensionSmokerHeart Failure
42.5±18.443.5±10.7 53.2±10.846.6±9.3 41.0±12.151.8±11.1
FemaleNon-diabetesNon-hypertension Non-smokerNo Heart Failure
40.8±15.639.3±8.040.0±9.343.2±7.039.6±6.9
", + "type": "table", + "image_path": "fee71c8a5e21b10c90ffcf8fa5b75f97f6f7c14483bd6e82625e1a1d12f99fa7.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 107, + 318, + 509, + 340.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 107, + 340.0, + 509, + 362.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 107, + 362.0, + 509, + 384.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 392, + 503, + 415 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 391, + 504, + 404 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 504, + 404 + ], + "score": 1.0, + "content": "Table 4: Selection probability of overall and patient subgroups by INVASE in MAGGIC dataset.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 402, + 165, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 134, + 416 + ], + "score": 1.0, + "content": "(Mean", + "type": "text" + }, + { + "bbox": [ + 134, + 404, + 145, + 414 + ], + "score": 0.25, + "content": "\\pm", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 402, + 165, + 416 + ], + "score": 1.0, + "content": "Std)", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + } + ], + "index": 7.25 + }, + { + "type": "table", + "bbox": [ + 126, + 436, + 486, + 543 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 126, + 436, + 486, + 543 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 126, + 436, + 486, + 543 + ], + "spans": [ + { + "bbox": [ + 126, + 436, + 486, + 543 + ], + "score": 0.982, + "html": "
DatasetsMetricsAUROC AUPRCAUROC AUPRC
Labels3year5year
MAGGICINVASEWithout INVASE.722±.005.720±.006.655±.010.639±.009.740±.005 .867±.006.730±.006 .855±.004
Labels5year10 year
PLCOINVASEWithout INVASE.637±.007.629±.008.329±.013.324±.011.673±.007.657±.006.506±.006.485±.008
", + "type": "table", + "image_path": "c993b7690edd123a9cd7b97a955966231a26dda017bf364afcb5ab3ee1abf035.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 126, + 436, + 486, + 471.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 126, + 471.6666666666667, + 486, + 507.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 126, + 507.33333333333337, + 486, + 543.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 172, + 551, + 438, + 563 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 172, + 551, + 438, + 564 + ], + "spans": [ + { + "bbox": [ + 172, + 551, + 438, + 564 + ], + "score": 1.0, + "content": "Table 5: Prediction performance for MAGGIC and PLCO dataset.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + } + ], + "index": 12.0 + }, + { + "type": "text", + "bbox": [ + 107, + 594, + 505, + 617 + ], + "lines": [ + { + "bbox": [ + 106, + 594, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 608 + ], + "score": 1.0, + "content": "As can be seen in Table 5, INVASE consistently improves prediction performance in each of the two", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 605, + 304, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 304, + 618 + ], + "score": 1.0, + "content": "settings (different time horizons) in each dataset.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 594, + 505, + 618 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 645, + 205, + 658 + ], + "lines": [ + { + "bbox": [ + 105, + 643, + 207, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 207, + 659 + ], + "score": 1.0, + "content": "5 FUTURE WORK", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "While this paper has focused on discovering relevant features in the static setting, this could also", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "be extended to apply in the temporal setting. One such avenue of exploration for this would be", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "to replace each of the networks with an RNN. Particular care will need to be taken in defining the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "problem, though; do we treat each stream as a feature or each time point of each stream? We leave", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 720, + 238, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 238, + 732 + ], + "score": 1.0, + "content": "this investigation to future work.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 677, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 219, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 221, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 221, + 96 + ], + "score": 1.0, + "content": "ACKNOWLEDGEMENT", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 505, + 140 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 505, + 119 + ], + "score": 1.0, + "content": "The authors would like to thank the reviewers for their helpful comments. The research presented", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 118, + 505, + 130 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 505, + 130 + ], + "score": 1.0, + "content": "in this paper was supported by the Office of Naval Research (ONR) and the NSF (Grant number:", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 321, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 321, + 141 + ], + "score": 1.0, + "content": "ECCS1462245, ECCS1533983, and ECCS1407712).", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 153, + 506, + 736 + ], + "lines": [ + { + "bbox": [ + 106, + 156, + 176, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 156, + 176, + 171 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 109, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 109, + 176, + 506, + 189 + ], + "score": 1.0, + "content": "[1] Sebastian Bach, Alexander Binder, Gregoire Montavon, Frederick Klauschen, Klaus-Robert ´", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 126, + 186, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 126, + 186, + 505, + 202 + ], + "score": 1.0, + "content": "Muller, and Wojciech Samek. On pixel-wise explanations for non-linear classifier decisions by ¨", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 127, + 198, + 400, + 212 + ], + "spans": [ + { + "bbox": [ + 127, + 198, + 400, + 212 + ], + "score": 1.0, + "content": "layer-wise relevance propagation. PloS one, 10(7):e0130140, 2015.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 109, + 217, + 507, + 233 + ], + "spans": [ + { + "bbox": [ + 109, + 217, + 507, + 233 + ], + "score": 1.0, + "content": "[2] David Baehrens, Timon Schroeter, Stefan Harmeling, Motoaki Kawanabe, Katja Hansen, and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 125, + 227, + 507, + 244 + ], + "spans": [ + { + "bbox": [ + 125, + 227, + 507, + 244 + ], + "score": 1.0, + "content": "Klaus-Robert MA˜ zller. How to explain individual classification decisions. ˇ Journal of Machine", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 127, + 241, + 316, + 253 + ], + "spans": [ + { + "bbox": [ + 127, + 241, + 316, + 253 + ], + "score": 1.0, + "content": "Learning Research, 11(Jun):1803–1831, 2010.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 110, + 259, + 506, + 275 + ], + "spans": [ + { + "bbox": [ + 110, + 259, + 506, + 275 + ], + "score": 1.0, + "content": "[3] Emmanuel Candes, Yingying Fan, Lucas Janson, and Jinchi Lv. Panning for gold: `", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 126, + 270, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 126, + 270, + 506, + 286 + ], + "score": 1.0, + "content": "Model-free knockoffs for high-dimensional controlled variable selection. arXiv preprint", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 126, + 282, + 232, + 295 + ], + "spans": [ + { + "bbox": [ + 126, + 282, + 232, + 295 + ], + "score": 1.0, + "content": "arXiv:1610.02351, 2016.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 109, + 301, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 109, + 301, + 506, + 316 + ], + "score": 1.0, + "content": "[4] Jianbo Chen, Le Song, Martin J Wainwright, and Michael I Jordan. Learning to explain: An", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 126, + 313, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 126, + 313, + 506, + 327 + ], + "score": 1.0, + "content": "information-theoretic perspective on model interpretation. arXiv preprint arXiv:1802.07814,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 127, + 324, + 154, + 337 + ], + "spans": [ + { + "bbox": [ + 127, + 324, + 154, + 337 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 110, + 344, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 110, + 344, + 506, + 358 + ], + "score": 1.0, + "content": "[5] Anupam Datta, Shayak Sen, and Yair Zick. Algorithmic transparency via quantitative input", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 126, + 354, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 126, + 354, + 506, + 371 + ], + "score": 1.0, + "content": "influence: Theory and experiments with learning systems. In Security and Privacy (SP), 2016", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 126, + 366, + 323, + 381 + ], + "spans": [ + { + "bbox": [ + 126, + 366, + 323, + 381 + ], + "score": 1.0, + "content": "IEEE Symposium on, pp. 598–617. IEEE, 2016.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 110, + 386, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 110, + 386, + 505, + 400 + ], + "score": 1.0, + "content": "[6] Jeremy Elson, John JD Douceur, Jon Howell, and Jared Saul. Asirra: a captcha that exploits", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 127, + 397, + 339, + 411 + ], + "spans": [ + { + "bbox": [ + 127, + 397, + 339, + 411 + ], + "score": 1.0, + "content": "interest-aligned manual image categorization. 2007.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 110, + 417, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 110, + 417, + 506, + 431 + ], + "score": 1.0, + "content": "[7] Pierre Geurts, Damien Ernst, and Louis Wehenkel. Extremely randomized trees. Machine", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 127, + 428, + 242, + 442 + ], + "spans": [ + { + "bbox": [ + 127, + 428, + 242, + 442 + ], + "score": 1.0, + "content": "learning, 63(1):3–42, 2006.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 109, + 447, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 109, + 447, + 506, + 464 + ], + "score": 1.0, + "content": "[8] John K Gohagan, Philip C Prorok, Richard B Hayes, and Barnett-S Kramer. The prostate, lung,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 126, + 458, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 126, + 458, + 506, + 475 + ], + "score": 1.0, + "content": "colorectal and ovarian (plco) cancer screening trial of the national cancer institute: history,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 126, + 471, + 432, + 483 + ], + "spans": [ + { + "bbox": [ + 126, + 471, + 432, + 483 + ], + "score": 1.0, + "content": "organization, and status. Controlled clinical trials, 21(6):251S–272S, 2000.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 110, + 491, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 110, + 491, + 505, + 505 + ], + "score": 1.0, + "content": "[9] Ian Goodfellow, Yoshua Bengio, and Aaron Courville. Deep Learning. MIT Press, 2016.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 126, + 499, + 320, + 518 + ], + "spans": [ + { + "bbox": [ + 126, + 499, + 320, + 518 + ], + "score": 1.0, + "content": "http://www.deeplearningbook.org.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 521, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 506, + 535 + ], + "score": 1.0, + "content": "[10] Isabelle Guyon and Andre Elisseeff. An introduction to variable and feature selection. ´ Journal", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 126, + 533, + 356, + 546 + ], + "spans": [ + { + "bbox": [ + 126, + 533, + 356, + 546 + ], + "score": 1.0, + "content": "of machine learning research, 3(Mar):1157–1182, 2003.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 552, + 465, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 465, + 565 + ], + "score": 1.0, + "content": "[11] Mark Andrew Hall. Correlation-based feature selection for machine learning. 1999.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 573, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 506, + 587 + ], + "score": 1.0, + "content": "[12] Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 126, + 583, + 436, + 597 + ], + "spans": [ + { + "bbox": [ + 126, + 583, + 436, + 597 + ], + "score": 1.0, + "content": "by reducing internal covariate shift. arXiv preprint arXiv:1502.03167, 2015.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "[13] Eric Jang, Shixiang Gu, and Ben Poole. Categorical reparameterization with gumbel-softmax.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 127, + 614, + 290, + 629 + ], + "spans": [ + { + "bbox": [ + 127, + 614, + 290, + 629 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1611.01144, 2016.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 635, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 506, + 649 + ], + "score": 1.0, + "content": "[14] David P Kao, James D Lewsey, Inder S Anand, Barry M Massie, Michael R Zile, Peter E", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 127, + 645, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 127, + 645, + 505, + 660 + ], + "score": 1.0, + "content": "Carson, Robert S McKelvie, Michel Komajda, John JV McMurray, and JoAnn Lindenfeld.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 127, + 657, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 127, + 657, + 505, + 671 + ], + "score": 1.0, + "content": "Characterization of subgroups of heart failure patients with preserved ejection fraction with", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 127, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 127, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "possible implications for prognosis and treatment response. European journal of heart failure,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 129, + 679, + 217, + 691 + ], + "spans": [ + { + "bbox": [ + 129, + 679, + 217, + 691 + ], + "score": 1.0, + "content": "17(9):925–935, 2015.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 697, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 506, + 713 + ], + "score": 1.0, + "content": "[15] Pieter-Jan Kindermans, Kristof Schutt, Klaus-Robert M ¨ uller, and Sven D ¨ ahne. Investigating ¨", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 126, + 709, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 126, + 709, + 506, + 724 + ], + "score": 1.0, + "content": "the influence of noise and distractors on the interpretation of neural networks. arXiv preprint", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 127, + 721, + 231, + 733 + ], + "spans": [ + { + "bbox": [ + 127, + 721, + 231, + 733 + ], + "score": 1.0, + "content": "arXiv:1611.07270, 2016.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 23.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 219, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 221, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 221, + 96 + ], + "score": 1.0, + "content": "ACKNOWLEDGEMENT", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 505, + 140 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 505, + 119 + ], + "score": 1.0, + "content": "The authors would like to thank the reviewers for their helpful comments. The research presented", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 118, + 505, + 130 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 505, + 130 + ], + "score": 1.0, + "content": "in this paper was supported by the Office of Naval Research (ONR) and the NSF (Grant number:", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 321, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 321, + 141 + ], + "score": 1.0, + "content": "ECCS1462245, ECCS1533983, and ECCS1407712).", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 106, + 505, + 141 + ] + }, + { + "type": "list", + "bbox": [ + 106, + 153, + 506, + 736 + ], + "lines": [ + { + "bbox": [ + 106, + 156, + 176, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 156, + 176, + 171 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 109, + 176, + 506, + 189 + ], + "score": 1.0, + "content": "[1] Sebastian Bach, Alexander Binder, Gregoire Montavon, Frederick Klauschen, Klaus-Robert ´", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 186, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 126, + 186, + 505, + 202 + ], + "score": 1.0, + "content": "Muller, and Wojciech Samek. On pixel-wise explanations for non-linear classifier decisions by ¨", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 127, + 198, + 400, + 212 + ], + "spans": [ + { + "bbox": [ + 127, + 198, + 400, + 212 + ], + "score": 1.0, + "content": "layer-wise relevance propagation. PloS one, 10(7):e0130140, 2015.", + "type": "text" + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 217, + 507, + 233 + ], + "spans": [ + { + "bbox": [ + 109, + 217, + 507, + 233 + ], + "score": 1.0, + "content": "[2] David Baehrens, Timon Schroeter, Stefan Harmeling, Motoaki Kawanabe, Katja Hansen, and", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 227, + 507, + 244 + ], + "spans": [ + { + "bbox": [ + 125, + 227, + 507, + 244 + ], + "score": 1.0, + "content": "Klaus-Robert MA˜ zller. How to explain individual classification decisions. ˇ Journal of Machine", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 127, + 241, + 316, + 253 + ], + "spans": [ + { + "bbox": [ + 127, + 241, + 316, + 253 + ], + "score": 1.0, + "content": "Learning Research, 11(Jun):1803–1831, 2010.", + "type": "text" + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 259, + 506, + 275 + ], + "spans": [ + { + "bbox": [ + 110, + 259, + 506, + 275 + ], + "score": 1.0, + "content": "[3] Emmanuel Candes, Yingying Fan, Lucas Janson, and Jinchi Lv. Panning for gold: `", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 270, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 126, + 270, + 506, + 286 + ], + "score": 1.0, + "content": "Model-free knockoffs for high-dimensional controlled variable selection. arXiv preprint", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 126, + 282, + 232, + 295 + ], + "spans": [ + { + "bbox": [ + 126, + 282, + 232, + 295 + ], + "score": 1.0, + "content": "arXiv:1610.02351, 2016.", + "type": "text" + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 301, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 109, + 301, + 506, + 316 + ], + "score": 1.0, + "content": "[4] Jianbo Chen, Le Song, Martin J Wainwright, and Michael I Jordan. Learning to explain: An", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 313, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 126, + 313, + 506, + 327 + ], + "score": 1.0, + "content": "information-theoretic perspective on model interpretation. arXiv preprint arXiv:1802.07814,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 127, + 324, + 154, + 337 + ], + "spans": [ + { + "bbox": [ + 127, + 324, + 154, + 337 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 344, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 110, + 344, + 506, + 358 + ], + "score": 1.0, + "content": "[5] Anupam Datta, Shayak Sen, and Yair Zick. Algorithmic transparency via quantitative input", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 354, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 126, + 354, + 506, + 371 + ], + "score": 1.0, + "content": "influence: Theory and experiments with learning systems. In Security and Privacy (SP), 2016", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 126, + 366, + 323, + 381 + ], + "spans": [ + { + "bbox": [ + 126, + 366, + 323, + 381 + ], + "score": 1.0, + "content": "IEEE Symposium on, pp. 598–617. IEEE, 2016.", + "type": "text" + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 386, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 110, + 386, + 505, + 400 + ], + "score": 1.0, + "content": "[6] Jeremy Elson, John JD Douceur, Jon Howell, and Jared Saul. Asirra: a captcha that exploits", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 397, + 339, + 411 + ], + "spans": [ + { + "bbox": [ + 127, + 397, + 339, + 411 + ], + "score": 1.0, + "content": "interest-aligned manual image categorization. 2007.", + "type": "text" + } + ], + "index": 21, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 417, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 110, + 417, + 506, + 431 + ], + "score": 1.0, + "content": "[7] Pierre Geurts, Damien Ernst, and Louis Wehenkel. Extremely randomized trees. Machine", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 428, + 242, + 442 + ], + "spans": [ + { + "bbox": [ + 127, + 428, + 242, + 442 + ], + "score": 1.0, + "content": "learning, 63(1):3–42, 2006.", + "type": "text" + } + ], + "index": 23, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 447, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 109, + 447, + 506, + 464 + ], + "score": 1.0, + "content": "[8] John K Gohagan, Philip C Prorok, Richard B Hayes, and Barnett-S Kramer. The prostate, lung,", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 458, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 126, + 458, + 506, + 475 + ], + "score": 1.0, + "content": "colorectal and ovarian (plco) cancer screening trial of the national cancer institute: history,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 126, + 471, + 432, + 483 + ], + "spans": [ + { + "bbox": [ + 126, + 471, + 432, + 483 + ], + "score": 1.0, + "content": "organization, and status. Controlled clinical trials, 21(6):251S–272S, 2000.", + "type": "text" + } + ], + "index": 26, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 491, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 110, + 491, + 505, + 505 + ], + "score": 1.0, + "content": "[9] Ian Goodfellow, Yoshua Bengio, and Aaron Courville. Deep Learning. MIT Press, 2016.", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 499, + 320, + 518 + ], + "spans": [ + { + "bbox": [ + 126, + 499, + 320, + 518 + ], + "score": 1.0, + "content": "http://www.deeplearningbook.org.", + "type": "text" + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 521, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 506, + 535 + ], + "score": 1.0, + "content": "[10] Isabelle Guyon and Andre Elisseeff. An introduction to variable and feature selection. ´ Journal", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 533, + 356, + 546 + ], + "spans": [ + { + "bbox": [ + 126, + 533, + 356, + 546 + ], + "score": 1.0, + "content": "of machine learning research, 3(Mar):1157–1182, 2003.", + "type": "text" + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 552, + 465, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 465, + 565 + ], + "score": 1.0, + "content": "[11] Mark Andrew Hall. Correlation-based feature selection for machine learning. 1999.", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 573, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 506, + 587 + ], + "score": 1.0, + "content": "[12] Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 583, + 436, + 597 + ], + "spans": [ + { + "bbox": [ + 126, + 583, + 436, + 597 + ], + "score": 1.0, + "content": "by reducing internal covariate shift. arXiv preprint arXiv:1502.03167, 2015.", + "type": "text" + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "[13] Eric Jang, Shixiang Gu, and Ben Poole. Categorical reparameterization with gumbel-softmax.", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 614, + 290, + 629 + ], + "spans": [ + { + "bbox": [ + 127, + 614, + 290, + 629 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1611.01144, 2016.", + "type": "text" + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 635, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 506, + 649 + ], + "score": 1.0, + "content": "[14] David P Kao, James D Lewsey, Inder S Anand, Barry M Massie, Michael R Zile, Peter E", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 645, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 127, + 645, + 505, + 660 + ], + "score": 1.0, + "content": "Carson, Robert S McKelvie, Michel Komajda, John JV McMurray, and JoAnn Lindenfeld.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 127, + 657, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 127, + 657, + 505, + 671 + ], + "score": 1.0, + "content": "Characterization of subgroups of heart failure patients with preserved ejection fraction with", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 127, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 127, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "possible implications for prognosis and treatment response. European journal of heart failure,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 129, + 679, + 217, + 691 + ], + "spans": [ + { + "bbox": [ + 129, + 679, + 217, + 691 + ], + "score": 1.0, + "content": "17(9):925–935, 2015.", + "type": "text" + } + ], + "index": 40, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 697, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 506, + 713 + ], + "score": 1.0, + "content": "[15] Pieter-Jan Kindermans, Kristof Schutt, Klaus-Robert M ¨ uller, and Sven D ¨ ahne. Investigating ¨", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 709, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 126, + 709, + 506, + 724 + ], + "score": 1.0, + "content": "the influence of noise and distractors on the interpretation of neural networks. arXiv preprint", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 127, + 721, + 231, + 733 + ], + "spans": [ + { + "bbox": [ + 127, + 721, + 231, + 733 + ], + "score": 1.0, + "content": "arXiv:1611.07270, 2016.", + "type": "text" + } + ], + "index": 43, + "is_list_end_line": true + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 156, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 504, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 504, + 95 + ], + "score": 1.0, + "content": "[16] Kenji Kira and Larry A Rendell. A practical approach to feature selection. In Machine Learn-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 127, + 93, + 336, + 106 + ], + "spans": [ + { + "bbox": [ + 127, + 93, + 336, + 106 + ], + "score": 1.0, + "content": "ing Proceedings 1992, pp. 249–256. Elsevier, 1992.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 111, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 111, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 505, + 126 + ], + "score": 1.0, + "content": "[17] Yaojin Lin, Qinghua Hu, Jinghua Liu, and Jie Duan. Multi-label feature selection based on", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 127, + 124, + 435, + 136 + ], + "spans": [ + { + "bbox": [ + 127, + 124, + 435, + 136 + ], + "score": 1.0, + "content": "max-dependency and min-redundancy. Neurocomputing, 168:92–103, 2015.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 142, + 504, + 165 + ], + "lines": [ + { + "bbox": [ + 106, + 142, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 106, + 142, + 505, + 155 + ], + "score": 1.0, + "content": "[18] Scott M Lundberg and Su-In Lee. A unified approach to interpreting model predictions. In", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 127, + 153, + 432, + 166 + ], + "spans": [ + { + "bbox": [ + 127, + 153, + 432, + 166 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, pp. 4765–4774, 2017.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 171, + 504, + 195 + ], + "lines": [ + { + "bbox": [ + 105, + 172, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 505, + 184 + ], + "score": 1.0, + "content": "[19] Scott M Lundberg, Gabriel G Erion, and Su-In Lee. Consistent individualized feature attribu-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 127, + 183, + 387, + 195 + ], + "spans": [ + { + "bbox": [ + 127, + 183, + 387, + 195 + ], + "score": 1.0, + "content": "tion for tree ensembles. arXiv preprint arXiv:1802.03888, 2018.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 108, + 201, + 505, + 235 + ], + "lines": [ + { + "bbox": [ + 106, + 201, + 505, + 215 + ], + "spans": [ + { + "bbox": [ + 106, + 201, + 505, + 215 + ], + "score": 1.0, + "content": "[20] Omkar M Parkhi, Andrea Vedaldi, Andrew Zisserman, and CV Jawahar. Cats and dogs. In", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 127, + 213, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 127, + 213, + 505, + 226 + ], + "score": 1.0, + "content": "Computer Vision and Pattern Recognition (CVPR), 2012 IEEE Conference on, pp. 3498–3505.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 127, + 222, + 180, + 236 + ], + "spans": [ + { + "bbox": [ + 127, + 222, + 180, + 236 + ], + "score": 1.0, + "content": "IEEE, 2012.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 108, + 242, + 503, + 277 + ], + "lines": [ + { + "bbox": [ + 105, + 242, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 256 + ], + "score": 1.0, + "content": "[21] Hanchuan Peng, Fuhui Long, and Chris Ding. Feature selection based on mutual informa-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 127, + 254, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 127, + 254, + 505, + 267 + ], + "score": 1.0, + "content": "tion criteria of max-dependency, max-relevance, and min-redundancy. IEEE Transactions on", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 126, + 266, + 398, + 277 + ], + "spans": [ + { + "bbox": [ + 126, + 266, + 398, + 277 + ], + "score": 1.0, + "content": "pattern analysis and machine intelligence, 27(8):1226–1238, 2005.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 283, + 503, + 296 + ], + "lines": [ + { + "bbox": [ + 106, + 282, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 505, + 297 + ], + "score": 1.0, + "content": "[22] Jan Peters and Stefan Schaal. Natural actor-critic. Neurocomputing, 71(7-9):1180–1190, 2008.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 302, + 505, + 347 + ], + "lines": [ + { + "bbox": [ + 105, + 302, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 316 + ], + "score": 1.0, + "content": "[23] Stuart J Pocock, Cono A Ariti, John JV McMurray, Aldo Maggioni, Lars Køber, Iain B Squire,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 127, + 313, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 127, + 313, + 506, + 326 + ], + "score": 1.0, + "content": "Karl Swedberg, Joanna Dobson, Katrina K Poppe, Gillian A Whalley, et al. Predicting survival", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 126, + 324, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 126, + 324, + 506, + 338 + ], + "score": 1.0, + "content": "in heart failure: a risk score based on 39 372 patients from 30 studies. European heart journal,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 127, + 335, + 232, + 347 + ], + "spans": [ + { + "bbox": [ + 127, + 335, + 232, + 347 + ], + "score": 1.0, + "content": "34(19):1404–1413, 2012.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 354, + 503, + 388 + ], + "lines": [ + { + "bbox": [ + 105, + 353, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 505, + 368 + ], + "score": 1.0, + "content": "[24] Marco Tulio Ribeiro, Sameer Singh, and Carlos Guestrin. Why should i trust you?: Explaining", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 128, + 366, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 128, + 366, + 505, + 377 + ], + "score": 1.0, + "content": "the predictions of any classifier. In Proceedings of the 22nd ACM SIGKDD international", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 127, + 376, + 459, + 389 + ], + "spans": [ + { + "bbox": [ + 127, + 376, + 459, + 389 + ], + "score": 1.0, + "content": "conference on knowledge discovery and data mining, pp. 1135–1144. ACM, 2016.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 394, + 504, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 395, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 506, + 407 + ], + "score": 1.0, + "content": "[25] Olaf Ronneberger, Philipp Fischer, and Thomas Brox. U-net: Convolutional networks for", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 127, + 405, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 127, + 405, + 505, + 420 + ], + "score": 1.0, + "content": "biomedical image segmentation. In International Conference on Medical image computing", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 127, + 417, + 393, + 430 + ], + "spans": [ + { + "bbox": [ + 127, + 417, + 393, + 430 + ], + "score": 1.0, + "content": "and computer-assisted intervention, pp. 234–241. Springer, 2015.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 505, + 480 + ], + "lines": [ + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "score": 1.0, + "content": "[26] Fritz H Schroder, Jonas Hugosson, Monique J Roobol, Teuvo LJ Tammela, Stefano Ciatto, ¨", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 128, + 447, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 128, + 447, + 505, + 460 + ], + "score": 1.0, + "content": "Vera Nelen, Maciej Kwiatkowski, Marcos Lujan, Hans Lilja, Marco Zappa, et al. Screen-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 127, + 458, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 127, + 458, + 506, + 471 + ], + "score": 1.0, + "content": "ing and prostate-cancer mortality in a randomized european study. New England Journal of", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 127, + 469, + 279, + 481 + ], + "spans": [ + { + "bbox": [ + 127, + 469, + 279, + 481 + ], + "score": 1.0, + "content": "Medicine, 360(13):1320–1328, 2009.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 105, + 487, + 504, + 511 + ], + "lines": [ + { + "bbox": [ + 106, + 487, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 505, + 502 + ], + "score": 1.0, + "content": "[27] Avanti Shrikumar, Peyton Greenside, and Anshul Kundaje. Learning important features", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 127, + 498, + 466, + 511 + ], + "spans": [ + { + "bbox": [ + 127, + 498, + 466, + 511 + ], + "score": 1.0, + "content": "through propagating activation differences. arXiv preprint arXiv:1704.02685, 2017.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 105, + 517, + 504, + 541 + ], + "lines": [ + { + "bbox": [ + 106, + 518, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 531 + ], + "score": 1.0, + "content": "[28] Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 127, + 528, + 364, + 541 + ], + "spans": [ + { + "bbox": [ + 127, + 528, + 364, + 541 + ], + "score": 1.0, + "content": "image recognition. arXiv preprint arXiv:1409.1556, 2014.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 547, + 505, + 581 + ], + "lines": [ + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "[29] Karen Simonyan, Andrea Vedaldi, and Andrew Zisserman. Deep inside convolutional", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 127, + 558, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 127, + 558, + 505, + 572 + ], + "score": 1.0, + "content": "networks: Visualising image classification models and saliency maps. arXiv preprint", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 127, + 569, + 226, + 581 + ], + "spans": [ + { + "bbox": [ + 127, + 569, + 226, + 581 + ], + "score": 1.0, + "content": "arXiv:1312.6034, 2013.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 105, + 588, + 504, + 612 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 506, + 602 + ], + "score": 1.0, + "content": "[30] Erik Strumbelj and Igor Kononenko. Explaining prediction models and individual predictions ˇ", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 127, + 599, + 476, + 612 + ], + "spans": [ + { + "bbox": [ + 127, + 599, + 476, + 612 + ], + "score": 1.0, + "content": "with feature contributions. Knowledge and information systems, 41(3):647–665, 2014.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 106, + 618, + 505, + 641 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 505, + 631 + ], + "score": 1.0, + "content": "[31] Robert Tibshirani. Regression shrinkage and selection via the lasso. Journal of the Royal", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 127, + 629, + 393, + 641 + ], + "spans": [ + { + "bbox": [ + 127, + 629, + 393, + 641 + ], + "score": 1.0, + "content": "Statistical Society. Series B (Methodological), pp. 267–288, 1996.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 106, + 648, + 504, + 682 + ], + "lines": [ + { + "bbox": [ + 105, + 648, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 660 + ], + "score": 1.0, + "content": "[32] Jinsung Yoon, William R Zame, Amitava Banerjee, Martin Cadeiras, Ahmed M Alaa, and Mi-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 127, + 659, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 127, + 659, + 505, + 672 + ], + "score": 1.0, + "content": "haela van der Schaar. Personalized survival predictions via trees of predictors: An application", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 127, + 670, + 370, + 682 + ], + "spans": [ + { + "bbox": [ + 127, + 670, + 370, + 682 + ], + "score": 1.0, + "content": "to cardiac transplantation. PloS one, 13(3):e0194985, 2018.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 106, + 689, + 503, + 712 + ], + "lines": [ + { + "bbox": [ + 106, + 689, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 702 + ], + "score": 1.0, + "content": "[33] Jinsung Yoon, William R Zame, and Mihaela van der Schaar. Tops: Ensemble learning with", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 127, + 700, + 472, + 713 + ], + "spans": [ + { + "bbox": [ + 127, + 700, + 472, + 713 + ], + "score": 1.0, + "content": "trees of predictors. IEEE Transactions on Signal Processing, 66(8):2141–2152, 2018.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 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, + 504, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 504, + 95 + ], + "score": 1.0, + "content": "[16] Kenji Kira and Larry A Rendell. A practical approach to feature selection. In Machine Learn-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 127, + 93, + 336, + 106 + ], + "spans": [ + { + "bbox": [ + 127, + 93, + 336, + 106 + ], + "score": 1.0, + "content": "ing Proceedings 1992, pp. 249–256. Elsevier, 1992.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 504, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 111, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 111, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 505, + 126 + ], + "score": 1.0, + "content": "[17] Yaojin Lin, Qinghua Hu, Jinghua Liu, and Jie Duan. Multi-label feature selection based on", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 127, + 124, + 435, + 136 + ], + "spans": [ + { + "bbox": [ + 127, + 124, + 435, + 136 + ], + "score": 1.0, + "content": "max-dependency and min-redundancy. Neurocomputing, 168:92–103, 2015.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 111, + 505, + 136 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 142, + 504, + 165 + ], + "lines": [ + { + "bbox": [ + 106, + 142, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 106, + 142, + 505, + 155 + ], + "score": 1.0, + "content": "[18] Scott M Lundberg and Su-In Lee. A unified approach to interpreting model predictions. In", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 127, + 153, + 432, + 166 + ], + "spans": [ + { + "bbox": [ + 127, + 153, + 432, + 166 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, pp. 4765–4774, 2017.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 106, + 142, + 505, + 166 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 171, + 504, + 195 + ], + "lines": [ + { + "bbox": [ + 105, + 172, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 505, + 184 + ], + "score": 1.0, + "content": "[19] Scott M Lundberg, Gabriel G Erion, and Su-In Lee. Consistent individualized feature attribu-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 127, + 183, + 387, + 195 + ], + "spans": [ + { + "bbox": [ + 127, + 183, + 387, + 195 + ], + "score": 1.0, + "content": "tion for tree ensembles. arXiv preprint arXiv:1802.03888, 2018.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 172, + 505, + 195 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 201, + 505, + 235 + ], + "lines": [ + { + "bbox": [ + 106, + 201, + 505, + 215 + ], + "spans": [ + { + "bbox": [ + 106, + 201, + 505, + 215 + ], + "score": 1.0, + "content": "[20] Omkar M Parkhi, Andrea Vedaldi, Andrew Zisserman, and CV Jawahar. Cats and dogs. In", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 127, + 213, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 127, + 213, + 505, + 226 + ], + "score": 1.0, + "content": "Computer Vision and Pattern Recognition (CVPR), 2012 IEEE Conference on, pp. 3498–3505.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 127, + 222, + 180, + 236 + ], + "spans": [ + { + "bbox": [ + 127, + 222, + 180, + 236 + ], + "score": 1.0, + "content": "IEEE, 2012.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 106, + 201, + 505, + 236 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 242, + 503, + 277 + ], + "lines": [ + { + "bbox": [ + 105, + 242, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 256 + ], + "score": 1.0, + "content": "[21] Hanchuan Peng, Fuhui Long, and Chris Ding. Feature selection based on mutual informa-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 127, + 254, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 127, + 254, + 505, + 267 + ], + "score": 1.0, + "content": "tion criteria of max-dependency, max-relevance, and min-redundancy. IEEE Transactions on", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 126, + 266, + 398, + 277 + ], + "spans": [ + { + "bbox": [ + 126, + 266, + 398, + 277 + ], + "score": 1.0, + "content": "pattern analysis and machine intelligence, 27(8):1226–1238, 2005.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 242, + 505, + 277 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 283, + 503, + 296 + ], + "lines": [ + { + "bbox": [ + 106, + 282, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 505, + 297 + ], + "score": 1.0, + "content": "[22] Jan Peters and Stefan Schaal. Natural actor-critic. Neurocomputing, 71(7-9):1180–1190, 2008.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 106, + 282, + 505, + 297 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 302, + 505, + 347 + ], + "lines": [ + { + "bbox": [ + 105, + 302, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 316 + ], + "score": 1.0, + "content": "[23] Stuart J Pocock, Cono A Ariti, John JV McMurray, Aldo Maggioni, Lars Køber, Iain B Squire,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 127, + 313, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 127, + 313, + 506, + 326 + ], + "score": 1.0, + "content": "Karl Swedberg, Joanna Dobson, Katrina K Poppe, Gillian A Whalley, et al. Predicting survival", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 126, + 324, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 126, + 324, + 506, + 338 + ], + "score": 1.0, + "content": "in heart failure: a risk score based on 39 372 patients from 30 studies. European heart journal,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 127, + 335, + 232, + 347 + ], + "spans": [ + { + "bbox": [ + 127, + 335, + 232, + 347 + ], + "score": 1.0, + "content": "34(19):1404–1413, 2012.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 302, + 506, + 347 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 354, + 503, + 388 + ], + "lines": [ + { + "bbox": [ + 105, + 353, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 505, + 368 + ], + "score": 1.0, + "content": "[24] Marco Tulio Ribeiro, Sameer Singh, and Carlos Guestrin. Why should i trust you?: Explaining", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 128, + 366, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 128, + 366, + 505, + 377 + ], + "score": 1.0, + "content": "the predictions of any classifier. In Proceedings of the 22nd ACM SIGKDD international", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 127, + 376, + 459, + 389 + ], + "spans": [ + { + "bbox": [ + 127, + 376, + 459, + 389 + ], + "score": 1.0, + "content": "conference on knowledge discovery and data mining, pp. 1135–1144. ACM, 2016.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 353, + 505, + 389 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 394, + 504, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 395, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 506, + 407 + ], + "score": 1.0, + "content": "[25] Olaf Ronneberger, Philipp Fischer, and Thomas Brox. U-net: Convolutional networks for", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 127, + 405, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 127, + 405, + 505, + 420 + ], + "score": 1.0, + "content": "biomedical image segmentation. In International Conference on Medical image computing", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 127, + 417, + 393, + 430 + ], + "spans": [ + { + "bbox": [ + 127, + 417, + 393, + 430 + ], + "score": 1.0, + "content": "and computer-assisted intervention, pp. 234–241. Springer, 2015.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 395, + 506, + 430 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 505, + 480 + ], + "lines": [ + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "score": 1.0, + "content": "[26] Fritz H Schroder, Jonas Hugosson, Monique J Roobol, Teuvo LJ Tammela, Stefano Ciatto, ¨", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 128, + 447, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 128, + 447, + 505, + 460 + ], + "score": 1.0, + "content": "Vera Nelen, Maciej Kwiatkowski, Marcos Lujan, Hans Lilja, Marco Zappa, et al. Screen-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 127, + 458, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 127, + 458, + 506, + 471 + ], + "score": 1.0, + "content": "ing and prostate-cancer mortality in a randomized european study. New England Journal of", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 127, + 469, + 279, + 481 + ], + "spans": [ + { + "bbox": [ + 127, + 469, + 279, + 481 + ], + "score": 1.0, + "content": "Medicine, 360(13):1320–1328, 2009.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 435, + 506, + 481 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 487, + 504, + 511 + ], + "lines": [ + { + "bbox": [ + 106, + 487, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 505, + 502 + ], + "score": 1.0, + "content": "[27] Avanti Shrikumar, Peyton Greenside, and Anshul Kundaje. Learning important features", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 127, + 498, + 466, + 511 + ], + "spans": [ + { + "bbox": [ + 127, + 498, + 466, + 511 + ], + "score": 1.0, + "content": "through propagating activation differences. arXiv preprint arXiv:1704.02685, 2017.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 487, + 505, + 511 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 517, + 504, + 541 + ], + "lines": [ + { + "bbox": [ + 106, + 518, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 531 + ], + "score": 1.0, + "content": "[28] Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 127, + 528, + 364, + 541 + ], + "spans": [ + { + "bbox": [ + 127, + 528, + 364, + 541 + ], + "score": 1.0, + "content": "image recognition. arXiv preprint arXiv:1409.1556, 2014.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 106, + 518, + 505, + 541 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 547, + 505, + 581 + ], + "lines": [ + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "[29] Karen Simonyan, Andrea Vedaldi, and Andrew Zisserman. Deep inside convolutional", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 127, + 558, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 127, + 558, + 505, + 572 + ], + "score": 1.0, + "content": "networks: Visualising image classification models and saliency maps. arXiv preprint", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 127, + 569, + 226, + 581 + ], + "spans": [ + { + "bbox": [ + 127, + 569, + 226, + 581 + ], + "score": 1.0, + "content": "arXiv:1312.6034, 2013.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 547, + 505, + 581 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 588, + 504, + 612 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 506, + 602 + ], + "score": 1.0, + "content": "[30] Erik Strumbelj and Igor Kononenko. Explaining prediction models and individual predictions ˇ", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 127, + 599, + 476, + 612 + ], + "spans": [ + { + "bbox": [ + 127, + 599, + 476, + 612 + ], + "score": 1.0, + "content": "with feature contributions. Knowledge and information systems, 41(3):647–665, 2014.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 106, + 587, + 506, + 612 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 618, + 505, + 641 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 505, + 631 + ], + "score": 1.0, + "content": "[31] Robert Tibshirani. Regression shrinkage and selection via the lasso. Journal of the Royal", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 127, + 629, + 393, + 641 + ], + "spans": [ + { + "bbox": [ + 127, + 629, + 393, + 641 + ], + "score": 1.0, + "content": "Statistical Society. Series B (Methodological), pp. 267–288, 1996.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 106, + 618, + 505, + 641 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 648, + 504, + 682 + ], + "lines": [ + { + "bbox": [ + 105, + 648, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 660 + ], + "score": 1.0, + "content": "[32] Jinsung Yoon, William R Zame, Amitava Banerjee, Martin Cadeiras, Ahmed M Alaa, and Mi-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 127, + 659, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 127, + 659, + 505, + 672 + ], + "score": 1.0, + "content": "haela van der Schaar. Personalized survival predictions via trees of predictors: An application", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 127, + 670, + 370, + 682 + ], + "spans": [ + { + "bbox": [ + 127, + 670, + 370, + 682 + ], + "score": 1.0, + "content": "to cardiac transplantation. PloS one, 13(3):e0194985, 2018.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 648, + 505, + 682 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 689, + 503, + 712 + ], + "lines": [ + { + "bbox": [ + 106, + 689, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 702 + ], + "score": 1.0, + "content": "[33] Jinsung Yoon, William R Zame, and Mihaela van der Schaar. Tops: Ensemble learning with", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 127, + 700, + 472, + 713 + ], + "spans": [ + { + "bbox": [ + 127, + 700, + 472, + 713 + ], + "score": 1.0, + "content": "trees of predictors. IEEE Transactions on Signal Processing, 66(8):2141–2152, 2018.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 106, + 689, + 505, + 713 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 162, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 163, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 163, + 96 + ], + "score": 1.0, + "content": "APPENDIX", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 108, + 108, + 272, + 121 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 273, + 122 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 273, + 122 + ], + "score": 1.0, + "content": "SUMMARY OF RELATED WORKS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "table", + "bbox": [ + 106, + 137, + 505, + 452 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 137, + 505, + 452 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 137, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 505, + 452 + ], + "score": 0.984, + "html": "
Key ideasExperimentsshownGlobal/Instance-wiseModelagnostic#of relevantfeatures
SCFS[11]Max-dependency min-redundancycriteria with Pearson correlationsFeature selectionGlobalYesNot needed
MIFS[21]Max-dependency min-redundancycriteria with Mutual InformationFeature selectionGlobalYesNot needed
LASSO[31]Linear regressionwith l1-norm penaltyFeature selectionPredictionGlobalYesNot needed
Knock-off[3]Comparison between knock-offvariablesand real variablesFeature selectionHypothesis testGlobalYesNot needed
L2X[4]Mutual Information maximizationwith Gumbel-softmaxInterpretationInstance-wiseYesShould begiven
LIME[24]Locally linearapproximationInterpretationInstance-wiseYesShould begiven
Shapley[18]Shapley value estimationto quantify feature importanceFeature selectionInstance-wiseYesShould begiven
DeepLIFT[27]Decompose the output ofNN on a reference inputInterpretationInstance-wiseNoShould begiven
Saliency[29]Backpropagation from theoutput of the NN to the inputInterpretationInstance-wiseNoShould begiven
Tree SHAP[19]Shapley value estimationonly for tree-ensemble modelsInterpretationInstance-wiseNoShould begiven
Pixel-wise[1]Measuring the effects onthe output using input perturbationInterpretationInstance-wiseNoShould begiven
INVASE(Ours)Minimize KL divergence usingdeep NN influenced byactor-critic modelsFeature selectionInterpretationPredictionInstance-wiseYesNot needed
", + "type": "table", + "image_path": "15e82c75753c054395c31ef86d2ef4f55e2baa90abbfb3aba438ff60ab8acf41.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 106, + 137, + 505, + 242.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 106, + 242.0, + 505, + 347.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 106, + 347.0, + 505, + 452.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 131, + 460, + 480, + 472 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 131, + 460, + 480, + 473 + ], + "spans": [ + { + "bbox": [ + 131, + 460, + 480, + 473 + ], + "score": 1.0, + "content": "Table 6: Summary of the related works. (NN: Neural networks, KL: Kullback-Leibler)", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + } + ], + "index": 4.0 + }, + { + "type": "title", + "bbox": [ + 107, + 497, + 304, + 510 + ], + "lines": [ + { + "bbox": [ + 105, + 496, + 305, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 305, + 513 + ], + "score": 1.0, + "content": "EXTENDING INVASE TO REGRESSION", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 522, + 504, + 544 + ], + "lines": [ + { + "bbox": [ + 106, + 522, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 281, + 535 + ], + "score": 1.0, + "content": "To extend our model to the setting where", + "type": "text" + }, + { + "bbox": [ + 282, + 523, + 291, + 532 + ], + "score": 0.8, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 522, + 505, + 535 + ], + "score": 1.0, + "content": "is continuous (regression problem), we replace the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 533, + 327, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 327, + 546 + ], + "score": 1.0, + "content": "estimated loss with the reconstruction error as follows.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "interline_equation", + "bbox": [ + 247, + 548, + 362, + 564 + ], + "lines": [ + { + "bbox": [ + 247, + 548, + 362, + 564 + ], + "spans": [ + { + "bbox": [ + 247, + 548, + 362, + 564 + ], + "score": 0.91, + "content": "\\hat { l } ( { \\bf x } , { \\bf s } ) = - | | y - f ^ { \\phi } ( { \\bf x } , { \\bf s } ) | | _ { 2 }", + "type": "interline_equation", + "image_path": "f3ff08ea15fcc6651310ee5d6048638b79b883ff45b9d9ad802b4a86a9bacd2e.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 247, + 548, + 362, + 564 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 569, + 505, + 603 + ], + "lines": [ + { + "bbox": [ + 106, + 568, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 134, + 581 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 568, + 193, + 581 + ], + "score": 0.92, + "content": "f ^ { \\phi } : \\mathcal { X } \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 568, + 469, + 581 + ], + "score": 1.0, + "content": "is now the (continuous) predictor function trained to minimize the", + "type": "text" + }, + { + "bbox": [ + 469, + 570, + 479, + 580 + ], + "score": 0.86, + "content": "\\ell _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 568, + 505, + 581 + ], + "score": 1.0, + "content": "-norm", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 581, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 446, + 592 + ], + "score": 1.0, + "content": "between its outputs and the real labels. As noted in [9], when the distribution of", + "type": "text" + }, + { + "bbox": [ + 447, + 581, + 456, + 590 + ], + "score": 0.8, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 581, + 483, + 592 + ], + "score": 1.0, + "content": "given", + "type": "text" + }, + { + "bbox": [ + 484, + 581, + 494, + 591 + ], + "score": 0.59, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 581, + 505, + 592 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 591, + 435, + 604 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 211, + 604 + ], + "score": 1.0, + "content": "Gaussian, minimizing the", + "type": "text" + }, + { + "bbox": [ + 211, + 592, + 219, + 602 + ], + "score": 0.87, + "content": "l _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 591, + 435, + 604 + ], + "score": 1.0, + "content": "-norm is equivalent to minimizing the KL divergence.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "title", + "bbox": [ + 108, + 618, + 218, + 631 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 219, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 219, + 632 + ], + "score": 1.0, + "content": "DETAILS OF INVASE", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "In the experiments, the depth of the selector, predictor, and baseline networks is set to 3. The number", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 233, + 667 + ], + "score": 1.0, + "content": "of hidden nodes in each layer is", + "type": "text" + }, + { + "bbox": [ + 234, + 655, + 240, + 665 + ], + "score": 0.8, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 654, + 257, + 667 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 258, + 655, + 269, + 665 + ], + "score": 0.77, + "content": "2 d", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 654, + 505, + 667 + ], + "score": 1.0, + "content": ", respectively. We use either ReLu or SeLu as the activation", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "functions of each layer except for the output layer where we use the sigmoid activation function for", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 677, + 505, + 688 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 688 + ], + "score": 1.0, + "content": "the selector network and softmax activation function for the predictor and baseline networks. The", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "number of samples in each mini-batch is 1000 for the selector, predictor, and baseline networks.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 242, + 711 + ], + "score": 1.0, + "content": "We use cross-validation to select", + "type": "text" + }, + { + "bbox": [ + 242, + 699, + 250, + 709 + ], + "score": 0.78, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 698, + 281, + 711 + ], + "score": 1.0, + "content": "among", + "type": "text" + }, + { + "bbox": [ + 281, + 699, + 382, + 711 + ], + "score": 0.9, + "content": "\\{ 0 . 1 , 0 . 3 , 0 . 5 , 1 , 2 , 5 , 1 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 698, + 505, + 711 + ], + "score": 1.0, + "content": ". We use tensorflow to imple-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 710, + 504, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 504, + 721 + ], + "score": 1.0, + "content": "ment INVASE. The source-code can be found at https://github.com/iclr2018invase/", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 722, + 154, + 731 + ], + "spans": [ + { + "bbox": [ + 106, + 722, + 154, + 731 + ], + "score": 1.0, + "content": "INVASE/.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17.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 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 162, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 163, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 163, + 96 + ], + "score": 1.0, + "content": "APPENDIX", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 108, + 108, + 272, + 121 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 273, + 122 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 273, + 122 + ], + "score": 1.0, + "content": "SUMMARY OF RELATED WORKS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "table", + "bbox": [ + 106, + 137, + 505, + 452 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 137, + 505, + 452 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 137, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 505, + 452 + ], + "score": 0.984, + "html": "
Key ideasExperimentsshownGlobal/Instance-wiseModelagnostic#of relevantfeatures
SCFS[11]Max-dependency min-redundancycriteria with Pearson correlationsFeature selectionGlobalYesNot needed
MIFS[21]Max-dependency min-redundancycriteria with Mutual InformationFeature selectionGlobalYesNot needed
LASSO[31]Linear regressionwith l1-norm penaltyFeature selectionPredictionGlobalYesNot needed
Knock-off[3]Comparison between knock-offvariablesand real variablesFeature selectionHypothesis testGlobalYesNot needed
L2X[4]Mutual Information maximizationwith Gumbel-softmaxInterpretationInstance-wiseYesShould begiven
LIME[24]Locally linearapproximationInterpretationInstance-wiseYesShould begiven
Shapley[18]Shapley value estimationto quantify feature importanceFeature selectionInstance-wiseYesShould begiven
DeepLIFT[27]Decompose the output ofNN on a reference inputInterpretationInstance-wiseNoShould begiven
Saliency[29]Backpropagation from theoutput of the NN to the inputInterpretationInstance-wiseNoShould begiven
Tree SHAP[19]Shapley value estimationonly for tree-ensemble modelsInterpretationInstance-wiseNoShould begiven
Pixel-wise[1]Measuring the effects onthe output using input perturbationInterpretationInstance-wiseNoShould begiven
INVASE(Ours)Minimize KL divergence usingdeep NN influenced byactor-critic modelsFeature selectionInterpretationPredictionInstance-wiseYesNot needed
", + "type": "table", + "image_path": "15e82c75753c054395c31ef86d2ef4f55e2baa90abbfb3aba438ff60ab8acf41.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 106, + 137, + 505, + 242.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 106, + 242.0, + 505, + 347.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 106, + 347.0, + 505, + 452.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 131, + 460, + 480, + 472 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 131, + 460, + 480, + 473 + ], + "spans": [ + { + "bbox": [ + 131, + 460, + 480, + 473 + ], + "score": 1.0, + "content": "Table 6: Summary of the related works. (NN: Neural networks, KL: Kullback-Leibler)", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + } + ], + "index": 4.0 + }, + { + "type": "title", + "bbox": [ + 107, + 497, + 304, + 510 + ], + "lines": [ + { + "bbox": [ + 105, + 496, + 305, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 305, + 513 + ], + "score": 1.0, + "content": "EXTENDING INVASE TO REGRESSION", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 522, + 504, + 544 + ], + "lines": [ + { + "bbox": [ + 106, + 522, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 281, + 535 + ], + "score": 1.0, + "content": "To extend our model to the setting where", + "type": "text" + }, + { + "bbox": [ + 282, + 523, + 291, + 532 + ], + "score": 0.8, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 522, + 505, + 535 + ], + "score": 1.0, + "content": "is continuous (regression problem), we replace the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 533, + 327, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 327, + 546 + ], + "score": 1.0, + "content": "estimated loss with the reconstruction error as follows.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 522, + 505, + 546 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 247, + 548, + 362, + 564 + ], + "lines": [ + { + "bbox": [ + 247, + 548, + 362, + 564 + ], + "spans": [ + { + "bbox": [ + 247, + 548, + 362, + 564 + ], + "score": 0.91, + "content": "\\hat { l } ( { \\bf x } , { \\bf s } ) = - | | y - f ^ { \\phi } ( { \\bf x } , { \\bf s } ) | | _ { 2 }", + "type": "interline_equation", + "image_path": "f3ff08ea15fcc6651310ee5d6048638b79b883ff45b9d9ad802b4a86a9bacd2e.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 247, + 548, + 362, + 564 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 569, + 505, + 603 + ], + "lines": [ + { + "bbox": [ + 106, + 568, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 134, + 581 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 568, + 193, + 581 + ], + "score": 0.92, + "content": "f ^ { \\phi } : \\mathcal { X } \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 568, + 469, + 581 + ], + "score": 1.0, + "content": "is now the (continuous) predictor function trained to minimize the", + "type": "text" + }, + { + "bbox": [ + 469, + 570, + 479, + 580 + ], + "score": 0.86, + "content": "\\ell _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 568, + 505, + 581 + ], + "score": 1.0, + "content": "-norm", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 581, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 446, + 592 + ], + "score": 1.0, + "content": "between its outputs and the real labels. As noted in [9], when the distribution of", + "type": "text" + }, + { + "bbox": [ + 447, + 581, + 456, + 590 + ], + "score": 0.8, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 581, + 483, + 592 + ], + "score": 1.0, + "content": "given", + "type": "text" + }, + { + "bbox": [ + 484, + 581, + 494, + 591 + ], + "score": 0.59, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 581, + 505, + 592 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 591, + 435, + 604 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 211, + 604 + ], + "score": 1.0, + "content": "Gaussian, minimizing the", + "type": "text" + }, + { + "bbox": [ + 211, + 592, + 219, + 602 + ], + "score": 0.87, + "content": "l _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 591, + 435, + 604 + ], + "score": 1.0, + "content": "-norm is equivalent to minimizing the KL divergence.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 106, + 568, + 505, + 604 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 618, + 218, + 631 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 219, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 219, + 632 + ], + "score": 1.0, + "content": "DETAILS OF INVASE", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "In the experiments, the depth of the selector, predictor, and baseline networks is set to 3. The number", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 233, + 667 + ], + "score": 1.0, + "content": "of hidden nodes in each layer is", + "type": "text" + }, + { + "bbox": [ + 234, + 655, + 240, + 665 + ], + "score": 0.8, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 654, + 257, + 667 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 258, + 655, + 269, + 665 + ], + "score": 0.77, + "content": "2 d", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 654, + 505, + 667 + ], + "score": 1.0, + "content": ", respectively. We use either ReLu or SeLu as the activation", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "functions of each layer except for the output layer where we use the sigmoid activation function for", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 677, + 505, + 688 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 688 + ], + "score": 1.0, + "content": "the selector network and softmax activation function for the predictor and baseline networks. The", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "number of samples in each mini-batch is 1000 for the selector, predictor, and baseline networks.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 242, + 711 + ], + "score": 1.0, + "content": "We use cross-validation to select", + "type": "text" + }, + { + "bbox": [ + 242, + 699, + 250, + 709 + ], + "score": 0.78, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 698, + 281, + 711 + ], + "score": 1.0, + "content": "among", + "type": "text" + }, + { + "bbox": [ + 281, + 699, + 382, + 711 + ], + "score": 0.9, + "content": "\\{ 0 . 1 , 0 . 3 , 0 . 5 , 1 , 2 , 5 , 1 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 698, + 505, + 711 + ], + "score": 1.0, + "content": ". We use tensorflow to imple-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 710, + 504, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 504, + 721 + ], + "score": 1.0, + "content": "ment INVASE. The source-code can be found at https://github.com/iclr2018invase/", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 722, + 154, + 731 + ], + "spans": [ + { + "bbox": [ + 106, + 722, + 154, + 731 + ], + "score": 1.0, + "content": "INVASE/.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 644, + 505, + 731 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 246, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 247, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 247, + 96 + ], + "score": 1.0, + "content": "DETAILS OF BENCHMARKS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 106, + 383, + 118 + ], + "lines": [ + { + "bbox": [ + 107, + 105, + 384, + 119 + ], + "spans": [ + { + "bbox": [ + 107, + 105, + 384, + 119 + ], + "score": 1.0, + "content": "We use the following links for the implementations of 7 benchmarks.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 132, + 126, + 505, + 246 + ], + "lines": [ + { + "bbox": [ + 132, + 128, + 366, + 139 + ], + "spans": [ + { + "bbox": [ + 132, + 128, + 366, + 139 + ], + "score": 1.0, + "content": "• L2X: https://github.com/Jianbo-Lab/L2X", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 132, + 142, + 365, + 153 + ], + "spans": [ + { + "bbox": [ + 132, + 142, + 365, + 153 + ], + "score": 1.0, + "content": "• LIME: https://github.com/marcotcr/lime", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 132, + 156, + 380, + 170 + ], + "spans": [ + { + "bbox": [ + 132, + 156, + 380, + 170 + ], + "score": 1.0, + "content": "• Shapley: https://github.com/slundberg/shap", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 132, + 172, + 504, + 184 + ], + "spans": [ + { + "bbox": [ + 132, + 172, + 189, + 183 + ], + "score": 1.0, + "content": "• Knock-off:", + "type": "text" + }, + { + "bbox": [ + 221, + 172, + 504, + 184 + ], + "score": 1.0, + "content": "http://web.stanford.edu/group/candes/knockoffs/", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 142, + 183, + 251, + 194 + ], + "spans": [ + { + "bbox": [ + 142, + 183, + 251, + 194 + ], + "score": 1.0, + "content": "software/knockoff/", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 131, + 198, + 504, + 209 + ], + "spans": [ + { + "bbox": [ + 131, + 198, + 166, + 209 + ], + "score": 1.0, + "content": "• Tree:", + "type": "text" + }, + { + "bbox": [ + 208, + 198, + 504, + 209 + ], + "score": 1.0, + "content": "http://scikit-learn.org/stable/modules/generated/", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 142, + 209, + 395, + 220 + ], + "spans": [ + { + "bbox": [ + 142, + 209, + 395, + 220 + ], + "score": 1.0, + "content": "sklearn.ensemble.ExtraTreesClassifier.html", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 132, + 222, + 504, + 236 + ], + "spans": [ + { + "bbox": [ + 132, + 222, + 504, + 236 + ], + "score": 1.0, + "content": "• LASSO: http://scikit-learn.org/stable/modules/linear_model.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 234, + 205, + 247 + ], + "spans": [ + { + "bbox": [ + 141, + 234, + 205, + 247 + ], + "score": 1.0, + "content": "html#lasso", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 255, + 504, + 278 + ], + "lines": [ + { + "bbox": [ + 105, + 254, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 506, + 269 + ], + "score": 1.0, + "content": "For L2X, we use the same network settings used in INVASE for fair comparisons. For SCFS, we", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 266, + 296, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 296, + 279 + ], + "score": 1.0, + "content": "explicitly implement from the reference ([11]).", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "title", + "bbox": [ + 108, + 295, + 273, + 307 + ], + "lines": [ + { + "bbox": [ + 106, + 294, + 274, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 274, + 309 + ], + "score": 1.0, + "content": "HIGH DIMENSIONAL DISCOVERY", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 318, + 505, + 364 + ], + "lines": [ + { + "bbox": [ + 105, + 318, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 505, + 331 + ], + "score": 1.0, + "content": "To demonstrate the scalability of our method, we run an experiment in which we increase the total", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 331, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 505, + 343 + ], + "score": 1.0, + "content": "number of features to 100. The features are generated as a 100-dimensional Gaussian with no", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 341, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 156, + 353 + ], + "score": 1.0, + "content": "correlations", + "type": "text" + }, + { + "bbox": [ + 157, + 341, + 194, + 353 + ], + "score": 0.9, + "content": "( \\mathcal { N } ( \\mathbf { 0 } , \\mathbf { I } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 341, + 505, + 353 + ], + "score": 1.0, + "content": "and the relationships between features and label remains as in Table 1 in the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 353, + 488, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 488, + 364 + ], + "score": 1.0, + "content": "main manucript (i.e. we are adding 89 additional noisy signals that have no effect on the label).", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5 + }, + { + "type": "table", + "bbox": [ + 106, + 374, + 505, + 494 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 374, + 505, + 494 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 374, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 505, + 494 + ], + "score": 0.982, + "html": "
DatasetSyn1Syn2Syn3Syn4Syn5Syn6
Metrics (%) TPRFDRTPRFDRTPRFDRTPRFDRTPRFDRTPRFDR
INVASE100.00.0100.00.0100.00.066.340.573.223.790.515.4
L2X6.193.981.418.657.742.348.546.435.460.866.333.7
LIME0.0100.0 95.6100.0 95.10.092.77.343.847.442.350.150.149.9
Shapley4.44.988.811.250.243.449.944.262.537.5
Knock off0.064.93.771.274.924.928.259.833.159.446.953.0
Tree49.950.1100.00.0100.00.040.749.556.737.558.441.6
SCFS2.597.55.394.774.925.127.074.630.662.138.361.7
LASSO2.597.54.096.075.324.728.373.236.056.945.954.1
", + "type": "table", + "image_path": "0dbeaceec12cf64607991eadc55669325f26829cbb74b60c1428be4250f697ea.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 106, + 374, + 505, + 414.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 106, + 414.0, + 505, + 454.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 106, + 454.0, + 505, + 494.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 155, + 502, + 455, + 514 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 154, + 502, + 457, + 515 + ], + "spans": [ + { + "bbox": [ + 154, + 502, + 457, + 515 + ], + "score": 1.0, + "content": "Table 7: Relevant feature discovery for synthetic datasets with 100 features", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + } + ], + "index": 20.0 + }, + { + "type": "text", + "bbox": [ + 107, + 532, + 505, + 599 + ], + "lines": [ + { + "bbox": [ + 106, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 505, + 545 + ], + "score": 1.0, + "content": "As can be seen in Table 7, INVASE also works consistently better than all other benchmarks in all 6", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 543, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 506, + 556 + ], + "score": 1.0, + "content": "synthetic datasets in this setting. In fact, we see a significant reduction in performance (compared to", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 401, + 567 + ], + "score": 1.0, + "content": "the 11 feature setting) for L2X in Syn1, with the TPR dropping more than", + "type": "text" + }, + { + "bbox": [ + 402, + 555, + 421, + 565 + ], + "score": 0.86, + "content": "90 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "leading to an almost", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 565, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 505, + 578 + ], + "score": 1.0, + "content": "complete failure of the method to detect any relevant features. In particular, we see that L2X does", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 576, + 506, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 506, + 589 + ], + "score": 1.0, + "content": "not scale as well as INVASE with the dimensionality of the data, which is particularly limiting for a", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 588, + 209, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 209, + 599 + ], + "score": 1.0, + "content": "feature selection method.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 604, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "We also compare the CPU times of the algorithm for training and testing with other instance-wise", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 615, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 627 + ], + "score": 1.0, + "content": "feature selection benchmarks to show the scalability in terms of computational complexity. As", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 627, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 505, + 638 + ], + "score": 1.0, + "content": "can be seen in Table 8, INVASE is much faster (10 times) than LIME and Shapley methods and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 379, + 650 + ], + "score": 1.0, + "content": "comparable with L2X; we see that INVASE takes approximately", + "type": "text" + }, + { + "bbox": [ + 380, + 637, + 400, + 648 + ], + "score": 0.86, + "content": "50 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "longer to run than L2X,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 648, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 506, + 660 + ], + "score": 1.0, + "content": "which can be accounted for by the addition of a 3rd network (the baseline network) in INVASE that", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 660, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 671 + ], + "score": 1.0, + "content": "is not present in L2X. Note, however, that this baseline network can be trained in parallel with the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 670, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 505, + 683 + ], + "score": 1.0, + "content": "predictor network and we believe that doing so would lead to both INVASE and L2X having the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 682, + 169, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 169, + 693 + ], + "score": 1.0, + "content": "same run-time.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31.5 + } + ], + "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, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 246, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 247, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 247, + 96 + ], + "score": 1.0, + "content": "DETAILS OF BENCHMARKS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 106, + 383, + 118 + ], + "lines": [ + { + "bbox": [ + 107, + 105, + 384, + 119 + ], + "spans": [ + { + "bbox": [ + 107, + 105, + 384, + 119 + ], + "score": 1.0, + "content": "We use the following links for the implementations of 7 benchmarks.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 107, + 105, + 384, + 119 + ] + }, + { + "type": "list", + "bbox": [ + 132, + 126, + 505, + 246 + ], + "lines": [ + { + "bbox": [ + 132, + 128, + 366, + 139 + ], + "spans": [ + { + "bbox": [ + 132, + 128, + 366, + 139 + ], + "score": 1.0, + "content": "• L2X: https://github.com/Jianbo-Lab/L2X", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 142, + 365, + 153 + ], + "spans": [ + { + "bbox": [ + 132, + 142, + 365, + 153 + ], + "score": 1.0, + "content": "• LIME: https://github.com/marcotcr/lime", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 156, + 380, + 170 + ], + "spans": [ + { + "bbox": [ + 132, + 156, + 380, + 170 + ], + "score": 1.0, + "content": "• Shapley: https://github.com/slundberg/shap", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 172, + 504, + 184 + ], + "spans": [ + { + "bbox": [ + 132, + 172, + 189, + 183 + ], + "score": 1.0, + "content": "• Knock-off:", + "type": "text" + }, + { + "bbox": [ + 221, + 172, + 504, + 184 + ], + "score": 1.0, + "content": "http://web.stanford.edu/group/candes/knockoffs/", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 142, + 183, + 251, + 194 + ], + "spans": [ + { + "bbox": [ + 142, + 183, + 251, + 194 + ], + "score": 1.0, + "content": "software/knockoff/", + "type": "text" + } + ], + "index": 6, + "is_list_end_line": true + }, + { + "bbox": [ + 131, + 198, + 504, + 209 + ], + "spans": [ + { + "bbox": [ + 131, + 198, + 166, + 209 + ], + "score": 1.0, + "content": "• Tree:", + "type": "text" + }, + { + "bbox": [ + 208, + 198, + 504, + 209 + ], + "score": 1.0, + "content": "http://scikit-learn.org/stable/modules/generated/", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 142, + 209, + 395, + 220 + ], + "spans": [ + { + "bbox": [ + 142, + 209, + 395, + 220 + ], + "score": 1.0, + "content": "sklearn.ensemble.ExtraTreesClassifier.html", + "type": "text" + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 222, + 504, + 236 + ], + "spans": [ + { + "bbox": [ + 132, + 222, + 504, + 236 + ], + "score": 1.0, + "content": "• LASSO: http://scikit-learn.org/stable/modules/linear_model.", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 234, + 205, + 247 + ], + "spans": [ + { + "bbox": [ + 141, + 234, + 205, + 247 + ], + "score": 1.0, + "content": "html#lasso", + "type": "text" + } + ], + "index": 10, + "is_list_end_line": true + } + ], + "index": 6, + "bbox_fs": [ + 131, + 128, + 504, + 247 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 255, + 504, + 278 + ], + "lines": [ + { + "bbox": [ + 105, + 254, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 506, + 269 + ], + "score": 1.0, + "content": "For L2X, we use the same network settings used in INVASE for fair comparisons. For SCFS, we", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 266, + 296, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 296, + 279 + ], + "score": 1.0, + "content": "explicitly implement from the reference ([11]).", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 254, + 506, + 279 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 295, + 273, + 307 + ], + "lines": [ + { + "bbox": [ + 106, + 294, + 274, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 274, + 309 + ], + "score": 1.0, + "content": "HIGH DIMENSIONAL DISCOVERY", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 318, + 505, + 364 + ], + "lines": [ + { + "bbox": [ + 105, + 318, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 505, + 331 + ], + "score": 1.0, + "content": "To demonstrate the scalability of our method, we run an experiment in which we increase the total", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 331, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 505, + 343 + ], + "score": 1.0, + "content": "number of features to 100. The features are generated as a 100-dimensional Gaussian with no", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 341, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 156, + 353 + ], + "score": 1.0, + "content": "correlations", + "type": "text" + }, + { + "bbox": [ + 157, + 341, + 194, + 353 + ], + "score": 0.9, + "content": "( \\mathcal { N } ( \\mathbf { 0 } , \\mathbf { I } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 341, + 505, + 353 + ], + "score": 1.0, + "content": "and the relationships between features and label remains as in Table 1 in the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 353, + 488, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 488, + 364 + ], + "score": 1.0, + "content": "main manucript (i.e. we are adding 89 additional noisy signals that have no effect on the label).", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 318, + 505, + 364 + ] + }, + { + "type": "table", + "bbox": [ + 106, + 374, + 505, + 494 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 374, + 505, + 494 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 374, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 505, + 494 + ], + "score": 0.982, + "html": "
DatasetSyn1Syn2Syn3Syn4Syn5Syn6
Metrics (%) TPRFDRTPRFDRTPRFDRTPRFDRTPRFDRTPRFDR
INVASE100.00.0100.00.0100.00.066.340.573.223.790.515.4
L2X6.193.981.418.657.742.348.546.435.460.866.333.7
LIME0.0100.0 95.6100.0 95.10.092.77.343.847.442.350.150.149.9
Shapley4.44.988.811.250.243.449.944.262.537.5
Knock off0.064.93.771.274.924.928.259.833.159.446.953.0
Tree49.950.1100.00.0100.00.040.749.556.737.558.441.6
SCFS2.597.55.394.774.925.127.074.630.662.138.361.7
LASSO2.597.54.096.075.324.728.373.236.056.945.954.1
", + "type": "table", + "image_path": "0dbeaceec12cf64607991eadc55669325f26829cbb74b60c1428be4250f697ea.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 106, + 374, + 505, + 414.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 106, + 414.0, + 505, + 454.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 106, + 454.0, + 505, + 494.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 155, + 502, + 455, + 514 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 154, + 502, + 457, + 515 + ], + "spans": [ + { + "bbox": [ + 154, + 502, + 457, + 515 + ], + "score": 1.0, + "content": "Table 7: Relevant feature discovery for synthetic datasets with 100 features", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + } + ], + "index": 20.0 + }, + { + "type": "text", + "bbox": [ + 107, + 532, + 505, + 599 + ], + "lines": [ + { + "bbox": [ + 106, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 505, + 545 + ], + "score": 1.0, + "content": "As can be seen in Table 7, INVASE also works consistently better than all other benchmarks in all 6", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 543, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 506, + 556 + ], + "score": 1.0, + "content": "synthetic datasets in this setting. In fact, we see a significant reduction in performance (compared to", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 401, + 567 + ], + "score": 1.0, + "content": "the 11 feature setting) for L2X in Syn1, with the TPR dropping more than", + "type": "text" + }, + { + "bbox": [ + 402, + 555, + 421, + 565 + ], + "score": 0.86, + "content": "90 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "leading to an almost", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 565, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 505, + 578 + ], + "score": 1.0, + "content": "complete failure of the method to detect any relevant features. In particular, we see that L2X does", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 576, + 506, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 506, + 589 + ], + "score": 1.0, + "content": "not scale as well as INVASE with the dimensionality of the data, which is particularly limiting for a", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 588, + 209, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 209, + 599 + ], + "score": 1.0, + "content": "feature selection method.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 533, + 506, + 599 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 604, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "We also compare the CPU times of the algorithm for training and testing with other instance-wise", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 615, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 627 + ], + "score": 1.0, + "content": "feature selection benchmarks to show the scalability in terms of computational complexity. As", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 627, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 505, + 638 + ], + "score": 1.0, + "content": "can be seen in Table 8, INVASE is much faster (10 times) than LIME and Shapley methods and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 379, + 650 + ], + "score": 1.0, + "content": "comparable with L2X; we see that INVASE takes approximately", + "type": "text" + }, + { + "bbox": [ + 380, + 637, + 400, + 648 + ], + "score": 0.86, + "content": "50 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "longer to run than L2X,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 648, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 506, + 660 + ], + "score": 1.0, + "content": "which can be accounted for by the addition of a 3rd network (the baseline network) in INVASE that", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 660, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 671 + ], + "score": 1.0, + "content": "is not present in L2X. Note, however, that this baseline network can be trained in parallel with the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 670, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 505, + 683 + ], + "score": 1.0, + "content": "predictor network and we believe that doing so would lead to both INVASE and L2X having the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 682, + 169, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 169, + 693 + ], + "score": 1.0, + "content": "same run-time.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 604, + 506, + 693 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 181, + 81, + 429, + 126 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 181, + 81, + 429, + 126 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 181, + 81, + 429, + 126 + ], + "spans": [ + { + "bbox": [ + 181, + 81, + 429, + 126 + ], + "score": 0.973, + "html": "
MethodsINVASEL2XShapleyLIME
TrainTest1327.69s0.38s939.82s0.78s12801.21s0.06s-18931.98s
", + "type": "table", + "image_path": "9e9edbea9147a226bbbdf0d54fcaa70038653039df8403d373be160bf19fe5ea.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 181, + 81, + 429, + 96.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 181, + 96.0, + 429, + 111.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 181, + 111.0, + 429, + 126.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 134, + 504, + 157 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 135, + 505, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 135, + 505, + 146 + ], + "score": 1.0, + "content": "Table 8: Comparison of CPU clock time across different instance-wise feature selection methods on", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 145, + 504, + 158 + ], + "spans": [ + { + "bbox": [ + 106, + 145, + 504, + 158 + ], + "score": 1.0, + "content": "average across Syn1 to Syn6 with 100 features and 10,000 samples on training/testing, respectively", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "title", + "bbox": [ + 108, + 177, + 266, + 189 + ], + "lines": [ + { + "bbox": [ + 106, + 176, + 267, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 267, + 191 + ], + "score": 1.0, + "content": "HYPER-PARAMETER ANALYSIS", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 201, + 505, + 246 + ], + "lines": [ + { + "bbox": [ + 105, + 202, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 469, + 214 + ], + "score": 1.0, + "content": "In the following experiment, we provide results for various values of the hyper-parameter,", + "type": "text" + }, + { + "bbox": [ + 469, + 203, + 476, + 212 + ], + "score": 0.75, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 202, + 505, + 214 + ], + "score": 1.0, + "content": ", in the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 213, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 505, + 225 + ], + "score": 1.0, + "content": "Syn4, Syn5, and Syn6 100-dimensional setting. Table 9 gives the results in terms of TPR and FDR.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 223, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 370, + 237 + ], + "score": 1.0, + "content": "Note that in the other experiments, we select the hyper-parameter", + "type": "text" + }, + { + "bbox": [ + 371, + 225, + 378, + 234 + ], + "score": 0.63, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 223, + 505, + 237 + ], + "score": 1.0, + "content": "which maximizes the predictor", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 235, + 228, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 228, + 247 + ], + "score": 1.0, + "content": "accuracy in terms of AUROC.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5 + }, + { + "type": "table", + "bbox": [ + 176, + 256, + 435, + 372 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 176, + 256, + 435, + 372 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 176, + 256, + 435, + 372 + ], + "spans": [ + { + "bbox": [ + 176, + 256, + 435, + 372 + ], + "score": 0.981, + "html": "
DatasetsSyn4Syn5Syn6
X/Metris (%)TPRFDRTPRFDRTPRFDR
0.198.094.390.093.499.292.3
0.393.787.984.288.996.986.7
0.599.043.188.350.699.631.7
166.340.573.223.790.515.4
20.00.025.44.167.13.6
50.00.07.52.77.62.5
100.00.00.00.00.00.0
", + "type": "table", + "image_path": "228d43dc72f9972ed23d609e03b74f859c9ae854a3075cdf06b64abe8a48619b.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 176, + 256, + 435, + 294.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 176, + 294.6666666666667, + 435, + 333.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 176, + 333.33333333333337, + 435, + 372.00000000000006 + ], + "spans": [], + "index": 12 + } + ] + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 105, + 381, + 504, + 405 + ], + "lines": [ + { + "bbox": [ + 105, + 379, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 446, + 395 + ], + "score": 1.0, + "content": "Table 9: Relevant feature discovery results for various values of the hyper-parameter", + "type": "text" + }, + { + "bbox": [ + 446, + 382, + 453, + 391 + ], + "score": 0.7, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 379, + 505, + 395 + ], + "score": 1.0, + "content": "in the Syn4,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 392, + 272, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 272, + 406 + ], + "score": 1.0, + "content": "Syn5, and Syn6 100-dimensional setting.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 181, + 81, + 429, + 126 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 181, + 81, + 429, + 126 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 181, + 81, + 429, + 126 + ], + "spans": [ + { + "bbox": [ + 181, + 81, + 429, + 126 + ], + "score": 0.973, + "html": "
MethodsINVASEL2XShapleyLIME
TrainTest1327.69s0.38s939.82s0.78s12801.21s0.06s-18931.98s
", + "type": "table", + "image_path": "9e9edbea9147a226bbbdf0d54fcaa70038653039df8403d373be160bf19fe5ea.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 181, + 81, + 429, + 96.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 181, + 96.0, + 429, + 111.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 181, + 111.0, + 429, + 126.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 134, + 504, + 157 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 135, + 505, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 135, + 505, + 146 + ], + "score": 1.0, + "content": "Table 8: Comparison of CPU clock time across different instance-wise feature selection methods on", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 145, + 504, + 158 + ], + "spans": [ + { + "bbox": [ + 106, + 145, + 504, + 158 + ], + "score": 1.0, + "content": "average across Syn1 to Syn6 with 100 features and 10,000 samples on training/testing, respectively", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "title", + "bbox": [ + 108, + 177, + 266, + 189 + ], + "lines": [ + { + "bbox": [ + 106, + 176, + 267, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 267, + 191 + ], + "score": 1.0, + "content": "HYPER-PARAMETER ANALYSIS", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 201, + 505, + 246 + ], + "lines": [ + { + "bbox": [ + 105, + 202, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 469, + 214 + ], + "score": 1.0, + "content": "In the following experiment, we provide results for various values of the hyper-parameter,", + "type": "text" + }, + { + "bbox": [ + 469, + 203, + 476, + 212 + ], + "score": 0.75, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 202, + 505, + 214 + ], + "score": 1.0, + "content": ", in the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 213, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 505, + 225 + ], + "score": 1.0, + "content": "Syn4, Syn5, and Syn6 100-dimensional setting. Table 9 gives the results in terms of TPR and FDR.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 223, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 370, + 237 + ], + "score": 1.0, + "content": "Note that in the other experiments, we select the hyper-parameter", + "type": "text" + }, + { + "bbox": [ + 371, + 225, + 378, + 234 + ], + "score": 0.63, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 223, + 505, + 237 + ], + "score": 1.0, + "content": "which maximizes the predictor", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 235, + 228, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 228, + 247 + ], + "score": 1.0, + "content": "accuracy in terms of AUROC.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 202, + 505, + 247 + ] + }, + { + "type": "table", + "bbox": [ + 176, + 256, + 435, + 372 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 176, + 256, + 435, + 372 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 176, + 256, + 435, + 372 + ], + "spans": [ + { + "bbox": [ + 176, + 256, + 435, + 372 + ], + "score": 0.981, + "html": "
DatasetsSyn4Syn5Syn6
X/Metris (%)TPRFDRTPRFDRTPRFDR
0.198.094.390.093.499.292.3
0.393.787.984.288.996.986.7
0.599.043.188.350.699.631.7
166.340.573.223.790.515.4
20.00.025.44.167.13.6
50.00.07.52.77.62.5
100.00.00.00.00.00.0
", + "type": "table", + "image_path": "228d43dc72f9972ed23d609e03b74f859c9ae854a3075cdf06b64abe8a48619b.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 176, + 256, + 435, + 294.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 176, + 294.6666666666667, + 435, + 333.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 176, + 333.33333333333337, + 435, + 372.00000000000006 + ], + "spans": [], + "index": 12 + } + ] + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 105, + 381, + 504, + 405 + ], + "lines": [ + { + "bbox": [ + 105, + 379, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 446, + 395 + ], + "score": 1.0, + "content": "Table 9: Relevant feature discovery results for various values of the hyper-parameter", + "type": "text" + }, + { + "bbox": [ + 446, + 382, + 453, + 391 + ], + "score": 0.7, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 379, + 505, + 395 + ], + "score": 1.0, + "content": "in the Syn4,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 392, + 272, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 272, + 406 + ], + "score": 1.0, + "content": "Syn5, and Syn6 100-dimensional setting.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 379, + 505, + 406 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 415, + 94 + ], + "lines": [ + { + "bbox": [ + 107, + 81, + 416, + 95 + ], + "spans": [ + { + "bbox": [ + 107, + 81, + 416, + 95 + ], + "score": 1.0, + "content": "ADDITIONAL RESULTS ON COMPLEX SYNTHETIC DATASETS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 105, + 505, + 183 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 505, + 118 + ], + "score": 1.0, + "content": "In the main paper, the relevant subset for a sample in each of our variable synthetic datasets (Syn4-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 117, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 173, + 129 + ], + "score": 1.0, + "content": "6) depended on", + "type": "text" + }, + { + "bbox": [ + 173, + 117, + 191, + 128 + ], + "score": 0.9, + "content": "X _ { 1 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 117, + 416, + 129 + ], + "score": 1.0, + "content": "only, which was unused in the rest of the model (i.e.", + "type": "text" + }, + { + "bbox": [ + 416, + 117, + 434, + 128 + ], + "score": 0.9, + "content": "X _ { 1 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 117, + 505, + 129 + ], + "score": 1.0, + "content": "determined only", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 127, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 505, + 141 + ], + "score": 1.0, + "content": "the relevant subset, and was otherwise unused as a predictive variable). In this set of experiments,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 139, + 504, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 139, + 504, + 150 + ], + "score": 1.0, + "content": "we investigate the effect of having the subset relevance depend on a variable that is also used in", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 149, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 505, + 163 + ], + "score": 1.0, + "content": "the model itself (Syn4A, Syn5A, Syn6A). We then investigate the effect of having more than one", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 160, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 506, + 173 + ], + "score": 1.0, + "content": "variable being used to determine subset relevance (Syn4B, Syn5B, Syn6B, Syn7). The results for", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 172, + 315, + 184 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 315, + 184 + ], + "score": 1.0, + "content": "these are reported in Tables 10 and 11, respectively.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 108, + 188, + 505, + 224 + ], + "lines": [ + { + "bbox": [ + 106, + 188, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 505, + 200 + ], + "score": 1.0, + "content": "The input features are generated from a 100-dimensional Gaussian distribution with no correlations", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 103, + 196, + 507, + 217 + ], + "spans": [ + { + "bbox": [ + 103, + 196, + 184, + 217 + ], + "score": 1.0, + "content": "across the features", + "type": "text" + }, + { + "bbox": [ + 185, + 199, + 243, + 212 + ], + "score": 0.9, + "content": "( \\mathbf { X } \\sim \\mathcal { N } ( \\mathbf { 0 } , \\mathbf { I } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 196, + 249, + 217 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 249, + 200, + 258, + 210 + ], + "score": 0.58, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 196, + 363, + 217 + ], + "score": 1.0, + "content": "is generated according to", + "type": "text" + }, + { + "bbox": [ + 363, + 199, + 468, + 214 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mathbb { P } ( Y = 1 | \\mathbf { X } ) = \\frac { 1 } { 1 + \\mathrm { l o g i t } ( \\mathbf { X } ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 196, + 507, + 217 + ], + "score": 1.0, + "content": "with the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 212, + 352, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 352, + 225 + ], + "score": 1.0, + "content": "logit value for each synthetic dataset now defined as follows:", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 129, + 232, + 505, + 300 + ], + "lines": [ + { + "bbox": [ + 129, + 228, + 462, + 250 + ], + "spans": [ + { + "bbox": [ + 129, + 228, + 188, + 250 + ], + "score": 1.0, + "content": "• Syn4A: If", + "type": "text" + }, + { + "bbox": [ + 188, + 234, + 220, + 245 + ], + "score": 0.85, + "content": "X _ { 1 } < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 228, + 224, + 250 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 224, + 234, + 302, + 246 + ], + "score": 0.87, + "content": "{ \\mathrm { l o g i t } } = \\exp ( X _ { 1 } X _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 228, + 371, + 250 + ], + "score": 1.0, + "content": ", otherwise, logit", + "type": "text" + }, + { + "bbox": [ + 371, + 232, + 456, + 247 + ], + "score": 0.59, + "content": "= \\textstyle \\exp ( \\sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 228, + 462, + 250 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 131, + 247, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 131, + 247, + 187, + 262 + ], + "score": 1.0, + "content": "• Syn5A: If", + "type": "text" + }, + { + "bbox": [ + 188, + 249, + 220, + 260 + ], + "score": 0.85, + "content": "X _ { 1 } < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 247, + 223, + 262 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 223, + 248, + 301, + 261 + ], + "score": 0.85, + "content": "{ \\mathrm { l o g i t } } = \\exp ( X _ { 1 } X _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 247, + 366, + 262 + ], + "score": 1.0, + "content": ", otherwise, logi", + "type": "text" + }, + { + "bbox": [ + 366, + 249, + 505, + 261 + ], + "score": 0.86, + "content": "\\mathrm { t = - 1 0 } \\times \\sin 2 X _ { 7 } + 2 | X _ { 8 } | + X _ { 9 } +", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 142, + 259, + 196, + 273 + ], + "spans": [ + { + "bbox": [ + 142, + 260, + 191, + 272 + ], + "score": 0.89, + "content": "\\exp ( - X _ { 1 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 259, + 196, + 273 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 128, + 268, + 505, + 301 + ], + "spans": [ + { + "bbox": [ + 128, + 268, + 142, + 301 + ], + "score": 1.0, + "content": "•", + "type": "text" + }, + { + "bbox": [ + 187, + 276, + 219, + 287 + ], + "score": 0.81, + "content": "X _ { 7 } < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 268, + 221, + 301 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 222, + 274, + 329, + 289 + ], + "score": 0.82, + "content": "\\scriptstyle { \\mathrm { l o g i t } } = \\exp ( \\sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 268, + 394, + 301 + ], + "score": 1.0, + "content": ", otherwise, logi", + "type": "text" + }, + { + "bbox": [ + 394, + 276, + 505, + 288 + ], + "score": 0.77, + "content": "\\mathrel { \\mathop { : = } } - 1 0 \\times \\sin 2 X _ { 7 } + 2 | X _ { 8 } | +", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 288, + 215, + 299 + ], + "spans": [ + { + "bbox": [ + 142, + 288, + 215, + 299 + ], + "score": 0.9, + "content": "X _ { 9 } + \\exp ( - X _ { 1 0 } )", + "type": "inline_equation" + } + ], + "index": 15 + } + ], + "index": 13 + }, + { + "type": "table", + "bbox": [ + 181, + 312, + 430, + 448 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 181, + 312, + 430, + 448 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 181, + 312, + 430, + 448 + ], + "spans": [ + { + "bbox": [ + 181, + 312, + 430, + 448 + ], + "score": 0.979, + "html": "
Dataset 1Syn4ASyn5ASyn6A
Metrics (%)TPRFDRTPRFDRTPRFDR
INVASE+77.514.585.98.889.97.3
L2X65.039.348.057.474.435.5
LIME Shapley56.3 71.849.2 39.858.2 71.048.8 41.358.9 68.947.8 38.2
Knock off59.862.655.049.965.040.0
Tree61.346.975.639.466.940.0
SCFS52.866.955.350.650.451.8
LASSO61.061.255.050.053.948.8
", + "type": "table", + "image_path": "0544457c786b80e92f43a08cbe1f29286a4ec0b648ed394985aa4e4a5906042c.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 181, + 312, + 430, + 357.3333333333333 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 181, + 357.3333333333333, + 430, + 402.66666666666663 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 181, + 402.66666666666663, + 430, + 447.99999999999994 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 104, + 457, + 505, + 479 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 456, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 470 + ], + "score": 1.0, + "content": "Table 10: Relevant feature discovery results for complex synthetic datasets (Syn4A, 5A, 6A) with", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 467, + 159, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 467, + 159, + 480 + ], + "score": 1.0, + "content": "100 features", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + } + ], + "index": 18.25 + }, + { + "type": "text", + "bbox": [ + 133, + 496, + 472, + 510 + ], + "lines": [ + { + "bbox": [ + 130, + 493, + 469, + 513 + ], + "spans": [ + { + "bbox": [ + 130, + 493, + 187, + 513 + ], + "score": 1.0, + "content": "• Syn4B: If", + "type": "text" + }, + { + "bbox": [ + 188, + 497, + 232, + 509 + ], + "score": 0.9, + "content": "X _ { 1 } X _ { 3 } < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 493, + 236, + 513 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 236, + 497, + 314, + 509 + ], + "score": 0.87, + "content": "{ \\mathrm { l o g i t } } = \\exp ( X _ { 1 } X _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 493, + 383, + 513 + ], + "score": 1.0, + "content": ", otherwise, logit", + "type": "text" + }, + { + "bbox": [ + 383, + 495, + 469, + 510 + ], + "score": 0.89, + "content": "= \\textstyle \\exp ( \\sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )", + "type": "inline_equation" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 133, + 511, + 504, + 535 + ], + "lines": [ + { + "bbox": [ + 131, + 509, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 131, + 509, + 188, + 525 + ], + "score": 1.0, + "content": "• Syn5B: If", + "type": "text" + }, + { + "bbox": [ + 189, + 511, + 235, + 523 + ], + "score": 0.83, + "content": "X _ { 1 } X _ { 7 } < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 509, + 240, + 525 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 240, + 511, + 318, + 524 + ], + "score": 0.84, + "content": "{ \\mathrm { l o g i t } } = \\exp ( X _ { 1 } X _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 509, + 389, + 525 + ], + "score": 1.0, + "content": ", otherwise, logit", + "type": "text" + }, + { + "bbox": [ + 389, + 511, + 505, + 524 + ], + "score": 0.83, + "content": "= - 1 0 \\times \\sin 2 X _ { 7 } + 2 | X _ { 8 } | +", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 520, + 220, + 536 + ], + "spans": [ + { + "bbox": [ + 142, + 523, + 216, + 535 + ], + "score": 0.89, + "content": "X _ { 9 } + \\exp ( - X _ { 1 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 520, + 220, + 536 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 132, + 538, + 502, + 562 + ], + "lines": [ + { + "bbox": [ + 131, + 535, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 131, + 535, + 190, + 554 + ], + "score": 1.0, + "content": "• Syn6B: If", + "type": "text" + }, + { + "bbox": [ + 190, + 539, + 239, + 550 + ], + "score": 0.88, + "content": "X _ { 3 } X _ { 7 } \\ < \\ 0", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 535, + 266, + 554 + ], + "score": 1.0, + "content": ", logit", + "type": "text" + }, + { + "bbox": [ + 266, + 537, + 351, + 552 + ], + "score": 0.83, + "content": "= \\textstyle \\exp ( \\sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 535, + 423, + 554 + ], + "score": 1.0, + "content": ", otherwise, logit", + "type": "text" + }, + { + "bbox": [ + 423, + 539, + 505, + 551 + ], + "score": 0.67, + "content": "= - 1 0 \\times \\sin 2 X _ { 7 } +", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 142, + 549, + 255, + 563 + ], + "spans": [ + { + "bbox": [ + 142, + 550, + 251, + 562 + ], + "score": 0.88, + "content": "2 | X _ { 8 } | + X _ { 9 } + \\exp ( - X _ { 1 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 549, + 255, + 563 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 133, + 565, + 168, + 576 + ], + "lines": [ + { + "bbox": [ + 131, + 563, + 171, + 582 + ], + "spans": [ + { + "bbox": [ + 131, + 563, + 171, + 582 + ], + "score": 1.0, + "content": "• Syn7:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 152, + 578, + 463, + 634 + ], + "lines": [ + { + "bbox": [ + 151, + 578, + 321, + 592 + ], + "spans": [ + { + "bbox": [ + 151, + 578, + 171, + 592 + ], + "score": 1.0, + "content": "– If", + "type": "text" + }, + { + "bbox": [ + 172, + 579, + 239, + 591 + ], + "score": 0.81, + "content": "X _ { 1 } < 0 , X _ { 2 } < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 578, + 242, + 592 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 243, + 579, + 321, + 591 + ], + "score": 0.86, + "content": "{ \\mathrm { l o g i t } } = \\exp ( X _ { 1 } X _ { 2 } )", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 147, + 586, + 358, + 612 + ], + "spans": [ + { + "bbox": [ + 147, + 586, + 171, + 612 + ], + "score": 1.0, + "content": "– If", + "type": "text" + }, + { + "bbox": [ + 172, + 594, + 239, + 605 + ], + "score": 0.6, + "content": "X _ { 1 } < 0 , X _ { 2 } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 586, + 243, + 612 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 243, + 592, + 349, + 606 + ], + "score": 0.75, + "content": "\\scriptstyle { \\mathrm { l o g i t } } = \\exp ( \\sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 586, + 358, + 612 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 150, + 604, + 454, + 619 + ], + "spans": [ + { + "bbox": [ + 150, + 604, + 171, + 619 + ], + "score": 1.0, + "content": "– If", + "type": "text" + }, + { + "bbox": [ + 172, + 606, + 239, + 618 + ], + "score": 0.34, + "content": "X _ { 1 } \\geq 0 , X _ { 2 } < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 604, + 243, + 619 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 243, + 607, + 454, + 618 + ], + "score": 0.79, + "content": "\\mathrm { l o g i t = - 1 0 \\times \\sin 2 X _ { 7 } + 2 } | X _ { 8 } | + X _ { 9 } + \\exp ( - X _ { 1 0 } ) .", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 150, + 618, + 461, + 635 + ], + "spans": [ + { + "bbox": [ + 150, + 618, + 171, + 635 + ], + "score": 1.0, + "content": "– If", + "type": "text" + }, + { + "bbox": [ + 172, + 621, + 239, + 633 + ], + "score": 0.7, + "content": "X _ { 1 } \\geq 0 , X _ { 2 } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 619, + 461, + 634 + ], + "score": 0.73, + "content": "\\begin{array} { r } { ) , \\mathrm { l o g i t } = 0 . 5 \\times \\exp ( X _ { 1 } X _ { 2 } ) + 0 . 5 \\times \\exp ( \\sum _ { i = 3 } ^ { 4 } X _ { i } ^ { 2 } - 2 ) . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 30 + } + ], + "index": 28.5 + }, + { + "type": "title", + "bbox": [ + 107, + 653, + 318, + 664 + ], + "lines": [ + { + "bbox": [ + 106, + 652, + 318, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 652, + 318, + 667 + ], + "score": 1.0, + "content": "RESULTS ON SEMI-SYNTHETIC DATASETS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "In this experiment, we use real features (which have correlation across features) but generate the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "labels as in the synthetic experiments from the main paper, using Syn1-Syn6. This allows us to", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 697, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 505, + 713 + ], + "score": 1.0, + "content": "know the ground truth relevance of the features, and calculate TPR and FDR, while using unknown", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "and correlated feature distributions (instead of the unrealistic setting of i.i.d. Gaussian used in the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 720, + 484, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 484, + 734 + ], + "score": 1.0, + "content": "fully synthetic experiment). The results for the MAGGIC and PLCO datasets are given below.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34 + } + ], + "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 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "16", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 415, + 94 + ], + "lines": [ + { + "bbox": [ + 107, + 81, + 416, + 95 + ], + "spans": [ + { + "bbox": [ + 107, + 81, + 416, + 95 + ], + "score": 1.0, + "content": "ADDITIONAL RESULTS ON COMPLEX SYNTHETIC DATASETS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 105, + 505, + 183 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 505, + 118 + ], + "score": 1.0, + "content": "In the main paper, the relevant subset for a sample in each of our variable synthetic datasets (Syn4-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 117, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 173, + 129 + ], + "score": 1.0, + "content": "6) depended on", + "type": "text" + }, + { + "bbox": [ + 173, + 117, + 191, + 128 + ], + "score": 0.9, + "content": "X _ { 1 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 117, + 416, + 129 + ], + "score": 1.0, + "content": "only, which was unused in the rest of the model (i.e.", + "type": "text" + }, + { + "bbox": [ + 416, + 117, + 434, + 128 + ], + "score": 0.9, + "content": "X _ { 1 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 117, + 505, + 129 + ], + "score": 1.0, + "content": "determined only", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 127, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 505, + 141 + ], + "score": 1.0, + "content": "the relevant subset, and was otherwise unused as a predictive variable). In this set of experiments,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 139, + 504, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 139, + 504, + 150 + ], + "score": 1.0, + "content": "we investigate the effect of having the subset relevance depend on a variable that is also used in", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 149, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 505, + 163 + ], + "score": 1.0, + "content": "the model itself (Syn4A, Syn5A, Syn6A). We then investigate the effect of having more than one", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 160, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 506, + 173 + ], + "score": 1.0, + "content": "variable being used to determine subset relevance (Syn4B, Syn5B, Syn6B, Syn7). The results for", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 172, + 315, + 184 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 315, + 184 + ], + "score": 1.0, + "content": "these are reported in Tables 10 and 11, respectively.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 106, + 506, + 184 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 188, + 505, + 224 + ], + "lines": [ + { + "bbox": [ + 106, + 188, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 505, + 200 + ], + "score": 1.0, + "content": "The input features are generated from a 100-dimensional Gaussian distribution with no correlations", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 103, + 196, + 507, + 217 + ], + "spans": [ + { + "bbox": [ + 103, + 196, + 184, + 217 + ], + "score": 1.0, + "content": "across the features", + "type": "text" + }, + { + "bbox": [ + 185, + 199, + 243, + 212 + ], + "score": 0.9, + "content": "( \\mathbf { X } \\sim \\mathcal { N } ( \\mathbf { 0 } , \\mathbf { I } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 196, + 249, + 217 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 249, + 200, + 258, + 210 + ], + "score": 0.58, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 196, + 363, + 217 + ], + "score": 1.0, + "content": "is generated according to", + "type": "text" + }, + { + "bbox": [ + 363, + 199, + 468, + 214 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mathbb { P } ( Y = 1 | \\mathbf { X } ) = \\frac { 1 } { 1 + \\mathrm { l o g i t } ( \\mathbf { X } ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 196, + 507, + 217 + ], + "score": 1.0, + "content": "with the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 212, + 352, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 352, + 225 + ], + "score": 1.0, + "content": "logit value for each synthetic dataset now defined as follows:", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 103, + 188, + 507, + 225 + ] + }, + { + "type": "list", + "bbox": [ + 129, + 232, + 505, + 300 + ], + "lines": [ + { + "bbox": [ + 129, + 228, + 462, + 250 + ], + "spans": [ + { + "bbox": [ + 129, + 228, + 188, + 250 + ], + "score": 1.0, + "content": "• Syn4A: If", + "type": "text" + }, + { + "bbox": [ + 188, + 234, + 220, + 245 + ], + "score": 0.85, + "content": "X _ { 1 } < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 228, + 224, + 250 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 224, + 234, + 302, + 246 + ], + "score": 0.87, + "content": "{ \\mathrm { l o g i t } } = \\exp ( X _ { 1 } X _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 228, + 371, + 250 + ], + "score": 1.0, + "content": ", otherwise, logit", + "type": "text" + }, + { + "bbox": [ + 371, + 232, + 456, + 247 + ], + "score": 0.59, + "content": "= \\textstyle \\exp ( \\sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 228, + 462, + 250 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 131, + 247, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 131, + 247, + 187, + 262 + ], + "score": 1.0, + "content": "• Syn5A: If", + "type": "text" + }, + { + "bbox": [ + 188, + 249, + 220, + 260 + ], + "score": 0.85, + "content": "X _ { 1 } < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 247, + 223, + 262 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 223, + 248, + 301, + 261 + ], + "score": 0.85, + "content": "{ \\mathrm { l o g i t } } = \\exp ( X _ { 1 } X _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 247, + 366, + 262 + ], + "score": 1.0, + "content": ", otherwise, logi", + "type": "text" + }, + { + "bbox": [ + 366, + 249, + 505, + 261 + ], + "score": 0.86, + "content": "\\mathrm { t = - 1 0 } \\times \\sin 2 X _ { 7 } + 2 | X _ { 8 } | + X _ { 9 } +", + "type": "inline_equation" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 142, + 259, + 196, + 273 + ], + "spans": [ + { + "bbox": [ + 142, + 260, + 191, + 272 + ], + "score": 0.89, + "content": "\\exp ( - X _ { 1 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 259, + 196, + 273 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 128, + 268, + 505, + 301 + ], + "spans": [ + { + "bbox": [ + 128, + 268, + 142, + 301 + ], + "score": 1.0, + "content": "•", + "type": "text" + }, + { + "bbox": [ + 187, + 276, + 219, + 287 + ], + "score": 0.81, + "content": "X _ { 7 } < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 268, + 221, + 301 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 222, + 274, + 329, + 289 + ], + "score": 0.82, + "content": "\\scriptstyle { \\mathrm { l o g i t } } = \\exp ( \\sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 268, + 394, + 301 + ], + "score": 1.0, + "content": ", otherwise, logi", + "type": "text" + }, + { + "bbox": [ + 394, + 276, + 505, + 288 + ], + "score": 0.77, + "content": "\\mathrel { \\mathop { : = } } - 1 0 \\times \\sin 2 X _ { 7 } + 2 | X _ { 8 } | +", + "type": "inline_equation" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 142, + 288, + 215, + 299 + ], + "spans": [ + { + "bbox": [ + 142, + 288, + 215, + 299 + ], + "score": 0.9, + "content": "X _ { 9 } + \\exp ( - X _ { 1 0 } )", + "type": "inline_equation" + } + ], + "index": 15, + "is_list_end_line": true + } + ], + "index": 13, + "bbox_fs": [ + 128, + 228, + 505, + 301 + ] + }, + { + "type": "table", + "bbox": [ + 181, + 312, + 430, + 448 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 181, + 312, + 430, + 448 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 181, + 312, + 430, + 448 + ], + "spans": [ + { + "bbox": [ + 181, + 312, + 430, + 448 + ], + "score": 0.979, + "html": "
Dataset 1Syn4ASyn5ASyn6A
Metrics (%)TPRFDRTPRFDRTPRFDR
INVASE+77.514.585.98.889.97.3
L2X65.039.348.057.474.435.5
LIME Shapley56.3 71.849.2 39.858.2 71.048.8 41.358.9 68.947.8 38.2
Knock off59.862.655.049.965.040.0
Tree61.346.975.639.466.940.0
SCFS52.866.955.350.650.451.8
LASSO61.061.255.050.053.948.8
", + "type": "table", + "image_path": "0544457c786b80e92f43a08cbe1f29286a4ec0b648ed394985aa4e4a5906042c.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 181, + 312, + 430, + 357.3333333333333 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 181, + 357.3333333333333, + 430, + 402.66666666666663 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 181, + 402.66666666666663, + 430, + 447.99999999999994 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 104, + 457, + 505, + 479 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 456, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 470 + ], + "score": 1.0, + "content": "Table 10: Relevant feature discovery results for complex synthetic datasets (Syn4A, 5A, 6A) with", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 467, + 159, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 467, + 159, + 480 + ], + "score": 1.0, + "content": "100 features", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + } + ], + "index": 18.25 + }, + { + "type": "text", + "bbox": [ + 133, + 496, + 472, + 510 + ], + "lines": [ + { + "bbox": [ + 130, + 493, + 469, + 513 + ], + "spans": [ + { + "bbox": [ + 130, + 493, + 187, + 513 + ], + "score": 1.0, + "content": "• Syn4B: If", + "type": "text" + }, + { + "bbox": [ + 188, + 497, + 232, + 509 + ], + "score": 0.9, + "content": "X _ { 1 } X _ { 3 } < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 493, + 236, + 513 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 236, + 497, + 314, + 509 + ], + "score": 0.87, + "content": "{ \\mathrm { l o g i t } } = \\exp ( X _ { 1 } X _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 493, + 383, + 513 + ], + "score": 1.0, + "content": ", otherwise, logit", + "type": "text" + }, + { + "bbox": [ + 383, + 495, + 469, + 510 + ], + "score": 0.89, + "content": "= \\textstyle \\exp ( \\sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )", + "type": "inline_equation" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 130, + 493, + 469, + 513 + ] + }, + { + "type": "text", + "bbox": [ + 133, + 511, + 504, + 535 + ], + "lines": [ + { + "bbox": [ + 131, + 509, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 131, + 509, + 188, + 525 + ], + "score": 1.0, + "content": "• Syn5B: If", + "type": "text" + }, + { + "bbox": [ + 189, + 511, + 235, + 523 + ], + "score": 0.83, + "content": "X _ { 1 } X _ { 7 } < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 509, + 240, + 525 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 240, + 511, + 318, + 524 + ], + "score": 0.84, + "content": "{ \\mathrm { l o g i t } } = \\exp ( X _ { 1 } X _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 509, + 389, + 525 + ], + "score": 1.0, + "content": ", otherwise, logit", + "type": "text" + }, + { + "bbox": [ + 389, + 511, + 505, + 524 + ], + "score": 0.83, + "content": "= - 1 0 \\times \\sin 2 X _ { 7 } + 2 | X _ { 8 } | +", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 520, + 220, + 536 + ], + "spans": [ + { + "bbox": [ + 142, + 523, + 216, + 535 + ], + "score": 0.89, + "content": "X _ { 9 } + \\exp ( - X _ { 1 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 520, + 220, + 536 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 131, + 509, + 505, + 536 + ] + }, + { + "type": "text", + "bbox": [ + 132, + 538, + 502, + 562 + ], + "lines": [ + { + "bbox": [ + 131, + 535, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 131, + 535, + 190, + 554 + ], + "score": 1.0, + "content": "• Syn6B: If", + "type": "text" + }, + { + "bbox": [ + 190, + 539, + 239, + 550 + ], + "score": 0.88, + "content": "X _ { 3 } X _ { 7 } \\ < \\ 0", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 535, + 266, + 554 + ], + "score": 1.0, + "content": ", logit", + "type": "text" + }, + { + "bbox": [ + 266, + 537, + 351, + 552 + ], + "score": 0.83, + "content": "= \\textstyle \\exp ( \\sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 535, + 423, + 554 + ], + "score": 1.0, + "content": ", otherwise, logit", + "type": "text" + }, + { + "bbox": [ + 423, + 539, + 505, + 551 + ], + "score": 0.67, + "content": "= - 1 0 \\times \\sin 2 X _ { 7 } +", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 142, + 549, + 255, + 563 + ], + "spans": [ + { + "bbox": [ + 142, + 550, + 251, + 562 + ], + "score": 0.88, + "content": "2 | X _ { 8 } | + X _ { 9 } + \\exp ( - X _ { 1 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 549, + 255, + 563 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 131, + 535, + 505, + 563 + ] + }, + { + "type": "text", + "bbox": [ + 133, + 565, + 168, + 576 + ], + "lines": [ + { + "bbox": [ + 131, + 563, + 171, + 582 + ], + "spans": [ + { + "bbox": [ + 131, + 563, + 171, + 582 + ], + "score": 1.0, + "content": "• Syn7:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 131, + 563, + 171, + 582 + ] + }, + { + "type": "list", + "bbox": [ + 152, + 578, + 463, + 634 + ], + "lines": [ + { + "bbox": [ + 151, + 578, + 321, + 592 + ], + "spans": [ + { + "bbox": [ + 151, + 578, + 171, + 592 + ], + "score": 1.0, + "content": "– If", + "type": "text" + }, + { + "bbox": [ + 172, + 579, + 239, + 591 + ], + "score": 0.81, + "content": "X _ { 1 } < 0 , X _ { 2 } < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 578, + 242, + 592 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 243, + 579, + 321, + 591 + ], + "score": 0.86, + "content": "{ \\mathrm { l o g i t } } = \\exp ( X _ { 1 } X _ { 2 } )", + "type": "inline_equation" + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 147, + 586, + 358, + 612 + ], + "spans": [ + { + "bbox": [ + 147, + 586, + 171, + 612 + ], + "score": 1.0, + "content": "– If", + "type": "text" + }, + { + "bbox": [ + 172, + 594, + 239, + 605 + ], + "score": 0.6, + "content": "X _ { 1 } < 0 , X _ { 2 } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 586, + 243, + 612 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 243, + 592, + 349, + 606 + ], + "score": 0.75, + "content": "\\scriptstyle { \\mathrm { l o g i t } } = \\exp ( \\sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 586, + 358, + 612 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 150, + 604, + 454, + 619 + ], + "spans": [ + { + "bbox": [ + 150, + 604, + 171, + 619 + ], + "score": 1.0, + "content": "– If", + "type": "text" + }, + { + "bbox": [ + 172, + 606, + 239, + 618 + ], + "score": 0.34, + "content": "X _ { 1 } \\geq 0 , X _ { 2 } < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 604, + 243, + 619 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 243, + 607, + 454, + 618 + ], + "score": 0.79, + "content": "\\mathrm { l o g i t = - 1 0 \\times \\sin 2 X _ { 7 } + 2 } | X _ { 8 } | + X _ { 9 } + \\exp ( - X _ { 1 0 } ) .", + "type": "inline_equation" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 150, + 618, + 461, + 635 + ], + "spans": [ + { + "bbox": [ + 150, + 618, + 171, + 635 + ], + "score": 1.0, + "content": "– If", + "type": "text" + }, + { + "bbox": [ + 172, + 621, + 239, + 633 + ], + "score": 0.7, + "content": "X _ { 1 } \\geq 0 , X _ { 2 } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 619, + 461, + 634 + ], + "score": 0.73, + "content": "\\begin{array} { r } { ) , \\mathrm { l o g i t } = 0 . 5 \\times \\exp ( X _ { 1 } X _ { 2 } ) + 0 . 5 \\times \\exp ( \\sum _ { i = 3 } ^ { 4 } X _ { i } ^ { 2 } - 2 ) . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 30 + } + ], + "index": 28.5, + "bbox_fs": [ + 147, + 578, + 461, + 635 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 653, + 318, + 664 + ], + "lines": [ + { + "bbox": [ + 106, + 652, + 318, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 652, + 318, + 667 + ], + "score": 1.0, + "content": "RESULTS ON SEMI-SYNTHETIC DATASETS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "In this experiment, we use real features (which have correlation across features) but generate the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "labels as in the synthetic experiments from the main paper, using Syn1-Syn6. This allows us to", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 697, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 505, + 713 + ], + "score": 1.0, + "content": "know the ground truth relevance of the features, and calculate TPR and FDR, while using unknown", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "and correlated feature distributions (instead of the unrealistic setting of i.i.d. Gaussian used in the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 720, + 484, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 484, + 734 + ], + "score": 1.0, + "content": "fully synthetic experiment). The results for the MAGGIC and PLCO datasets are given below.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 676, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 150, + 80, + 462, + 217 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 150, + 80, + 462, + 217 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 150, + 80, + 462, + 217 + ], + "spans": [ + { + "bbox": [ + 150, + 80, + 462, + 217 + ], + "score": 0.983, + "html": "
DatasetSyn4BSyn5BSyn6BSyn7
Metrics (%)TPRFDRTPRFDRTPRFDRTPRFDR
INVASE+65.530.185.015.086.527.886.832.4
L2X43.253.450.350.344.655.435.370.9
LIME56.837.271.927.269.830.256.451.0
Shapley51.443.577.224.169.330.761.845.6
Knock off5.387.473.325.259.940.154.160.0
Tree56.737.473.925.070.129.971.640.3
SCFS3.796.272.326.361.138.922.977.5
LASSO4.295.673.325.060.139.924.975.8
", + "type": "table", + "image_path": "11ee36a1f0fa1081e290fc92a98211f9b2fead60c1ea567c40f04b63db65f83b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 150, + 80, + 462, + 125.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 150, + 125.66666666666666, + 462, + 171.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 150, + 171.33333333333331, + 462, + 216.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 226, + 505, + 248 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 225, + 504, + 238 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 504, + 238 + ], + "score": 1.0, + "content": "Table 11: Relevant feature discovery results for complex synthetic datasets (Syn4B, 5B, 6B, 7) with", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 236, + 159, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 159, + 249 + ], + "score": 1.0, + "content": "100 features", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "table", + "bbox": [ + 106, + 260, + 505, + 381 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 260, + 505, + 381 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 260, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 505, + 381 + ], + "score": 0.982, + "html": "
DatasetSyn1Syn2Syn3Syn4Syn5Syn6
Metrics (%) TPRFDRTPRFDRTPRFDRTPRFDRTPRFDRTPRFDR
INVASE100.00.0100.00.0100.00.085.90.072.90.181.013.2
L2X LIME68.8 46.931.2 53.199.9 99.90.1 0.183.0 87.217.0 12.860.0 63.631.3 24.468.3 50.222.3 37.673.5 68.726.5 31.3
Shapley Knock off73.9 27.526.1 65.094.5 77.55.5 22.581.0 100.019.0 0.065.323.9 34.461.229.069.930.1
Tree100.00.0100.00.0100.00.057.0 56.329.756.1 51.629.8 40.258.0 46.742.0 53.3
SCFS30.070.053.047.0100.00.052.039.954.032.464.535.5
LASSO75.025.0100.0
25.075.00.060.733.156.129.858.241.8
", + "type": "table", + "image_path": "14434c20da91e76cd8ad69785557eb8993df2570dfe9d36380f32ed36945e602.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 106, + 260, + 505, + 300.3333333333333 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 300.3333333333333, + 505, + 340.66666666666663 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 340.66666666666663, + 505, + 380.99999999999994 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 108, + 390, + 503, + 402 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 387, + 504, + 404 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 504, + 404 + ], + "score": 1.0, + "content": "Table 12: Relevant feature discovery for real datasets with synthetic labels using MAGGIC dataset", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + } + ], + "index": 7.0 + }, + { + "type": "table", + "bbox": [ + 107, + 413, + 505, + 535 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 107, + 413, + 505, + 535 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 107, + 413, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 107, + 413, + 505, + 535 + ], + "score": 0.981, + "html": "
DatasetSyn1Syn2Syn3Syn4Syn5Syn6
Metrics (%)TPRFDRTPRFDRTPRFDRTPRFDRTPRFDRTPRFDR
INVASE35.90.0100.00.084.07.059.238.664.631.770.029.9
L2X LIME0.0 1.0100.0 99.062.2 70.337.8 29.743.6 74.956.4 25.141.9 43.555.4 55.921.5 26.876.7 68.966.9 56.833.1 43.2
Shapley Knock off5.494.668.531.567.932.132.769.439.658.648.551.5
Tree15.0 0.050.0 100.085.0 71.015.0 29.0100.0 75.00.0 25.046.1 34.552.1 66.334.558.3 54.760.040.0
SCFS10.090.061.039.093.86.243.255.743.836.963.1
LASSO31.063.655.544.5
0.0100.072.527.5100.00.039.260.833.268.245.055.0
", + "type": "table", + "image_path": "f3d1087456c13018c59b0bddc3183000e07ba7422b0107ee621a80b1b8fe35d5.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 107, + 413, + 505, + 453.6666666666667 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 107, + 453.6666666666667, + 505, + 494.33333333333337 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 107, + 494.33333333333337, + 505, + 535.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 112, + 543, + 496, + 555 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 114, + 541, + 497, + 558 + ], + "spans": [ + { + "bbox": [ + 114, + 541, + 497, + 558 + ], + "score": 1.0, + "content": "Table 13: Relevant feature discovery for real datasets with synthetic labels using PLCO dataset", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + } + ], + "index": 11.0 + }, + { + "type": "text", + "bbox": [ + 108, + 576, + 503, + 610 + ], + "lines": [ + { + "bbox": [ + 106, + 577, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 505, + 589 + ], + "score": 1.0, + "content": "As demonstrated in Tables 12 and 13, INVASE outperforms all other methods across all 6 of the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 587, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 506, + 601 + ], + "score": 1.0, + "content": "synthetic-label settings using real features. This also demonstrates the capability of INVASE in", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 599, + 392, + 611 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 392, + 611 + ], + "score": 1.0, + "content": "settings where there are unknown correlation structures in the features.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + } + ], + "page_idx": 16, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "17", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 150, + 80, + 462, + 217 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 150, + 80, + 462, + 217 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 150, + 80, + 462, + 217 + ], + "spans": [ + { + "bbox": [ + 150, + 80, + 462, + 217 + ], + "score": 0.983, + "html": "
DatasetSyn4BSyn5BSyn6BSyn7
Metrics (%)TPRFDRTPRFDRTPRFDRTPRFDR
INVASE+65.530.185.015.086.527.886.832.4
L2X43.253.450.350.344.655.435.370.9
LIME56.837.271.927.269.830.256.451.0
Shapley51.443.577.224.169.330.761.845.6
Knock off5.387.473.325.259.940.154.160.0
Tree56.737.473.925.070.129.971.640.3
SCFS3.796.272.326.361.138.922.977.5
LASSO4.295.673.325.060.139.924.975.8
", + "type": "table", + "image_path": "11ee36a1f0fa1081e290fc92a98211f9b2fead60c1ea567c40f04b63db65f83b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 150, + 80, + 462, + 125.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 150, + 125.66666666666666, + 462, + 171.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 150, + 171.33333333333331, + 462, + 216.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 226, + 505, + 248 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 225, + 504, + 238 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 504, + 238 + ], + "score": 1.0, + "content": "Table 11: Relevant feature discovery results for complex synthetic datasets (Syn4B, 5B, 6B, 7) with", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 236, + 159, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 159, + 249 + ], + "score": 1.0, + "content": "100 features", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "table", + "bbox": [ + 106, + 260, + 505, + 381 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 260, + 505, + 381 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 260, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 505, + 381 + ], + "score": 0.982, + "html": "
DatasetSyn1Syn2Syn3Syn4Syn5Syn6
Metrics (%) TPRFDRTPRFDRTPRFDRTPRFDRTPRFDRTPRFDR
INVASE100.00.0100.00.0100.00.085.90.072.90.181.013.2
L2X LIME68.8 46.931.2 53.199.9 99.90.1 0.183.0 87.217.0 12.860.0 63.631.3 24.468.3 50.222.3 37.673.5 68.726.5 31.3
Shapley Knock off73.9 27.526.1 65.094.5 77.55.5 22.581.0 100.019.0 0.065.323.9 34.461.229.069.930.1
Tree100.00.0100.00.0100.00.057.0 56.329.756.1 51.629.8 40.258.0 46.742.0 53.3
SCFS30.070.053.047.0100.00.052.039.954.032.464.535.5
LASSO75.025.0100.0
25.075.00.060.733.156.129.858.241.8
", + "type": "table", + "image_path": "14434c20da91e76cd8ad69785557eb8993df2570dfe9d36380f32ed36945e602.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 106, + 260, + 505, + 300.3333333333333 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 300.3333333333333, + 505, + 340.66666666666663 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 340.66666666666663, + 505, + 380.99999999999994 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 108, + 390, + 503, + 402 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 387, + 504, + 404 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 504, + 404 + ], + "score": 1.0, + "content": "Table 12: Relevant feature discovery for real datasets with synthetic labels using MAGGIC dataset", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + } + ], + "index": 7.0 + }, + { + "type": "table", + "bbox": [ + 107, + 413, + 505, + 535 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 107, + 413, + 505, + 535 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 107, + 413, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 107, + 413, + 505, + 535 + ], + "score": 0.981, + "html": "
DatasetSyn1Syn2Syn3Syn4Syn5Syn6
Metrics (%)TPRFDRTPRFDRTPRFDRTPRFDRTPRFDRTPRFDR
INVASE35.90.0100.00.084.07.059.238.664.631.770.029.9
L2X LIME0.0 1.0100.0 99.062.2 70.337.8 29.743.6 74.956.4 25.141.9 43.555.4 55.921.5 26.876.7 68.966.9 56.833.1 43.2
Shapley Knock off5.494.668.531.567.932.132.769.439.658.648.551.5
Tree15.0 0.050.0 100.085.0 71.015.0 29.0100.0 75.00.0 25.046.1 34.552.1 66.334.558.3 54.760.040.0
SCFS10.090.061.039.093.86.243.255.743.836.963.1
LASSO31.063.655.544.5
0.0100.072.527.5100.00.039.260.833.268.245.055.0
", + "type": "table", + "image_path": "f3d1087456c13018c59b0bddc3183000e07ba7422b0107ee621a80b1b8fe35d5.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 107, + 413, + 505, + 453.6666666666667 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 107, + 453.6666666666667, + 505, + 494.33333333333337 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 107, + 494.33333333333337, + 505, + 535.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 112, + 543, + 496, + 555 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 114, + 541, + 497, + 558 + ], + "spans": [ + { + "bbox": [ + 114, + 541, + 497, + 558 + ], + "score": 1.0, + "content": "Table 13: Relevant feature discovery for real datasets with synthetic labels using PLCO dataset", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + } + ], + "index": 11.0 + }, + { + "type": "text", + "bbox": [ + 108, + 576, + 503, + 610 + ], + "lines": [ + { + "bbox": [ + 106, + 577, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 505, + 589 + ], + "score": 1.0, + "content": "As demonstrated in Tables 12 and 13, INVASE outperforms all other methods across all 6 of the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 587, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 506, + 601 + ], + "score": 1.0, + "content": "synthetic-label settings using real features. This also demonstrates the capability of INVASE in", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 599, + 392, + 611 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 392, + 611 + ], + "score": 1.0, + "content": "settings where there are unknown correlation structures in the features.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 106, + 577, + 506, + 611 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 433, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 435, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 435, + 95 + ], + "score": 1.0, + "content": "5.1 PREDICTIVE PERFORMANCE COMPARISON ON REAL-WORLD DATASETS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 506, + 170 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 506, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 506, + 115 + ], + "score": 1.0, + "content": "In this experiment, we evaluate the predictive performance gains of using each feature selection", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "score": 1.0, + "content": "method as a pre-processing step on the two real datasets, MAGGIC and PLCO (as was done for", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 125, + 506, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 506, + 137 + ], + "score": 1.0, + "content": "synthetic data in Section 4.1.3). For each method, we first perform feature selection and then train", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 136, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 505, + 147 + ], + "score": 1.0, + "content": "a predictive model on top of the feature-selected data, where the model has the same architecture as", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 147, + 506, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 506, + 160 + ], + "score": 1.0, + "content": "the INVASE predictor network (to create a fair comparison of methods). As can be seen in Table", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 158, + 345, + 170 + ], + "spans": [ + { + "bbox": [ + 106, + 158, + 345, + 170 + ], + "score": 1.0, + "content": "14, INVASE significantly outperform the other approaches.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "table", + "bbox": [ + 106, + 180, + 526, + 333 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 180, + 526, + 333 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 180, + 526, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 526, + 333 + ], + "score": 0.985, + "html": "
DatasetsMAGGICPLCO
Labels3-year5-year5-year10-year
MetricsAUROCAUPRCAUROCAUPRCAUROCAUPRCAUROCAUPRC
INVASE0.7220.6550.7400.8670.6370.3290.6730.506
L2X0.6090.5290.6070.7940.5580.1700.5830.365
LIME0.6370.55960.6340.8080.5970.1830.6010.374
Shapley0.6410.5570.6170.7970.6140.1940.6150.381
Knockoff0.6860.6140.7110.8530.6190.2300.6580.475
Tree0.6780.6040.7080.8500.6320.2690.6550.469
SCFS0.6830.6230.7230.8570.6320.2310.6320.444
LASSO0.6920.6150.7090.8470.6230.2180.6560.467
", + "type": "table", + "image_path": "c803766f451fc5b3654afb16d72b0390c786a1dd57e142744da98c4a33ef8aa9.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 106, + 180, + 526, + 231.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 106, + 231.0, + 526, + 282.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 106, + 282.0, + 526, + 333.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 106, + 341, + 505, + 363 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 339, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 505, + 354 + ], + "score": 1.0, + "content": "Table 14: Predictive Performance Comparison on two real-world datasets (MAGGIC and PLCO) in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 352, + 231, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 231, + 363 + ], + "score": 1.0, + "content": "terms of AUROC and AUPRC", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + } + ], + "index": 9.25 + } + ], + "page_idx": 17, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "18", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 433, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 435, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 435, + 95 + ], + "score": 1.0, + "content": "5.1 PREDICTIVE PERFORMANCE COMPARISON ON REAL-WORLD DATASETS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 506, + 170 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 506, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 506, + 115 + ], + "score": 1.0, + "content": "In this experiment, we evaluate the predictive performance gains of using each feature selection", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "score": 1.0, + "content": "method as a pre-processing step on the two real datasets, MAGGIC and PLCO (as was done for", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 125, + 506, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 506, + 137 + ], + "score": 1.0, + "content": "synthetic data in Section 4.1.3). For each method, we first perform feature selection and then train", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 136, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 505, + 147 + ], + "score": 1.0, + "content": "a predictive model on top of the feature-selected data, where the model has the same architecture as", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 147, + 506, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 506, + 160 + ], + "score": 1.0, + "content": "the INVASE predictor network (to create a fair comparison of methods). As can be seen in Table", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 158, + 345, + 170 + ], + "spans": [ + { + "bbox": [ + 106, + 158, + 345, + 170 + ], + "score": 1.0, + "content": "14, INVASE significantly outperform the other approaches.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 102, + 506, + 170 + ] + }, + { + "type": "table", + "bbox": [ + 106, + 180, + 526, + 333 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 180, + 526, + 333 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 180, + 526, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 526, + 333 + ], + "score": 0.985, + "html": "
DatasetsMAGGICPLCO
Labels3-year5-year5-year10-year
MetricsAUROCAUPRCAUROCAUPRCAUROCAUPRCAUROCAUPRC
INVASE0.7220.6550.7400.8670.6370.3290.6730.506
L2X0.6090.5290.6070.7940.5580.1700.5830.365
LIME0.6370.55960.6340.8080.5970.1830.6010.374
Shapley0.6410.5570.6170.7970.6140.1940.6150.381
Knockoff0.6860.6140.7110.8530.6190.2300.6580.475
Tree0.6780.6040.7080.8500.6320.2690.6550.469
SCFS0.6830.6230.7230.8570.6320.2310.6320.444
LASSO0.6920.6150.7090.8470.6230.2180.6560.467
", + "type": "table", + "image_path": "c803766f451fc5b3654afb16d72b0390c786a1dd57e142744da98c4a33ef8aa9.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 106, + 180, + 526, + 231.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 106, + 231.0, + 526, + 282.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 106, + 282.0, + 526, + 333.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 106, + 341, + 505, + 363 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 339, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 505, + 354 + ], + "score": 1.0, + "content": "Table 14: Predictive Performance Comparison on two real-world datasets (MAGGIC and PLCO) in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 352, + 231, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 231, + 363 + ], + "score": 1.0, + "content": "terms of AUROC and AUPRC", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + } + ], + "index": 9.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 175, + 123, + 436, + 267 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 82, + 491, + 108 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 83, + 489, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 489, + 95 + ], + "score": 1.0, + "content": "CORRELATIONS BETWEEN FEATURES AND LABELS IN THE SYNTHETIC AND", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 98, + 271, + 108 + ], + "spans": [ + { + "bbox": [ + 107, + 98, + 271, + 108 + ], + "score": 1.0, + "content": "SEMI-SYNTHETIC EXPERIMENTS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 175, + 123, + 436, + 267 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 175, + 123, + 436, + 267 + ], + "spans": [ + { + "bbox": [ + 175, + 123, + 436, + 267 + ], + "score": 0.98, + "html": "
VariablesSyn1Syn2Syn3Syn4Syn5Syn6
X1 X0.003 0.0010.008 0.0050.006 0.0060.009 0.0050.007 0.0150.006 0.005
X30.006 0.0060.0110.0010.0170.0160.010
X40.0030.0030.0020.0000.002
X50.0030.0150.0220.0040.0170.028
X60.0030.0040.0050.0020.0040.005
X70.0130.0090.4810.0020.2420.235
X80.0100.0080.0120.0030.0100.022
X90.0010.0030.2390.0020.1150.121
X100.0020.0030.3080.0030.1490.144
X110.0140.0120.0040.0280.0180.002
", + "type": "table", + "image_path": "e35cf65158a273158031a10406da7db9ca256b0bc8cb405f712899e36ab56db7.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 175, + 123, + 436, + 171.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 175, + 171.0, + 436, + 219.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 175, + 219.0, + 436, + 267.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 108, + 275, + 505, + 309 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 275, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 505, + 287 + ], + "score": 1.0, + "content": "Table 15: Correlation between features and labels in Synthetic datasets with 100 features. Ground", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 287, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 458, + 298 + ], + "score": 1.0, + "content": "truth (in the global sense) relevant features are given in bold. Features with correlation", + "type": "text" + }, + { + "bbox": [ + 458, + 287, + 489, + 297 + ], + "score": 0.86, + "content": "> 0 . 0 5", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 287, + 505, + 298 + ], + "score": 1.0, + "content": "are", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 297, + 182, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 182, + 309 + ], + "score": 1.0, + "content": "highlighted in red.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 108, + 322, + 504, + 379 + ], + "lines": [ + { + "bbox": [ + 106, + 323, + 504, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 504, + 335 + ], + "score": 1.0, + "content": "As can be seen in Table 15, among 33 relevant features, only 9 features have more than 0.05 (linear)", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 333, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 506, + 347 + ], + "score": 1.0, + "content": "correlation with the label. In particular, using a linear model, it is very hard to discover the relevant", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 345, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 505, + 357 + ], + "score": 1.0, + "content": "features. However, Knock-off (based on LASSO and linear correlations), LASSO, and SCFS are", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 356, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 506, + 370 + ], + "score": 1.0, + "content": "linear models, resulting in a poor performance in our experiments. The above table results are", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 366, + 350, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 350, + 381 + ], + "score": 1.0, + "content": "directly reflected in the results given in the main manuscript.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10 + }, + { + "type": "table", + "bbox": [ + 176, + 389, + 436, + 532 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 176, + 389, + 436, + 532 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 176, + 389, + 436, + 532 + ], + "spans": [ + { + "bbox": [ + 176, + 389, + 436, + 532 + ], + "score": 0.98, + "html": "
VariablesSyn1Syn2Syn3Syn4Syn5Syn6
X10.028 0.0020.030 0.0110.070 0.0090.011 0.0010.044 0.0010.026 0.012
X0.0180.0790.0080.0380.0060.046
X3 X40.0050.1130.0060.0560.0010.055
0.0060.0340.013
X5 X60.0190.1140.032 0.0270.0990.0160.036
0.0050.0100.0000.0180.004
X70.3670.2620.272
X80.0200.0300.1120.0230.0750.082
X90.0250.0220.2990.0060.2160.200
X100.070.0430.3280.0270.2220.206
X110.0090.0060.0340.0460.0180.058
", + "type": "table", + "image_path": "7d8c11eb2c5b2ac1feec8ec8c572bc606876dabb945aac1fbe26d5c9b2f2d215.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 176, + 389, + 436, + 436.6666666666667 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 176, + 436.6666666666667, + 436, + 484.33333333333337 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 176, + 484.33333333333337, + 436, + 532.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 542, + 502, + 564 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "Table 16: Correlation between features and labels in MAGGIC datasets. Ground truth relevant", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 553, + 443, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 331, + 564 + ], + "score": 1.0, + "content": "features are described in bold. Features with correlation", + "type": "text" + }, + { + "bbox": [ + 331, + 553, + 361, + 563 + ], + "score": 0.86, + "content": "> 0 . 0 5", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 553, + 443, + 564 + ], + "score": 1.0, + "content": "are described in red", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + } + ], + "index": 15.25 + }, + { + "type": "text", + "bbox": [ + 107, + 576, + 505, + 621 + ], + "lines": [ + { + "bbox": [ + 106, + 576, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 505, + 588 + ], + "score": 1.0, + "content": "We do the same analysis for the MAGGIC dataset; results are given in Table 16. We see that here the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 588, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 600 + ], + "score": 1.0, + "content": "linear correlation with the label is stronger and this is reflected in Tables 12 and 13, where all of the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 599, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 611 + ], + "score": 1.0, + "content": "linear models performed better than in the fully-synthetic settings. However, we note that although", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 610, + 453, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 453, + 622 + ], + "score": 1.0, + "content": "they had a better performance, in most cases it was still not comparable with INVASE.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5 + } + ], + "page_idx": 18, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "19", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 175, + 123, + 436, + 267 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 82, + 491, + 108 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 83, + 489, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 489, + 95 + ], + "score": 1.0, + "content": "CORRELATIONS BETWEEN FEATURES AND LABELS IN THE SYNTHETIC AND", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 98, + 271, + 108 + ], + "spans": [ + { + "bbox": [ + 107, + 98, + 271, + 108 + ], + "score": 1.0, + "content": "SEMI-SYNTHETIC EXPERIMENTS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 175, + 123, + 436, + 267 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 175, + 123, + 436, + 267 + ], + "spans": [ + { + "bbox": [ + 175, + 123, + 436, + 267 + ], + "score": 0.98, + "html": "
VariablesSyn1Syn2Syn3Syn4Syn5Syn6
X1 X0.003 0.0010.008 0.0050.006 0.0060.009 0.0050.007 0.0150.006 0.005
X30.006 0.0060.0110.0010.0170.0160.010
X40.0030.0030.0020.0000.002
X50.0030.0150.0220.0040.0170.028
X60.0030.0040.0050.0020.0040.005
X70.0130.0090.4810.0020.2420.235
X80.0100.0080.0120.0030.0100.022
X90.0010.0030.2390.0020.1150.121
X100.0020.0030.3080.0030.1490.144
X110.0140.0120.0040.0280.0180.002
", + "type": "table", + "image_path": "e35cf65158a273158031a10406da7db9ca256b0bc8cb405f712899e36ab56db7.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 175, + 123, + 436, + 171.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 175, + 171.0, + 436, + 219.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 175, + 219.0, + 436, + 267.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 108, + 275, + 505, + 309 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 275, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 505, + 287 + ], + "score": 1.0, + "content": "Table 15: Correlation between features and labels in Synthetic datasets with 100 features. Ground", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 287, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 458, + 298 + ], + "score": 1.0, + "content": "truth (in the global sense) relevant features are given in bold. Features with correlation", + "type": "text" + }, + { + "bbox": [ + 458, + 287, + 489, + 297 + ], + "score": 0.86, + "content": "> 0 . 0 5", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 287, + 505, + 298 + ], + "score": 1.0, + "content": "are", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 297, + 182, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 182, + 309 + ], + "score": 1.0, + "content": "highlighted in red.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 108, + 322, + 504, + 379 + ], + "lines": [ + { + "bbox": [ + 106, + 323, + 504, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 504, + 335 + ], + "score": 1.0, + "content": "As can be seen in Table 15, among 33 relevant features, only 9 features have more than 0.05 (linear)", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 333, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 506, + 347 + ], + "score": 1.0, + "content": "correlation with the label. In particular, using a linear model, it is very hard to discover the relevant", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 345, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 505, + 357 + ], + "score": 1.0, + "content": "features. However, Knock-off (based on LASSO and linear correlations), LASSO, and SCFS are", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 356, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 506, + 370 + ], + "score": 1.0, + "content": "linear models, resulting in a poor performance in our experiments. The above table results are", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 366, + 350, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 350, + 381 + ], + "score": 1.0, + "content": "directly reflected in the results given in the main manuscript.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 323, + 506, + 381 + ] + }, + { + "type": "table", + "bbox": [ + 176, + 389, + 436, + 532 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 176, + 389, + 436, + 532 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 176, + 389, + 436, + 532 + ], + "spans": [ + { + "bbox": [ + 176, + 389, + 436, + 532 + ], + "score": 0.98, + "html": "
VariablesSyn1Syn2Syn3Syn4Syn5Syn6
X10.028 0.0020.030 0.0110.070 0.0090.011 0.0010.044 0.0010.026 0.012
X0.0180.0790.0080.0380.0060.046
X3 X40.0050.1130.0060.0560.0010.055
0.0060.0340.013
X5 X60.0190.1140.032 0.0270.0990.0160.036
0.0050.0100.0000.0180.004
X70.3670.2620.272
X80.0200.0300.1120.0230.0750.082
X90.0250.0220.2990.0060.2160.200
X100.070.0430.3280.0270.2220.206
X110.0090.0060.0340.0460.0180.058
", + "type": "table", + "image_path": "7d8c11eb2c5b2ac1feec8ec8c572bc606876dabb945aac1fbe26d5c9b2f2d215.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 176, + 389, + 436, + 436.6666666666667 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 176, + 436.6666666666667, + 436, + 484.33333333333337 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 176, + 484.33333333333337, + 436, + 532.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 542, + 502, + 564 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "Table 16: Correlation between features and labels in MAGGIC datasets. Ground truth relevant", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 553, + 443, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 331, + 564 + ], + "score": 1.0, + "content": "features are described in bold. Features with correlation", + "type": "text" + }, + { + "bbox": [ + 331, + 553, + 361, + 563 + ], + "score": 0.86, + "content": "> 0 . 0 5", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 553, + 443, + 564 + ], + "score": 1.0, + "content": "are described in red", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + } + ], + "index": 15.25 + }, + { + "type": "text", + "bbox": [ + 107, + 576, + 505, + 621 + ], + "lines": [ + { + "bbox": [ + 106, + 576, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 505, + 588 + ], + "score": 1.0, + "content": "We do the same analysis for the MAGGIC dataset; results are given in Table 16. We see that here the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 588, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 600 + ], + "score": 1.0, + "content": "linear correlation with the label is stronger and this is reflected in Tables 12 and 13, where all of the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 599, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 611 + ], + "score": 1.0, + "content": "linear models performed better than in the fully-synthetic settings. However, we note that although", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 610, + 453, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 453, + 622 + ], + "score": 1.0, + "content": "they had a better performance, in most cases it was still not comparable with INVASE.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 576, + 505, + 622 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 266, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 266, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 266, + 96 + ], + "score": 1.0, + "content": "DEFINITION OF TPR AND FDR", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table", + "bbox": [ + 169, + 111, + 441, + 237 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 169, + 111, + 441, + 237 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 169, + 111, + 441, + 237 + ], + "spans": [ + { + "bbox": [ + 169, + 111, + 441, + 237 + ], + "score": 0.952, + "html": "
True Condition
PositiveNegative
PredictedConditionPositiveTruePositiveFalsePositive
NegativeFalseNegativeTrueNegative
", + "type": "table", + "image_path": "64d2b8578fbbdd44b42be31dcbf0b8937c73e210d2b15db9b40723aa8fa80a58.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 169, + 111, + 441, + 153.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 169, + 153.0, + 441, + 195.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 169, + 195.0, + 441, + 237.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 132, + 328, + 480, + 341 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 129, + 327, + 480, + 343 + ], + "spans": [ + { + "bbox": [ + 129, + 327, + 480, + 343 + ], + "score": 1.0, + "content": "Figure 3: The definitions of True Positive Rate (TPR) and False Discovery Rate (FDR)", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 169, + 250, + 437, + 313 + ], + "lines": [ + { + "bbox": [ + 333, + 251, + 395, + 263 + ], + "spans": [ + { + "bbox": [ + 333, + 251, + 395, + 263 + ], + "score": 1.0, + "content": "୘୰୳ୣ ୔୭ୱ୧୲୧୴ୣ", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 172, + 256, + 432, + 279 + ], + "spans": [ + { + "bbox": [ + 172, + 256, + 284, + 279 + ], + "score": 1.0, + "content": "True Positive Rate (TPR)", + "type": "text" + }, + { + "bbox": [ + 284, + 259, + 295, + 268 + ], + "score": 0.37, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 256, + 432, + 279 + ], + "score": 1.0, + "content": "୘୰୳ୣ ୔୭ୱ୧୲୧୴ୣା୊ୟ୪ୱୣ ୒ୣ୥ୟ୲୧୴ୣ", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 336, + 287, + 404, + 299 + ], + "spans": [ + { + "bbox": [ + 336, + 287, + 404, + 299 + ], + "score": 1.0, + "content": "୊ୟ୪ୱୣ ୔୭ୱ୧୲୧୴ୣ", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 167, + 292, + 437, + 315 + ], + "spans": [ + { + "bbox": [ + 167, + 292, + 291, + 315 + ], + "score": 1.0, + "content": "False Discovery Rate (FDR)", + "type": "text" + }, + { + "bbox": [ + 291, + 295, + 303, + 304 + ], + "score": 0.4, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 292, + 365, + 315 + ], + "score": 1.0, + "content": "୘୰୳ୣ ୔୭ୱ୧୲୧୴ୣ", + "type": "text" + }, + { + "bbox": [ + 373, + 292, + 437, + 315 + ], + "score": 1.0, + "content": "୊ୟ୪ୱୣ ୔୭ୱ୧୲୧୴ୣ", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 365, + 303, + 372, + 311 + ], + "spans": [ + { + "bbox": [ + 365, + 303, + 372, + 311 + ], + "score": 0.27, + "content": "^ +", + "type": "inline_equation" + } + ], + "index": 8 + } + ], + "index": 6 + } + ], + "page_idx": 19, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 266, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 266, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 266, + 96 + ], + "score": 1.0, + "content": "DEFINITION OF TPR AND FDR", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 81, + 266, + 96 + ] + }, + { + "type": "table", + "bbox": [ + 169, + 111, + 441, + 237 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 169, + 111, + 441, + 237 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 169, + 111, + 441, + 237 + ], + "spans": [ + { + "bbox": [ + 169, + 111, + 441, + 237 + ], + "score": 0.952, + "html": "
True Condition
PositiveNegative
PredictedConditionPositiveTruePositiveFalsePositive
NegativeFalseNegativeTrueNegative
", + "type": "table", + "image_path": "64d2b8578fbbdd44b42be31dcbf0b8937c73e210d2b15db9b40723aa8fa80a58.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 169, + 111, + 441, + 153.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 169, + 153.0, + 441, + 195.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 169, + 195.0, + 441, + 237.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 132, + 328, + 480, + 341 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 129, + 327, + 480, + 343 + ], + "spans": [ + { + "bbox": [ + 129, + 327, + 480, + 343 + ], + "score": 1.0, + "content": "Figure 3: The definitions of True Positive Rate (TPR) and False Discovery Rate (FDR)", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + } + ], + "index": 5.5 + }, + { + "type": "list", + "bbox": [ + 169, + 250, + 437, + 313 + ], + "lines": [ + { + "bbox": [ + 333, + 251, + 395, + 263 + ], + "spans": [ + { + "bbox": [ + 333, + 251, + 395, + 263 + ], + "score": 1.0, + "content": "୘୰୳ୣ ୔୭ୱ୧୲୧୴ୣ", + "type": "text" + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 172, + 256, + 432, + 279 + ], + "spans": [ + { + "bbox": [ + 172, + 256, + 284, + 279 + ], + "score": 1.0, + "content": "True Positive Rate (TPR)", + "type": "text" + }, + { + "bbox": [ + 284, + 259, + 295, + 268 + ], + "score": 0.37, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 256, + 432, + 279 + ], + "score": 1.0, + "content": "୘୰୳ୣ ୔୭ୱ୧୲୧୴ୣା୊ୟ୪ୱୣ ୒ୣ୥ୟ୲୧୴ୣ", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 336, + 287, + 404, + 299 + ], + "spans": [ + { + "bbox": [ + 336, + 287, + 404, + 299 + ], + "score": 1.0, + "content": "୊ୟ୪ୱୣ ୔୭ୱ୧୲୧୴ୣ", + "type": "text" + } + ], + "index": 6, + "is_list_end_line": true + }, + { + "bbox": [ + 167, + 292, + 437, + 315 + ], + "spans": [ + { + "bbox": [ + 167, + 292, + 291, + 315 + ], + "score": 1.0, + "content": "False Discovery Rate (FDR)", + "type": "text" + }, + { + "bbox": [ + 291, + 295, + 303, + 304 + ], + "score": 0.4, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 292, + 365, + 315 + ], + "score": 1.0, + "content": "୘୰୳ୣ ୔୭ୱ୧୲୧୴ୣ", + "type": "text" + }, + { + "bbox": [ + 373, + 292, + 437, + 315 + ], + "score": 1.0, + "content": "୊ୟ୪ୱୣ ୔୭ୱ୧୲୧୴ୣ", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 365, + 303, + 372, + 311 + ], + "spans": [ + { + "bbox": [ + 365, + 303, + 372, + 311 + ], + "score": 0.27, + "content": "^ +", + "type": "inline_equation" + } + ], + "index": 8, + "is_list_end_line": true + } + ], + "index": 6, + "bbox_fs": [ + 167, + 251, + 437, + 315 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 207, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 208, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 208, + 96 + ], + "score": 1.0, + "content": "COMPUTER VISION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 106, + 505, + 172 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 505, + 119 + ], + "score": 1.0, + "content": "Another natural application of INVASE is in computer vision. To briefly demonstrate the applica-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 116, + 505, + 130 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 505, + 130 + ], + "score": 1.0, + "content": "bility and capability of INVASE to computer vision, we conduct two experiments using the Kaggle", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 505, + 141 + ], + "score": 1.0, + "content": "Dogs vs. Cats dataset (https://www.kaggle.com/c/dogs-vs-cats) [6] and the Oxford", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "score": 1.0, + "content": "Pet dataset (http://www.robots.ox.ac.uk/˜vgg/data/pets/) [20]. The goal is to se-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 150, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 144, + 163 + ], + "score": 1.0, + "content": "lect a set", + "type": "text" + }, + { + "bbox": [ + 144, + 150, + 175, + 161 + ], + "score": 0.8, + "content": "1 6 \\times 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 150, + 505, + 163 + ], + "score": 1.0, + "content": "patches of each image that maximize the predictive capability of a model. In order", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 160, + 435, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 329, + 173 + ], + "score": 1.0, + "content": "to apply INVASE to this problem, we simply treat each", + "type": "text" + }, + { + "bbox": [ + 329, + 161, + 361, + 172 + ], + "score": 0.44, + "content": "1 6 \\times 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 160, + 435, + 173 + ], + "score": 1.0, + "content": "patch as a feature.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 178, + 505, + 222 + ], + "lines": [ + { + "bbox": [ + 105, + 176, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 190 + ], + "score": 1.0, + "content": "We use the U-Net [25] architecture for the selector network and the VGG network [28] architecture", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 189, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 505, + 201 + ], + "score": 1.0, + "content": "for the predictor and baseline networks. Below we give qualitative results of INVASE applied to", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 199, + 506, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 506, + 213 + ], + "score": 1.0, + "content": "these datasets, where we see that INVASE successfully identifies patches of each image in which", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 211, + 217, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 211, + 217, + 222 + ], + "score": 1.0, + "content": "the animal’s face is visible.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "image", + "bbox": [ + 120, + 224, + 491, + 669 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 120, + 224, + 491, + 669 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 224, + 491, + 669 + ], + "spans": [ + { + "bbox": [ + 120, + 224, + 491, + 669 + ], + "score": 0.978, + "type": "image", + "image_path": "4f36cf05a53bf3d7e37f5224237ed6e770fab264b6463ced2d9ee180b9a626b6.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 120, + 224, + 491, + 372.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 120, + 372.33333333333337, + 491, + 520.6666666666667 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 120, + 520.6666666666667, + 491, + 669.0000000000001 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 129, + 673, + 481, + 685 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 130, + 672, + 480, + 687 + ], + "spans": [ + { + "bbox": [ + 130, + 672, + 207, + 687 + ], + "score": 1.0, + "content": "Figure 4: Selected", + "type": "text" + }, + { + "bbox": [ + 208, + 673, + 239, + 684 + ], + "score": 0.64, + "content": "1 6 \\mathrm { ~ x ~ } 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 672, + 480, + 687 + ], + "score": 1.0, + "content": "patches by INVASE on Kaggle Dogs vs. Cats dataset - Cats", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + } + ], + "index": 13.0 + } + ], + "page_idx": 20, + "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": [ + 298, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 207, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 208, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 208, + 96 + ], + "score": 1.0, + "content": "COMPUTER VISION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 106, + 505, + 172 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 505, + 119 + ], + "score": 1.0, + "content": "Another natural application of INVASE is in computer vision. To briefly demonstrate the applica-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 116, + 505, + 130 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 505, + 130 + ], + "score": 1.0, + "content": "bility and capability of INVASE to computer vision, we conduct two experiments using the Kaggle", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 505, + 141 + ], + "score": 1.0, + "content": "Dogs vs. Cats dataset (https://www.kaggle.com/c/dogs-vs-cats) [6] and the Oxford", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "score": 1.0, + "content": "Pet dataset (http://www.robots.ox.ac.uk/˜vgg/data/pets/) [20]. The goal is to se-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 150, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 144, + 163 + ], + "score": 1.0, + "content": "lect a set", + "type": "text" + }, + { + "bbox": [ + 144, + 150, + 175, + 161 + ], + "score": 0.8, + "content": "1 6 \\times 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 150, + 505, + 163 + ], + "score": 1.0, + "content": "patches of each image that maximize the predictive capability of a model. In order", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 160, + 435, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 329, + 173 + ], + "score": 1.0, + "content": "to apply INVASE to this problem, we simply treat each", + "type": "text" + }, + { + "bbox": [ + 329, + 161, + 361, + 172 + ], + "score": 0.44, + "content": "1 6 \\times 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 160, + 435, + 173 + ], + "score": 1.0, + "content": "patch as a feature.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 106, + 505, + 173 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 178, + 505, + 222 + ], + "lines": [ + { + "bbox": [ + 105, + 176, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 190 + ], + "score": 1.0, + "content": "We use the U-Net [25] architecture for the selector network and the VGG network [28] architecture", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 189, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 505, + 201 + ], + "score": 1.0, + "content": "for the predictor and baseline networks. Below we give qualitative results of INVASE applied to", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 199, + 506, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 506, + 213 + ], + "score": 1.0, + "content": "these datasets, where we see that INVASE successfully identifies patches of each image in which", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 211, + 217, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 211, + 217, + 222 + ], + "score": 1.0, + "content": "the animal’s face is visible.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 176, + 506, + 222 + ] + }, + { + "type": "image", + "bbox": [ + 120, + 224, + 491, + 669 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 120, + 224, + 491, + 669 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 224, + 491, + 669 + ], + "spans": [ + { + "bbox": [ + 120, + 224, + 491, + 669 + ], + "score": 0.978, + "type": "image", + "image_path": "4f36cf05a53bf3d7e37f5224237ed6e770fab264b6463ced2d9ee180b9a626b6.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 120, + 224, + 491, + 372.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 120, + 372.33333333333337, + 491, + 520.6666666666667 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 120, + 520.6666666666667, + 491, + 669.0000000000001 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 129, + 673, + 481, + 685 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 130, + 672, + 480, + 687 + ], + "spans": [ + { + "bbox": [ + 130, + 672, + 207, + 687 + ], + "score": 1.0, + "content": "Figure 4: Selected", + "type": "text" + }, + { + "bbox": [ + 208, + 673, + 239, + 684 + ], + "score": 0.64, + "content": "1 6 \\mathrm { ~ x ~ } 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 672, + 480, + 687 + ], + "score": 1.0, + "content": "patches by INVASE on Kaggle Dogs vs. Cats dataset - Cats", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + } + ], + "index": 13.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 120, + 158, + 491, + 627 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 120, + 158, + 491, + 627 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 158, + 491, + 627 + ], + "spans": [ + { + "bbox": [ + 120, + 158, + 491, + 627 + ], + "score": 0.978, + "type": "image", + "image_path": "aa7861ab9378342c4713f4385cc0c535523fb2e28b91aa84c9951a7e10e9b6d0.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 120, + 158, + 491, + 314.33333333333337 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 120, + 314.33333333333337, + 491, + 470.66666666666674 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 120, + 470.66666666666674, + 491, + 627.0000000000001 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 127, + 629, + 483, + 642 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 627, + 482, + 644 + ], + "spans": [ + { + "bbox": [ + 128, + 627, + 205, + 644 + ], + "score": 1.0, + "content": "Figure 5: Selected", + "type": "text" + }, + { + "bbox": [ + 206, + 630, + 237, + 640 + ], + "score": 0.53, + "content": "1 6 \\times 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 627, + 482, + 644 + ], + "score": 1.0, + "content": "patches by INVASE on Kaggle Dogs vs. Cats dataset - Dogs", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + } + ], + "page_idx": 21, + "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, + 761 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 120, + 158, + 491, + 627 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 120, + 158, + 491, + 627 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 158, + 491, + 627 + ], + "spans": [ + { + "bbox": [ + 120, + 158, + 491, + 627 + ], + "score": 0.978, + "type": "image", + "image_path": "aa7861ab9378342c4713f4385cc0c535523fb2e28b91aa84c9951a7e10e9b6d0.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 120, + 158, + 491, + 314.33333333333337 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 120, + 314.33333333333337, + 491, + 470.66666666666674 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 120, + 470.66666666666674, + 491, + 627.0000000000001 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 127, + 629, + 483, + 642 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 627, + 482, + 644 + ], + "spans": [ + { + "bbox": [ + 128, + 627, + 205, + 644 + ], + "score": 1.0, + "content": "Figure 5: Selected", + "type": "text" + }, + { + "bbox": [ + 206, + 630, + 237, + 640 + ], + "score": 0.53, + "content": "1 6 \\times 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 627, + 482, + 644 + ], + "score": 1.0, + "content": "patches by INVASE on Kaggle Dogs vs. Cats dataset - Dogs", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 120, + 182, + 491, + 606 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 120, + 182, + 491, + 606 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 182, + 491, + 606 + ], + "spans": [ + { + "bbox": [ + 120, + 182, + 491, + 606 + ], + "score": 0.978, + "type": "image", + "image_path": "b5bc222942ad195921fdf291082c28ac5a6e4f8c2d9edef9031184a9a0ca0f60.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 120, + 182, + 491, + 323.33333333333337 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 120, + 323.33333333333337, + 491, + 464.66666666666674 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 120, + 464.66666666666674, + 491, + 606.0000000000001 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 152, + 611, + 459, + 623 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 153, + 610, + 458, + 624 + ], + "spans": [ + { + "bbox": [ + 153, + 610, + 228, + 624 + ], + "score": 1.0, + "content": "Figure 6: Selected", + "type": "text" + }, + { + "bbox": [ + 229, + 612, + 260, + 622 + ], + "score": 0.55, + "content": "1 6 \\times 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 610, + 458, + 624 + ], + "score": 1.0, + "content": "patches by INVASE on Oxford Pet dataset - Cats", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + } + ], + "page_idx": 22, + "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": [ + 298, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 120, + 182, + 491, + 606 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 120, + 182, + 491, + 606 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 182, + 491, + 606 + ], + "spans": [ + { + "bbox": [ + 120, + 182, + 491, + 606 + ], + "score": 0.978, + "type": "image", + "image_path": "b5bc222942ad195921fdf291082c28ac5a6e4f8c2d9edef9031184a9a0ca0f60.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 120, + 182, + 491, + 323.33333333333337 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 120, + 323.33333333333337, + 491, + 464.66666666666674 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 120, + 464.66666666666674, + 491, + 606.0000000000001 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 152, + 611, + 459, + 623 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 153, + 610, + 458, + 624 + ], + "spans": [ + { + "bbox": [ + 153, + 610, + 228, + 624 + ], + "score": 1.0, + "content": "Figure 6: Selected", + "type": "text" + }, + { + "bbox": [ + 229, + 612, + 260, + 622 + ], + "score": 0.55, + "content": "1 6 \\times 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 610, + 458, + 624 + ], + "score": 1.0, + "content": "patches by INVASE on Oxford Pet dataset - Cats", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 120, + 181, + 490, + 606 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 120, + 181, + 490, + 606 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 181, + 490, + 606 + ], + "spans": [ + { + "bbox": [ + 120, + 181, + 490, + 606 + ], + "score": 0.978, + "type": "image", + "image_path": "c0d45684db148f7fe42f9625cf27b015fa3f4dba35149e59b0d12a308dbc8f23.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 120, + 181, + 490, + 322.66666666666663 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 120, + 322.66666666666663, + 490, + 464.33333333333326 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 120, + 464.33333333333326, + 490, + 605.9999999999999 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 150, + 611, + 460, + 623 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 150, + 609, + 461, + 626 + ], + "spans": [ + { + "bbox": [ + 150, + 609, + 227, + 626 + ], + "score": 1.0, + "content": "Figure 7: Selected", + "type": "text" + }, + { + "bbox": [ + 227, + 611, + 258, + 622 + ], + "score": 0.74, + "content": "1 6 \\mathrm { ~ x ~ } 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 609, + 461, + 626 + ], + "score": 1.0, + "content": "patches by INVASE on Oxford Pet dataset - Dogs", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + } + ], + "page_idx": 23, + "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": [ + 298, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 120, + 181, + 490, + 606 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 120, + 181, + 490, + 606 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 181, + 490, + 606 + ], + "spans": [ + { + "bbox": [ + 120, + 181, + 490, + 606 + ], + "score": 0.978, + "type": "image", + "image_path": "c0d45684db148f7fe42f9625cf27b015fa3f4dba35149e59b0d12a308dbc8f23.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 120, + 181, + 490, + 322.66666666666663 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 120, + 322.66666666666663, + 490, + 464.33333333333326 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 120, + 464.33333333333326, + 490, + 605.9999999999999 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 150, + 611, + 460, + 623 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 150, + 609, + 461, + 626 + ], + "spans": [ + { + "bbox": [ + 150, + 609, + 227, + 626 + ], + "score": 1.0, + "content": "Figure 7: Selected", + "type": "text" + }, + { + "bbox": [ + 227, + 611, + 258, + 622 + ], + "score": 0.74, + "content": "1 6 \\mathrm { ~ x ~ } 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 609, + 461, + 626 + ], + "score": 1.0, + "content": "patches by INVASE on Oxford Pet dataset - Dogs", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/BJg_roAcK7/BJg_roAcK7_model.json b/parse/train/BJg_roAcK7/BJg_roAcK7_model.json new file mode 100644 index 0000000000000000000000000000000000000000..01a4f5edc5cb89567fd71570db979be6df1d73cf --- /dev/null +++ b/parse/train/BJg_roAcK7/BJg_roAcK7_model.json @@ -0,0 +1,24186 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1347, + 1404, + 1347, + 1404, + 1772, + 298, + 1772 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 398, + 850, + 1302, + 850, + 1302, + 1216, + 398, + 1216 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 299, + 1789, + 1402, + 1789, + 1402, + 2034, + 299, + 2034 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 314, + 547, + 1182, + 547, + 1182, + 698, + 314, + 698 + ], + "score": 0.97 + }, + { + "category_id": 0, + "poly": [ + 300, + 219, + 1401, + 219, + 1401, + 323, + 300, + 323 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 313, + 377, + 898, + 377, + 898, + 500, + 313, + 500 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 928, + 378, + 1413, + 378, + 1413, + 500, + 928, + 500 + ], + "score": 0.941 + }, + { + "category_id": 0, + "poly": [ + 302, + 1276, + 573, + 1276, + 573, + 1311, + 302, + 1311 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 104, + 299, + 104 + ], + "score": 0.877 + }, + { + "category_id": 0, + "poly": [ + 773, + 781, + 927, + 781, + 927, + 814, + 773, + 814 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 842, + 2089, + 857, + 2089, + 857, + 2112, + 842, + 2112 + ], + "score": 0.646 + }, + { + "category_id": 0, + "poly": [ + 315, + 547, + 602, + 547, + 602, + 576, + 315, + 576 + ], + "score": 0.098 + }, + { + "category_id": 15, + "poly": [ + 293.0, + 217.0, + 1404.0, + 217.0, + 1404.0, + 272.0, + 293.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 273.0, + 817.0, + 273.0, + 817.0, + 328.0, + 293.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1273.0, + 579.0, + 1273.0, + 579.0, + 1320.0, + 294.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 777.0, + 934.0, + 777.0, + 934.0, + 820.0, + 768.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 2088.0, + 860.0, + 2088.0, + 860.0, + 2118.0, + 841.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 541.0, + 606.0, + 541.0, + 606.0, + 582.0, + 311.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1349.0, + 1404.0, + 1349.0, + 1404.0, + 1380.0, + 296.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1378.0, + 1406.0, + 1378.0, + 1406.0, + 1413.0, + 294.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1404.0, + 1406.0, + 1404.0, + 1406.0, + 1446.0, + 291.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1436.0, + 1405.0, + 1436.0, + 1405.0, + 1476.0, + 291.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1467.0, + 1405.0, + 1467.0, + 1405.0, + 1504.0, + 293.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1500.0, + 1406.0, + 1500.0, + 1406.0, + 1536.0, + 293.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1528.0, + 1404.0, + 1528.0, + 1404.0, + 1566.0, + 292.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1559.0, + 1404.0, + 1559.0, + 1404.0, + 1596.0, + 293.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1589.0, + 1406.0, + 1589.0, + 1406.0, + 1626.0, + 293.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1618.0, + 1406.0, + 1618.0, + 1406.0, + 1657.0, + 293.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1650.0, + 1405.0, + 1650.0, + 1405.0, + 1686.0, + 293.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1681.0, + 1404.0, + 1681.0, + 1404.0, + 1716.0, + 294.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1712.0, + 1404.0, + 1712.0, + 1404.0, + 1748.0, + 294.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1742.0, + 392.0, + 1742.0, + 392.0, + 1775.0, + 293.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 851.0, + 1304.0, + 851.0, + 1304.0, + 883.0, + 396.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 880.0, + 1305.0, + 880.0, + 1305.0, + 919.0, + 390.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 911.0, + 1306.0, + 911.0, + 1306.0, + 947.0, + 394.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 944.0, + 1305.0, + 944.0, + 1305.0, + 975.0, + 394.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 972.0, + 1305.0, + 972.0, + 1305.0, + 1007.0, + 393.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1003.0, + 1305.0, + 1003.0, + 1305.0, + 1034.0, + 393.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1036.0, + 1304.0, + 1036.0, + 1304.0, + 1065.0, + 395.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1062.0, + 1306.0, + 1062.0, + 1306.0, + 1100.0, + 392.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1093.0, + 1305.0, + 1093.0, + 1305.0, + 1128.0, + 393.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1126.0, + 1306.0, + 1126.0, + 1306.0, + 1158.0, + 394.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1157.0, + 1305.0, + 1157.0, + 1305.0, + 1189.0, + 395.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1186.0, + 1078.0, + 1186.0, + 1078.0, + 1221.0, + 394.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1789.0, + 1406.0, + 1789.0, + 1406.0, + 1823.0, + 295.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1823.0, + 1404.0, + 1823.0, + 1404.0, + 1853.0, + 297.0, + 1853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1848.0, + 1407.0, + 1848.0, + 1407.0, + 1888.0, + 293.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1880.0, + 1407.0, + 1880.0, + 1407.0, + 1917.0, + 294.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1913.0, + 1404.0, + 1913.0, + 1404.0, + 1946.0, + 294.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1941.0, + 1407.0, + 1941.0, + 1407.0, + 1979.0, + 293.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 1406.0, + 1974.0, + 1406.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2001.0, + 1404.0, + 2001.0, + 1404.0, + 2036.0, + 293.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 545.0, + 605.0, + 545.0, + 605.0, + 578.0, + 312.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 577.0, + 649.0, + 577.0, + 649.0, + 609.0, + 313.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 607.0, + 1185.0, + 607.0, + 1185.0, + 640.0, + 310.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 638.0, + 707.0, + 638.0, + 707.0, + 670.0, + 312.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 668.0, + 636.0, + 668.0, + 636.0, + 701.0, + 311.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 377.0, + 482.0, + 377.0, + 482.0, + 412.0, + 312.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 403.0, + 901.0, + 403.0, + 901.0, + 445.0, + 309.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 439.0, + 592.0, + 439.0, + 592.0, + 467.0, + 314.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 469.0, + 670.0, + 469.0, + 670.0, + 501.0, + 314.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 376.0, + 1099.0, + 376.0, + 1099.0, + 410.0, + 925.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 405.0, + 1302.0, + 405.0, + 1302.0, + 442.0, + 924.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 438.0, + 1219.0, + 438.0, + 1219.0, + 470.0, + 927.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 470.0, + 1415.0, + 470.0, + 1415.0, + 500.0, + 927.0, + 500.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1349, + 1404, + 1349, + 1404, + 1776, + 298, + 1776 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 429, + 1404, + 429, + 1404, + 795, + 298, + 795 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1028, + 1403, + 1028, + 1403, + 1333, + 298, + 1333 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 890, + 1402, + 890, + 1402, + 1012, + 299, + 1012 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1403, + 229, + 1403, + 414, + 298, + 414 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 300, + 1889, + 1403, + 1889, + 1403, + 1983, + 300, + 1983 + ], + "score": 0.968 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.887 + }, + { + "category_id": 0, + "poly": [ + 302, + 1821, + 711, + 1821, + 711, + 1857, + 302, + 1857 + ], + "score": 0.885 + }, + { + "category_id": 0, + "poly": [ + 301, + 833, + 577, + 833, + 577, + 863, + 301, + 863 + ], + "score": 0.879 + }, + { + "category_id": 2, + "poly": [ + 319, + 2005, + 1398, + 2005, + 1398, + 2034, + 319, + 2034 + ], + "score": 0.867 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.74 + }, + { + "category_id": 13, + "poly": [ + 1016, + 1889, + 1186, + 1889, + 1186, + 1923, + 1016, + 1923 + ], + "score": 0.93, + "latex": "\\boldsymbol { \\mathcal { V } } = \\{ 1 , . . . , c \\}" + }, + { + "category_id": 13, + "poly": [ + 1189, + 1949, + 1326, + 1949, + 1326, + 1984, + 1189, + 1984 + ], + "score": 0.92, + "latex": "\\mathbf { s } \\in \\{ 0 , 1 \\} ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 1087, + 1441, + 1158, + 1441, + 1158, + 1474, + 1087, + 1474 + ], + "score": 0.91, + "latex": "Y | X _ { S }" + }, + { + "category_id": 13, + "poly": [ + 436, + 1921, + 707, + 1921, + 707, + 1954, + 436, + 1954 + ], + "score": 0.91, + "latex": "\\mathbf { X } = ( X _ { 1 } , . . . , X _ { d } ) \\in \\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 762, + 1921, + 848, + 1921, + 848, + 1950, + 762, + 1950 + ], + "score": 0.91, + "latex": "Y \\in \\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 979, + 1442, + 1037, + 1442, + 1037, + 1474, + 979, + 1474 + ], + "score": 0.91, + "latex": "Y | X" + }, + { + "category_id": 13, + "poly": [ + 344, + 1890, + 578, + 1890, + 578, + 1920, + 344, + 1920 + ], + "score": 0.91, + "latex": "{ \\mathcal { X } } = { \\mathcal { X } } _ { 1 } \\times \\ldots \\times { \\mathcal { X } } _ { d }" + }, + { + "category_id": 13, + "poly": [ + 1037, + 1411, + 1079, + 1411, + 1079, + 1441, + 1037, + 1441 + ], + "score": 0.88, + "latex": "X _ { S }" + }, + { + "category_id": 13, + "poly": [ + 809, + 1956, + 845, + 1956, + 845, + 1982, + 809, + 1982 + ], + "score": 0.86, + "latex": "p _ { Y }" + }, + { + "category_id": 13, + "poly": [ + 718, + 1956, + 755, + 1956, + 755, + 1982, + 718, + 1982 + ], + "score": 0.86, + "latex": "p _ { X }" + }, + { + "category_id": 13, + "poly": [ + 382, + 1717, + 407, + 1717, + 407, + 1747, + 382, + 1747 + ], + "score": 0.85, + "latex": "l _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 494, + 1685, + 519, + 1685, + 519, + 1716, + 494, + 1716 + ], + "score": 0.85, + "latex": "l _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 642, + 1892, + 659, + 1892, + 659, + 1917, + 642, + 1917 + ], + "score": 0.82, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 297, + 1957, + 315, + 1957, + 315, + 1983, + 297, + 1983 + ], + "score": 0.77, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 382, + 353, + 401, + 353, + 401, + 381, + 382, + 381 + ], + "score": 0.74, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 648, + 1411, + 675, + 1411, + 675, + 1439, + 648, + 1439 + ], + "score": 0.67, + "latex": "Y" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1817.0, + 716.0, + 1817.0, + 716.0, + 1862.0, + 292.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 828.0, + 582.0, + 828.0, + 582.0, + 869.0, + 295.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1999.0, + 1403.0, + 1999.0, + 1403.0, + 2040.0, + 332.0, + 2040.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": [ + 294.0, + 1348.0, + 1404.0, + 1348.0, + 1404.0, + 1384.0, + 294.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1380.0, + 1406.0, + 1380.0, + 1406.0, + 1416.0, + 293.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1409.0, + 647.0, + 1409.0, + 647.0, + 1446.0, + 293.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 1409.0, + 1036.0, + 1409.0, + 1036.0, + 1446.0, + 676.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 1409.0, + 1406.0, + 1409.0, + 1406.0, + 1446.0, + 1080.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1441.0, + 978.0, + 1441.0, + 978.0, + 1476.0, + 294.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 1441.0, + 1086.0, + 1441.0, + 1086.0, + 1476.0, + 1038.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 1441.0, + 1406.0, + 1441.0, + 1406.0, + 1476.0, + 1159.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1471.0, + 1404.0, + 1471.0, + 1404.0, + 1507.0, + 294.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1499.0, + 1406.0, + 1499.0, + 1406.0, + 1537.0, + 293.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1532.0, + 1406.0, + 1532.0, + 1406.0, + 1568.0, + 294.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1564.0, + 1404.0, + 1564.0, + 1404.0, + 1595.0, + 294.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1594.0, + 1404.0, + 1594.0, + 1404.0, + 1626.0, + 294.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1623.0, + 1406.0, + 1623.0, + 1406.0, + 1659.0, + 293.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1654.0, + 1405.0, + 1654.0, + 1405.0, + 1689.0, + 293.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1685.0, + 493.0, + 1685.0, + 493.0, + 1720.0, + 293.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 1685.0, + 1404.0, + 1685.0, + 1404.0, + 1720.0, + 520.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1716.0, + 381.0, + 1716.0, + 381.0, + 1750.0, + 293.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1716.0, + 1404.0, + 1716.0, + 1404.0, + 1750.0, + 408.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1746.0, + 1405.0, + 1746.0, + 1405.0, + 1780.0, + 293.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 429.0, + 1404.0, + 429.0, + 1404.0, + 463.0, + 292.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 459.0, + 1404.0, + 459.0, + 1404.0, + 496.0, + 295.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 491.0, + 1405.0, + 491.0, + 1405.0, + 525.0, + 294.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 522.0, + 1405.0, + 522.0, + 1405.0, + 556.0, + 294.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 551.0, + 1405.0, + 551.0, + 1405.0, + 585.0, + 293.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 583.0, + 1405.0, + 583.0, + 1405.0, + 617.0, + 294.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 612.0, + 1404.0, + 612.0, + 1404.0, + 650.0, + 293.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 644.0, + 1404.0, + 644.0, + 1404.0, + 678.0, + 294.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 671.0, + 1406.0, + 671.0, + 1406.0, + 710.0, + 291.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 704.0, + 1404.0, + 704.0, + 1404.0, + 738.0, + 294.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 733.0, + 1405.0, + 733.0, + 1405.0, + 769.0, + 293.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 767.0, + 841.0, + 767.0, + 841.0, + 798.0, + 296.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1030.0, + 1404.0, + 1030.0, + 1404.0, + 1062.0, + 294.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1062.0, + 1405.0, + 1062.0, + 1405.0, + 1093.0, + 296.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1089.0, + 1405.0, + 1089.0, + 1405.0, + 1125.0, + 294.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1121.0, + 1407.0, + 1121.0, + 1407.0, + 1155.0, + 293.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1153.0, + 1404.0, + 1153.0, + 1404.0, + 1184.0, + 296.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1179.0, + 1407.0, + 1179.0, + 1407.0, + 1216.0, + 292.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1210.0, + 1407.0, + 1210.0, + 1407.0, + 1248.0, + 291.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1241.0, + 1407.0, + 1241.0, + 1407.0, + 1277.0, + 294.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1270.0, + 1407.0, + 1270.0, + 1407.0, + 1311.0, + 292.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1305.0, + 1285.0, + 1305.0, + 1285.0, + 1336.0, + 296.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 889.0, + 1403.0, + 889.0, + 1403.0, + 926.0, + 293.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 919.0, + 1404.0, + 919.0, + 1404.0, + 954.0, + 294.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 953.0, + 1404.0, + 953.0, + 1404.0, + 986.0, + 294.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 980.0, + 1392.0, + 980.0, + 1392.0, + 1018.0, + 293.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 230.0, + 1407.0, + 230.0, + 1407.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 262.0, + 1405.0, + 262.0, + 1405.0, + 297.0, + 294.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 291.0, + 1405.0, + 291.0, + 1405.0, + 327.0, + 294.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 320.0, + 1405.0, + 320.0, + 1405.0, + 357.0, + 292.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 352.0, + 381.0, + 352.0, + 381.0, + 388.0, + 294.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 352.0, + 1405.0, + 352.0, + 1405.0, + 388.0, + 402.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 383.0, + 868.0, + 383.0, + 868.0, + 418.0, + 294.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1884.0, + 343.0, + 1884.0, + 343.0, + 1929.0, + 290.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 1884.0, + 641.0, + 1884.0, + 641.0, + 1929.0, + 579.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 1884.0, + 1015.0, + 1884.0, + 1015.0, + 1929.0, + 660.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 1884.0, + 1408.0, + 1884.0, + 1408.0, + 1929.0, + 1187.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1918.0, + 435.0, + 1918.0, + 435.0, + 1955.0, + 294.0, + 1955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1918.0, + 761.0, + 1918.0, + 761.0, + 1955.0, + 708.0, + 1955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 1918.0, + 1405.0, + 1918.0, + 1405.0, + 1955.0, + 849.0, + 1955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1948.0, + 296.0, + 1948.0, + 296.0, + 1986.0, + 293.0, + 1986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1948.0, + 717.0, + 1948.0, + 717.0, + 1986.0, + 316.0, + 1986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 1948.0, + 808.0, + 1948.0, + 808.0, + 1986.0, + 756.0, + 1986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1948.0, + 1188.0, + 1948.0, + 1188.0, + 1986.0, + 846.0, + 1986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 1948.0, + 1405.0, + 1948.0, + 1405.0, + 1986.0, + 1327.0, + 1986.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 626, + 1403, + 626, + 1403, + 751, + 298, + 751 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 227, + 1405, + 227, + 1405, + 356, + 297, + 356 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 872, + 1404, + 872, + 1404, + 1006, + 297, + 1006 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 481, + 1405, + 481, + 1405, + 612, + 298, + 612 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1097, + 1405, + 1097, + 1405, + 1189, + 297, + 1189 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1389, + 1403, + 1389, + 1403, + 1482, + 299, + 1482 + ], + "score": 0.974 + }, + { + "category_id": 8, + "poly": [ + 317, + 1491, + 1382, + 1491, + 1382, + 1703, + 317, + 1703 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 715, + 358, + 951, + 358, + 951, + 429, + 715, + 429 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 640, + 1191, + 1058, + 1191, + 1058, + 1265, + 640, + 1265 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 636, + 764, + 1063, + 764, + 1063, + 809, + 636, + 809 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 461, + 1322, + 1236, + 1322, + 1236, + 1379, + 461, + 1379 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 624, + 1876, + 1076, + 1876, + 1076, + 1917, + 624, + 1917 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 508, + 1757, + 1188, + 1757, + 1188, + 1825, + 508, + 1825 + ], + "score": 0.936 + }, + { + "category_id": 2, + "poly": [ + 298, + 1977, + 1408, + 1977, + 1408, + 2034, + 298, + 2034 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 299, + 435, + 834, + 435, + 834, + 468, + 299, + 468 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 294, + 826, + 1372, + 826, + 1372, + 861, + 294, + 861 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 298, + 1279, + 920, + 1279, + 920, + 1313, + 298, + 1313 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 298, + 1835, + 720, + 1835, + 720, + 1867, + 298, + 1867 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 298, + 1711, + 1181, + 1711, + 1181, + 1745, + 298, + 1745 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 299, + 1040, + 669, + 1040, + 669, + 1072, + 299, + 1072 + ], + "score": 0.921 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 816, + 74, + 816, + 105, + 298, + 105 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 299, + 1923, + 765, + 1923, + 765, + 1957, + 299, + 1957 + ], + "score": 0.919 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1881, + 1401, + 1881, + 1401, + 1911, + 1365, + 1911 + ], + "score": 0.885 + }, + { + "category_id": 9, + "poly": [ + 1365, + 774, + 1400, + 774, + 1400, + 804, + 1365, + 804 + ], + "score": 0.882 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1335, + 1400, + 1335, + 1400, + 1365, + 1366, + 1365 + ], + "score": 0.88 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1774, + 1401, + 1774, + 1401, + 1804, + 1365, + 1804 + ], + "score": 0.875 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.688 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.473 + }, + { + "category_id": 14, + "poly": [ + 640, + 1185, + 1060, + 1185, + 1060, + 1264, + 640, + 1264 + ], + "score": 0.94, + "latex": "K L ( W | | V ) = \\mathbb { E } \\left[ \\log \\left( \\frac { p _ { W } ( W ) } { p _ { V } ( W ) } \\right) \\right] ." + }, + { + "category_id": 14, + "poly": [ + 317, + 1490, + 1383, + 1490, + 1383, + 1707, + 317, + 1707 + ], + "score": 0.94, + "latex": "\\begin{array} { l } { { \\displaystyle K L ( Y | { \\bf X } = { \\bf x } | | Y | { \\bf X } ^ { ( S ( { \\bf x } ) ) } = { \\bf x } ^ { ( S ( { \\bf x } ) ) } ) = \\mathbb { E } _ { y \\sim Y | { \\bf X } = { \\bf x } } \\left[ \\log \\left( \\frac { p _ { Y } ( y | { \\bf x } ) } { p _ { Y } ( y | { \\bf x } ^ { ( S ( { \\bf x } ) ) } ) } \\right) \\right] } \\ ~ } \\\\ { { \\displaystyle = \\mathbb { E } _ { y \\sim Y | { \\bf X } = { \\bf x } } \\left[ \\log ( p _ { Y } ( y | { \\bf x } ) ) - \\log ( p _ { Y } ( y | { \\bf x } ^ { ( S ( { \\bf x } ) ) } ) ) \\right] } \\ ~ } \\\\ { { \\displaystyle = \\int _ { y } p _ { Y } ( y | { \\bf x } ) \\left[ \\log ( p _ { Y } ( y | { \\bf x } ) ) - \\log ( p _ { Y } ( y | { \\bf x } ^ { ( S ( { \\bf x } ) ) } ) ) \\right] d y } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1207, + 687, + 1401, + 687, + 1401, + 722, + 1207, + 722 + ], + "score": 0.93, + "latex": "S : \\mathcal { X } \\{ 0 , 1 \\} ^ { d }" + }, + { + "category_id": 14, + "poly": [ + 715, + 354, + 954, + 354, + 954, + 431, + 715, + 431 + ], + "score": 0.93, + "latex": "x _ { i } ^ { ( \\mathbf { s } ) } = \\left\\{ { \\atop * \\operatorname { i f } s _ { i } = 0 } \\right." + }, + { + "category_id": 13, + "poly": [ + 707, + 874, + 936, + 874, + 936, + 913, + 707, + 913 + ], + "score": 0.93, + "latex": "\\mathbfcal { D } = \\{ ( \\mathbf { x } _ { j } , y _ { j } ) \\} _ { j = 1 } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 297, + 294, + 473, + 294, + 473, + 328, + 297, + 328 + ], + "score": 0.93, + "latex": "{ { \\mathcal { X } } _ { i } ^ { * } } = { { \\mathcal { X } } _ { i } } \\cup \\left\\{ * \\right\\}" + }, + { + "category_id": 14, + "poly": [ + 462, + 1320, + 1236, + 1320, + 1236, + 1380, + 462, + 1380 + ], + "score": 0.93, + "latex": "\\mathcal { L } ( S ) = \\mathbb { E } _ { \\mathbf { x } \\sim p _ { X } } \\left[ K L ( Y | \\mathbf { X } = \\mathbf { x } | | Y | \\mathbf { X } ^ { ( S ( \\mathbf { x } ) ) } = \\mathbf { x } ^ { ( S ( \\mathbf { x } ) ) } ) + \\lambda | | S ( \\mathbf { x } ) | | \\right]" + }, + { + "category_id": 14, + "poly": [ + 634, + 762, + 1065, + 762, + 1065, + 808, + 634, + 808 + ], + "score": 0.92, + "latex": "( Y | \\mathbf { X } ^ { ( S ( \\mathbf { x } ) ) } = \\mathbf { x } ^ { ( S ( \\mathbf { x } ) ) } ) \\overset { d . } { = } ( Y | \\mathbf { X } = \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 522, + 294, + 757, + 294, + 757, + 328, + 522, + 328 + ], + "score": 0.92, + "latex": "\\mathcal { X } ^ { * } = \\mathcal { X } _ { 1 } ^ { * } \\times \\ldots \\times \\mathcal { X } _ { d } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 798, + 828, + 857, + 828, + 857, + 862, + 798, + 862 + ], + "score": 0.92, + "latex": "S ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 406, + 513, + 668, + 513, + 668, + 550, + 406, + 550 + ], + "score": 0.92, + "latex": "\\mathbb { E } ( Y | \\mathbf { X } ^ { ( \\mathbf { s } ) } ) = \\mathbb { E } ( Y | \\mathbf { X } )" + }, + { + "category_id": 13, + "poly": [ + 372, + 1712, + 452, + 1712, + 452, + 1747, + 372, + 1747 + ], + "score": 0.92, + "latex": "p _ { Y } ( \\cdot | \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1158, + 263, + 1274, + 263, + 1274, + 293, + 1158, + 293 + ], + "score": 0.92, + "latex": "\\mathcal { X } _ { 1 } , . . . , \\mathcal { X } _ { d }" + }, + { + "category_id": 13, + "poly": [ + 350, + 911, + 431, + 911, + 431, + 946, + 350, + 946 + ], + "score": 0.91, + "latex": "( \\mathbf { X } , Y )" + }, + { + "category_id": 13, + "poly": [ + 568, + 232, + 655, + 232, + 655, + 261, + 568, + 261 + ], + "score": 0.91, + "latex": "s _ { i } = 1" + }, + { + "category_id": 14, + "poly": [ + 511, + 1753, + 1191, + 1753, + 1191, + 1828, + 511, + 1828 + ], + "score": 0.91, + "latex": "l ( \\mathbf { x } , \\mathbf { s } ) = \\int _ { \\mathcal { V } } p _ { Y } ( y | \\mathbf { x } ) \\left[ \\log ( p _ { Y } ( y | \\mathbf { x } ) ) - \\log ( p _ { Y } ( y | \\mathbf { x } ^ { ( s ) } ) ) \\right] d y" + }, + { + "category_id": 13, + "poly": [ + 373, + 1389, + 428, + 1389, + 428, + 1423, + 373, + 1423 + ], + "score": 0.91, + "latex": "| | \\cdot | |" + }, + { + "category_id": 13, + "poly": [ + 1164, + 232, + 1251, + 232, + 1251, + 261, + 1164, + 261 + ], + "score": 0.9, + "latex": "s _ { i } ~ = ~ 0" + }, + { + "category_id": 13, + "poly": [ + 842, + 295, + 920, + 295, + 920, + 324, + 842, + 324 + ], + "score": 0.9, + "latex": "\\mathbf { x } \\in \\mathcal { X }" + }, + { + "category_id": 14, + "poly": [ + 621, + 1876, + 1077, + 1876, + 1077, + 1916, + 621, + 1916 + ], + "score": 0.9, + "latex": "\\mathcal { L } ( S ) = \\mathbb { E } _ { \\mathbf { x } \\sim p _ { X } } \\left[ l ( \\mathbf { x } , S ( \\mathbf { x } ) ) + \\lambda | | S ( \\mathbf { x } ) | | \\right]" + }, + { + "category_id": 13, + "poly": [ + 1075, + 292, + 1123, + 292, + 1123, + 322, + 1075, + 322 + ], + "score": 0.9, + "latex": "\\mathbf { x } ^ { ( \\mathbf { s } ) }" + }, + { + "category_id": 13, + "poly": [ + 373, + 1925, + 426, + 1925, + 426, + 1958, + 373, + 1958 + ], + "score": 0.89, + "latex": "| | \\cdot | |" + }, + { + "category_id": 13, + "poly": [ + 590, + 721, + 669, + 721, + 669, + 748, + 590, + 748 + ], + "score": 0.89, + "latex": "\\mathbf { x } \\in \\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 297, + 547, + 353, + 547, + 353, + 579, + 297, + 579 + ], + "score": 0.87, + "latex": "\\mathbf { X } ^ { ( \\mathbf { s } ) }" + }, + { + "category_id": 13, + "poly": [ + 390, + 1163, + 425, + 1163, + 425, + 1192, + 390, + 1192 + ], + "score": 0.85, + "latex": "p _ { V }" + }, + { + "category_id": 13, + "poly": [ + 562, + 1926, + 584, + 1926, + 584, + 1955, + 562, + 1955 + ], + "score": 0.85, + "latex": "l _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 555, + 1421, + 575, + 1421, + 575, + 1447, + 555, + 1447 + ], + "score": 0.83, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 814, + 1983, + 838, + 1983, + 838, + 2006, + 814, + 2006 + ], + "score": 0.83, + "latex": "y _ { i }" + }, + { + "category_id": 13, + "poly": [ + 895, + 1282, + 917, + 1282, + 917, + 1308, + 895, + 1308 + ], + "score": 0.83, + "latex": "S" + }, + { + "category_id": 13, + "poly": [ + 1212, + 1130, + 1238, + 1130, + 1238, + 1157, + 1212, + 1157 + ], + "score": 0.82, + "latex": "V" + }, + { + "category_id": 13, + "poly": [ + 1307, + 517, + 1333, + 517, + 1333, + 544, + 1307, + 544 + ], + "score": 0.78, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 527, + 552, + 554, + 552, + 554, + 578, + 527, + 578 + ], + "score": 0.78, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 987, + 1714, + 1012, + 1714, + 1012, + 1740, + 987, + 1740 + ], + "score": 0.78, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 1378, + 1985, + 1394, + 1985, + 1394, + 2007, + 1378, + 2007 + ], + "score": 0.77, + "latex": "_ y" + }, + { + "category_id": 13, + "poly": [ + 298, + 1164, + 339, + 1164, + 339, + 1192, + 298, + 1192 + ], + "score": 0.77, + "latex": "p _ { W }" + }, + { + "category_id": 13, + "poly": [ + 1125, + 1131, + 1158, + 1131, + 1158, + 1157, + 1125, + 1157 + ], + "score": 0.77, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 959, + 233, + 974, + 233, + 974, + 258, + 959, + 258 + ], + "score": 0.77, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 446, + 264, + 460, + 264, + 460, + 289, + 446, + 289 + ], + "score": 0.77, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 377, + 441, + 396, + 441, + 396, + 462, + 377, + 462 + ], + "score": 0.76, + "latex": "^ *" + }, + { + "category_id": 13, + "poly": [ + 697, + 266, + 718, + 266, + 718, + 289, + 697, + 289 + ], + "score": 0.75, + "latex": "^ *" + }, + { + "category_id": 13, + "poly": [ + 1098, + 881, + 1119, + 881, + 1119, + 903, + 1098, + 903 + ], + "score": 0.75, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 572, + 913, + 598, + 913, + 598, + 940, + 572, + 940 + ], + "score": 0.75, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 744, + 723, + 782, + 723, + 782, + 752, + 744, + 752 + ], + "score": 0.74, + "latex": "p _ { X }" + }, + { + "category_id": 13, + "poly": [ + 951, + 664, + 974, + 664, + 974, + 686, + 951, + 686 + ], + "score": 0.65, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 370, + 819, + 400, + 819, + 400, + 857, + 370, + 857 + ], + "score": 0.6, + "latex": "\\underline { { \\underline { { d . } } } }" + }, + { + "category_id": 13, + "poly": [ + 697, + 551, + 724, + 551, + 724, + 578, + 697, + 578 + ], + "score": 0.53, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 393, + 689, + 420, + 689, + 420, + 717, + 393, + 717 + ], + "score": 0.33, + "latex": "\\mathbf { X }" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1970.0, + 813.0, + 1970.0, + 813.0, + 2013.0, + 328.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 1970.0, + 1377.0, + 1970.0, + 1377.0, + 2013.0, + 839.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 1970.0, + 1406.0, + 1970.0, + 1406.0, + 2013.0, + 1395.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2004.0, + 913.0, + 2004.0, + 913.0, + 2035.0, + 296.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1040.0, + 671.0, + 1040.0, + 671.0, + 1076.0, + 295.0, + 1076.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": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 625.0, + 1405.0, + 625.0, + 1405.0, + 662.0, + 293.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 659.0, + 950.0, + 659.0, + 950.0, + 692.0, + 294.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 659.0, + 1405.0, + 659.0, + 1405.0, + 692.0, + 975.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 687.0, + 392.0, + 687.0, + 392.0, + 722.0, + 293.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 687.0, + 1206.0, + 687.0, + 1206.0, + 722.0, + 421.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 720.0, + 589.0, + 720.0, + 589.0, + 753.0, + 296.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 720.0, + 743.0, + 720.0, + 743.0, + 753.0, + 670.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 720.0, + 893.0, + 720.0, + 893.0, + 753.0, + 783.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 567.0, + 229.0, + 567.0, + 263.0, + 295.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 229.0, + 958.0, + 229.0, + 958.0, + 263.0, + 656.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 229.0, + 1163.0, + 229.0, + 1163.0, + 263.0, + 975.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 263.0, + 1252.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 259.0, + 445.0, + 259.0, + 445.0, + 296.0, + 294.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 259.0, + 696.0, + 259.0, + 696.0, + 296.0, + 461.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 259.0, + 1157.0, + 259.0, + 1157.0, + 296.0, + 719.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 259.0, + 1406.0, + 259.0, + 1406.0, + 296.0, + 1275.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 290.0, + 521.0, + 290.0, + 521.0, + 331.0, + 474.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 290.0, + 841.0, + 290.0, + 841.0, + 331.0, + 758.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 290.0, + 1074.0, + 290.0, + 1074.0, + 331.0, + 921.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 290.0, + 1406.0, + 290.0, + 1406.0, + 331.0, + 1124.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 321.0, + 579.0, + 321.0, + 579.0, + 360.0, + 294.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 871.0, + 706.0, + 871.0, + 706.0, + 915.0, + 292.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 871.0, + 1097.0, + 871.0, + 1097.0, + 915.0, + 937.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 871.0, + 1406.0, + 871.0, + 1406.0, + 915.0, + 1120.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 910.0, + 349.0, + 910.0, + 349.0, + 946.0, + 293.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 910.0, + 571.0, + 910.0, + 571.0, + 946.0, + 432.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 910.0, + 1405.0, + 910.0, + 1405.0, + 946.0, + 599.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 943.0, + 1404.0, + 943.0, + 1404.0, + 977.0, + 294.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 973.0, + 940.0, + 973.0, + 940.0, + 1007.0, + 296.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 482.0, + 1403.0, + 482.0, + 1403.0, + 515.0, + 295.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 514.0, + 405.0, + 514.0, + 405.0, + 551.0, + 295.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 514.0, + 1306.0, + 514.0, + 1306.0, + 551.0, + 669.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 514.0, + 1405.0, + 514.0, + 1405.0, + 551.0, + 1334.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 545.0, + 296.0, + 545.0, + 296.0, + 587.0, + 293.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 545.0, + 526.0, + 545.0, + 526.0, + 587.0, + 354.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 545.0, + 696.0, + 545.0, + 696.0, + 587.0, + 555.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 545.0, + 1405.0, + 545.0, + 1405.0, + 587.0, + 725.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 581.0, + 970.0, + 581.0, + 970.0, + 611.0, + 296.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1100.0, + 1403.0, + 1100.0, + 1403.0, + 1130.0, + 296.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1129.0, + 1124.0, + 1129.0, + 1124.0, + 1162.0, + 295.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 1129.0, + 1211.0, + 1129.0, + 1211.0, + 1162.0, + 1159.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 1129.0, + 1405.0, + 1129.0, + 1405.0, + 1162.0, + 1239.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1161.0, + 297.0, + 1161.0, + 297.0, + 1192.0, + 292.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1161.0, + 389.0, + 1161.0, + 389.0, + 1192.0, + 340.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 1161.0, + 575.0, + 1161.0, + 575.0, + 1192.0, + 426.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1385.0, + 372.0, + 1385.0, + 372.0, + 1428.0, + 293.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 1385.0, + 1405.0, + 1385.0, + 1405.0, + 1428.0, + 429.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1420.0, + 554.0, + 1420.0, + 554.0, + 1454.0, + 295.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 1420.0, + 1404.0, + 1420.0, + 1404.0, + 1454.0, + 576.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1449.0, + 1122.0, + 1449.0, + 1122.0, + 1485.0, + 294.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 435.0, + 376.0, + 435.0, + 376.0, + 469.0, + 295.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 435.0, + 837.0, + 435.0, + 837.0, + 469.0, + 397.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 820.0, + 369.0, + 820.0, + 369.0, + 863.0, + 294.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 820.0, + 797.0, + 820.0, + 797.0, + 863.0, + 401.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 820.0, + 1375.0, + 820.0, + 1375.0, + 863.0, + 858.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1278.0, + 894.0, + 1278.0, + 894.0, + 1315.0, + 298.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1836.0, + 720.0, + 1836.0, + 720.0, + 1869.0, + 297.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1709.0, + 371.0, + 1709.0, + 371.0, + 1749.0, + 294.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 1709.0, + 986.0, + 1709.0, + 986.0, + 1749.0, + 453.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 1709.0, + 1183.0, + 1709.0, + 1183.0, + 1749.0, + 1013.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1922.0, + 372.0, + 1922.0, + 372.0, + 1959.0, + 297.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 1922.0, + 561.0, + 1922.0, + 561.0, + 1959.0, + 427.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 1922.0, + 765.0, + 1922.0, + 765.0, + 1959.0, + 585.0, + 1959.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 296, + 1404, + 296, + 1404, + 457, + 297, + 457 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 296, + 1662, + 1405, + 1662, + 1405, + 1828, + 296, + 1828 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1007, + 1403, + 1007, + 1403, + 1101, + 299, + 1101 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 552, + 1406, + 552, + 1406, + 653, + 297, + 653 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 742, + 1404, + 742, + 1404, + 837, + 298, + 837 + ], + "score": 0.974 + }, + { + "category_id": 8, + "poly": [ + 620, + 1278, + 1076, + 1278, + 1076, + 1364, + 620, + 1364 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 511, + 1456, + 1183, + 1456, + 1183, + 1550, + 511, + 1550 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 294, + 1193, + 1402, + 1193, + 1402, + 1257, + 294, + 1257 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 545, + 905, + 1152, + 905, + 1152, + 991, + 545, + 991 + ], + "score": 0.95 + }, + { + "category_id": 2, + "poly": [ + 300, + 1914, + 1404, + 1914, + 1404, + 2034, + 300, + 2034 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 613, + 1845, + 1085, + 1845, + 1085, + 1889, + 613, + 1889 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 296, + 1402, + 836, + 1402, + 836, + 1438, + 296, + 1438 + ], + "score": 0.927 + }, + { + "category_id": 0, + "poly": [ + 299, + 688, + 660, + 688, + 660, + 720, + 299, + 720 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 299, + 850, + 931, + 850, + 931, + 884, + 299, + 884 + ], + "score": 0.924 + }, + { + "category_id": 0, + "poly": [ + 299, + 1138, + 644, + 1138, + 644, + 1170, + 299, + 1170 + ], + "score": 0.92 + }, + { + "category_id": 0, + "poly": [ + 299, + 495, + 588, + 495, + 588, + 527, + 299, + 527 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 300, + 1607, + 802, + 1607, + 802, + 1640, + 300, + 1640 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 301, + 225, + 618, + 225, + 618, + 262, + 301, + 262 + ], + "score": 0.911 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 816, + 74, + 816, + 105, + 298, + 105 + ], + "score": 0.907 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1486, + 1401, + 1486, + 1401, + 1517, + 1365, + 1517 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2112, + 840, + 2112 + ], + "score": 0.784 + }, + { + "category_id": 14, + "poly": [ + 620, + 1273, + 1079, + 1273, + 1079, + 1365, + 620, + 1365 + ], + "score": 0.94, + "latex": "l _ { 3 } ( \\gamma ) = - \\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim p } \\Big [ \\sum _ { i = 1 } ^ { c } y _ { i } \\log ( f _ { i } ^ { \\gamma } ( \\mathbf { x } ) ) \\Big ] ." + }, + { + "category_id": 14, + "poly": [ + 546, + 901, + 1152, + 901, + 1152, + 992, + 546, + 992 + ], + "score": 0.94, + "latex": "l _ { 1 } ( \\phi ) = - \\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim p , \\mathbf { s } \\sim \\pi _ { \\theta } ( \\mathbf { x } , \\cdot ) } \\Big [ \\sum _ { i = 1 } ^ { c } y _ { i } \\log ( f _ { i } ^ { \\phi } ( \\mathbf { x } ^ { ( \\mathbf { s } ) } , \\mathbf { s } ) ) \\Big ]" + }, + { + "category_id": 13, + "poly": [ + 548, + 420, + 701, + 420, + 701, + 457, + 548, + 457 + ], + "score": 0.93, + "latex": "p _ { Y } \\big ( \\cdot | \\mathbf { x } ^ { ( S ( \\mathbf { x } ) ) } \\big )" + }, + { + "category_id": 14, + "poly": [ + 513, + 1454, + 1187, + 1454, + 1187, + 1550, + 513, + 1550 + ], + "score": 0.93, + "latex": "\\hat { l } ( \\mathbf { x } , \\mathbf { s } ) = - \\left[ \\sum _ { i = 1 } ^ { c } y _ { i } \\log ( f _ { i } ^ { \\phi } ( \\mathbf { x ^ { ( s ) } } , \\mathbf { s } ) ) - \\sum _ { i = 1 } ^ { c } y _ { i } \\log ( f _ { i } ^ { \\gamma } ( \\mathbf { x } ) ) \\right] ." + }, + { + "category_id": 13, + "poly": [ + 718, + 1664, + 908, + 1664, + 908, + 1700, + 718, + 1700 + ], + "score": 0.93, + "latex": "S : \\mathcal { X } \\{ 0 , 1 \\} ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 622, + 1792, + 753, + 1792, + 753, + 1828, + 622, + 1828 + ], + "score": 0.93, + "latex": "\\mathbf { s } \\in \\{ 0 , 1 \\} ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 752, + 422, + 849, + 422, + 849, + 457, + 752, + 457 + ], + "score": 0.93, + "latex": "p _ { Y } ( y \\vert \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 459, + 1728, + 530, + 1728, + 530, + 1767, + 459, + 1767 + ], + "score": 0.93, + "latex": "\\hat { S } ^ { \\theta } ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 297, + 620, + 387, + 620, + 387, + 653, + 297, + 653 + ], + "score": 0.92, + "latex": "p _ { Y } ( \\cdot | \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 1072, + 551, + 1401, + 551, + 1401, + 587, + 1072, + 587 + ], + "score": 0.92, + "latex": "f ^ { \\phi } : \\mathcal { X } ^ { * } \\times \\{ 0 , 1 \\} ^ { d } \\to [ 0 , 1 ] ^ { c }" + }, + { + "category_id": 13, + "poly": [ + 564, + 588, + 770, + 588, + 770, + 623, + 564, + 623 + ], + "score": 0.92, + "latex": "f ^ { \\gamma } : \\mathcal { X } \\to [ 0 , 1 ] ^ { c }" + }, + { + "category_id": 13, + "poly": [ + 398, + 327, + 498, + 327, + 498, + 363, + 398, + 363 + ], + "score": 0.92, + "latex": "( \\{ 0 , 1 \\} ^ { d } )" + }, + { + "category_id": 14, + "poly": [ + 610, + 1844, + 1088, + 1844, + 1088, + 1888, + 610, + 1888 + ], + "score": 0.91, + "latex": "\\pi _ { \\boldsymbol \\theta } ( \\mathbf { x } , \\mathbf { s } ) = \\Pi _ { i = 1 } ^ { d } \\hat { S } _ { i } ^ { \\theta } ( \\mathbf { x } ) ^ { s _ { i } } ( 1 - \\hat { S } _ { i } ^ { \\theta } ( \\mathbf { x } ) ) ^ { 1 - s _ { i } } ." + }, + { + "category_id": 13, + "poly": [ + 1285, + 1662, + 1404, + 1662, + 1404, + 1696, + 1285, + 1696 + ], + "score": 0.91, + "latex": "\\hat { S } ^ { \\theta } : \\mathcal { X } " + }, + { + "category_id": 13, + "poly": [ + 1197, + 588, + 1350, + 588, + 1350, + 623, + 1197, + 623 + ], + "score": 0.91, + "latex": "p _ { Y } \\big ( \\cdot | \\mathbf { x } ^ { ( S ( \\mathbf { x } ) ) } \\big )" + }, + { + "category_id": 13, + "poly": [ + 1038, + 1762, + 1137, + 1762, + 1137, + 1797, + 1038, + 1797 + ], + "score": 0.91, + "latex": "( \\{ 0 , 1 \\} ^ { d } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1696, + 369, + 1696, + 369, + 1731, + 298, + 1731 + ], + "score": 0.91, + "latex": "[ 0 , 1 ] ^ { \\bar { d } }" + }, + { + "category_id": 13, + "poly": [ + 404, + 1407, + 453, + 1407, + 453, + 1438, + 404, + 1438 + ], + "score": 0.91, + "latex": "\\phi , \\gamma" + }, + { + "category_id": 13, + "poly": [ + 1073, + 1038, + 1108, + 1038, + 1108, + 1072, + 1073, + 1072 + ], + "score": 0.91, + "latex": "f ^ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 433, + 741, + 468, + 741, + 468, + 776, + 433, + 776 + ], + "score": 0.9, + "latex": "f ^ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 1321, + 1917, + 1394, + 1917, + 1394, + 1943, + 1321, + 1943 + ], + "score": 0.9, + "latex": "x _ { i } = 0" + }, + { + "category_id": 13, + "poly": [ + 433, + 1196, + 466, + 1196, + 466, + 1226, + 433, + 1226 + ], + "score": 0.89, + "latex": "f ^ { \\gamma }" + }, + { + "category_id": 13, + "poly": [ + 460, + 1943, + 490, + 1943, + 490, + 1974, + 460, + 1974 + ], + "score": 0.88, + "latex": "\\hat { S } ^ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 418, + 1226, + 450, + 1226, + 450, + 1257, + 418, + 1257 + ], + "score": 0.88, + "latex": "f ^ { \\gamma }" + }, + { + "category_id": 13, + "poly": [ + 298, + 849, + 331, + 849, + 331, + 884, + 298, + 884 + ], + "score": 0.88, + "latex": "f ^ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 1351, + 739, + 1399, + 739, + 1399, + 773, + 1351, + 773 + ], + "score": 0.86, + "latex": "\\mathbf { x } ^ { ( \\mathbf { s } ) }" + }, + { + "category_id": 13, + "poly": [ + 610, + 1919, + 672, + 1919, + 672, + 1941, + 610, + 1941 + ], + "score": 0.86, + "latex": "* = 0" + }, + { + "category_id": 13, + "poly": [ + 1030, + 1013, + 1061, + 1013, + 1061, + 1040, + 1030, + 1040 + ], + "score": 0.85, + "latex": "\\pi _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 373, + 1014, + 400, + 1014, + 400, + 1041, + 373, + 1041 + ], + "score": 0.84, + "latex": "y _ { i }" + }, + { + "category_id": 13, + "poly": [ + 488, + 590, + 509, + 590, + 509, + 621, + 488, + 621 + ], + "score": 0.83, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 1026, + 1982, + 1055, + 1982, + 1055, + 2005, + 1026, + 2005 + ], + "score": 0.82, + "latex": "\\pi \\theta" + }, + { + "category_id": 13, + "poly": [ + 966, + 594, + 989, + 594, + 989, + 622, + 966, + 622 + ], + "score": 0.81, + "latex": "\\gamma" + }, + { + "category_id": 13, + "poly": [ + 958, + 1014, + 976, + 1014, + 976, + 1041, + 958, + 1041 + ], + "score": 0.8, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 465, + 810, + 481, + 810, + 481, + 832, + 465, + 832 + ], + "score": 0.79, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 506, + 1979, + 522, + 1979, + 522, + 2003, + 506, + 2003 + ], + "score": 0.79, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 667, + 1699, + 683, + 1699, + 683, + 1725, + 667, + 1725 + ], + "score": 0.79, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 333, + 1943, + 413, + 1943, + 413, + 1977, + 333, + 1977 + ], + "score": 0.75, + "latex": "^ 4 f ^ { \\phi } , f ^ { \\gamma }" + }, + { + "category_id": 13, + "poly": [ + 779, + 1401, + 792, + 1401, + 792, + 1434, + 779, + 1434 + ], + "score": 0.69, + "latex": "\\hat { l }" + }, + { + "category_id": 13, + "poly": [ + 475, + 1012, + 487, + 1012, + 487, + 1036, + 475, + 1036 + ], + "score": 0.47, + "latex": "i" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1907.0, + 609.0, + 1907.0, + 609.0, + 1952.0, + 329.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 1907.0, + 1320.0, + 1907.0, + 1320.0, + 1952.0, + 673.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 1907.0, + 1404.0, + 1907.0, + 1404.0, + 1952.0, + 1395.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1938.0, + 332.0, + 1938.0, + 332.0, + 1984.0, + 327.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 1938.0, + 459.0, + 1938.0, + 459.0, + 1984.0, + 414.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 1938.0, + 1152.0, + 1938.0, + 1152.0, + 1984.0, + 491.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1970.0, + 505.0, + 1970.0, + 505.0, + 2014.0, + 329.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 1970.0, + 1025.0, + 1970.0, + 1025.0, + 2014.0, + 523.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 1970.0, + 1405.0, + 1970.0, + 1405.0, + 2014.0, + 1056.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2006.0, + 693.0, + 2006.0, + 693.0, + 2036.0, + 296.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 688.0, + 664.0, + 688.0, + 664.0, + 724.0, + 295.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1138.0, + 646.0, + 1138.0, + 646.0, + 1174.0, + 296.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 495.0, + 590.0, + 495.0, + 590.0, + 531.0, + 295.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1606.0, + 806.0, + 1606.0, + 806.0, + 1645.0, + 294.0, + 1645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 223.0, + 626.0, + 223.0, + 626.0, + 267.0, + 293.0, + 267.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": [ + 838.0, + 2085.0, + 863.0, + 2085.0, + 863.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 296.0, + 1405.0, + 296.0, + 1405.0, + 333.0, + 295.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 325.0, + 397.0, + 325.0, + 397.0, + 366.0, + 294.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 325.0, + 1405.0, + 325.0, + 1405.0, + 366.0, + 499.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 360.0, + 1405.0, + 360.0, + 1405.0, + 394.0, + 295.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 387.0, + 1405.0, + 387.0, + 1405.0, + 424.0, + 294.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 416.0, + 547.0, + 416.0, + 547.0, + 462.0, + 291.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 416.0, + 751.0, + 416.0, + 751.0, + 462.0, + 702.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 416.0, + 1130.0, + 416.0, + 1130.0, + 462.0, + 850.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1663.0, + 717.0, + 1663.0, + 717.0, + 1700.0, + 293.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 1663.0, + 1284.0, + 1663.0, + 1284.0, + 1700.0, + 909.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1694.0, + 297.0, + 1694.0, + 297.0, + 1734.0, + 294.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 1694.0, + 666.0, + 1694.0, + 666.0, + 1734.0, + 370.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 1694.0, + 1406.0, + 1694.0, + 1406.0, + 1734.0, + 684.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1728.0, + 458.0, + 1728.0, + 458.0, + 1769.0, + 293.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 1728.0, + 1408.0, + 1728.0, + 1408.0, + 1769.0, + 531.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1763.0, + 1037.0, + 1763.0, + 1037.0, + 1800.0, + 293.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 1763.0, + 1406.0, + 1763.0, + 1406.0, + 1800.0, + 1138.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1793.0, + 621.0, + 1793.0, + 621.0, + 1830.0, + 290.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 1793.0, + 936.0, + 1793.0, + 936.0, + 1830.0, + 754.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1005.0, + 372.0, + 1005.0, + 372.0, + 1044.0, + 293.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 1005.0, + 474.0, + 1005.0, + 474.0, + 1044.0, + 401.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 1005.0, + 957.0, + 1005.0, + 957.0, + 1044.0, + 488.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 1005.0, + 1029.0, + 1005.0, + 1029.0, + 1044.0, + 977.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 1005.0, + 1404.0, + 1005.0, + 1404.0, + 1044.0, + 1062.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1035.0, + 1072.0, + 1035.0, + 1072.0, + 1076.0, + 293.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 1035.0, + 1403.0, + 1035.0, + 1403.0, + 1076.0, + 1109.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1070.0, + 609.0, + 1070.0, + 609.0, + 1099.0, + 294.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 548.0, + 1071.0, + 548.0, + 1071.0, + 591.0, + 294.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 586.0, + 487.0, + 586.0, + 487.0, + 625.0, + 291.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 586.0, + 563.0, + 586.0, + 563.0, + 625.0, + 510.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 586.0, + 965.0, + 586.0, + 965.0, + 625.0, + 771.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 586.0, + 1196.0, + 586.0, + 1196.0, + 625.0, + 990.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 586.0, + 1405.0, + 586.0, + 1405.0, + 625.0, + 1351.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 618.0, + 296.0, + 618.0, + 296.0, + 658.0, + 292.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 618.0, + 537.0, + 618.0, + 537.0, + 658.0, + 388.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 737.0, + 432.0, + 737.0, + 432.0, + 780.0, + 292.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 737.0, + 1350.0, + 737.0, + 1350.0, + 780.0, + 469.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 737.0, + 1405.0, + 737.0, + 1405.0, + 780.0, + 1400.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 775.0, + 1402.0, + 775.0, + 1402.0, + 809.0, + 294.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 803.0, + 464.0, + 803.0, + 464.0, + 841.0, + 295.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 803.0, + 781.0, + 803.0, + 781.0, + 841.0, + 482.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1192.0, + 432.0, + 1192.0, + 432.0, + 1229.0, + 294.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 1192.0, + 1405.0, + 1192.0, + 1405.0, + 1229.0, + 467.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1224.0, + 417.0, + 1224.0, + 417.0, + 1258.0, + 293.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1224.0, + 1330.0, + 1224.0, + 1330.0, + 1258.0, + 451.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1396.0, + 403.0, + 1396.0, + 403.0, + 1444.0, + 291.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 1396.0, + 778.0, + 1396.0, + 778.0, + 1444.0, + 454.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1396.0, + 837.0, + 1396.0, + 837.0, + 1444.0, + 793.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 843.0, + 931.0, + 843.0, + 931.0, + 892.0, + 332.0, + 892.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1879, + 1403, + 1879, + 1403, + 2035, + 297, + 2035 + ], + "score": 0.977 + }, + { + "category_id": 3, + "poly": [ + 304, + 222, + 1402, + 222, + 1402, + 729, + 304, + 729 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 460, + 1038, + 1238, + 1038, + 1238, + 1210, + 460, + 1210 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 361, + 1280, + 1342, + 1280, + 1342, + 1675, + 361, + 1675 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 297, + 1701, + 1403, + 1701, + 1403, + 1769, + 297, + 1769 + ], + "score": 0.953 + }, + { + "category_id": 4, + "poly": [ + 295, + 752, + 1406, + 752, + 1406, + 939, + 295, + 939 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 297, + 1235, + 931, + 1235, + 931, + 1269, + 297, + 1269 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 296, + 994, + 1015, + 994, + 1015, + 1028, + 296, + 1028 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 300, + 1811, + 558, + 1811, + 558, + 1847, + 300, + 1847 + ], + "score": 0.916 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.898 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.752 + }, + { + "category_id": 14, + "poly": [ + 359, + 1281, + 1341, + 1281, + 1341, + 1677, + 359, + 1677 + ], + "score": 0.96, + "latex": "\\begin{array} { l } { { \\displaystyle \\nabla _ { \\theta } l _ { 2 } ( \\theta ) = \\int _ { \\mathcal { X } \\times \\mathcal { Y } } p ( { \\bf x } , y ) \\left( \\sum _ { { \\bf s \\in \\{ 0 , 1 \\} } ^ { d } } \\nabla _ { \\theta } \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) \\left( \\hat { l } ( { \\bf x } , { \\bf s } ) + \\lambda | | { \\bf s } | | _ { 0 } \\right) \\right) d x d y } \\ ~ } \\\\ { { \\displaystyle ~ = \\int _ { \\mathcal { X } \\times \\mathcal { Y } } p ( { \\bf x } , y ) \\left( \\sum _ { { \\bf s \\in \\{ 0 , 1 \\} } ^ { d } } \\frac { \\nabla _ { \\theta } \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) } { \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) } \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) \\left( \\hat { l } ( { \\bf x } , { \\bf s } ) + \\lambda | | { \\bf s } | | _ { 0 } \\right) \\right) d x d y } \\ ~ } \\\\ { { \\displaystyle ~ = \\int _ { \\mathcal { X } \\times \\mathcal { Y } } p ( { \\bf x } , y ) \\left( \\sum _ { { \\bf s \\in \\{ 0 , 1 \\} } ^ { d } } \\nabla _ { \\theta } \\log \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) \\left( \\hat { l } ( { \\bf x } , { \\bf s } ) + \\lambda | | { \\bf s } | | _ { 0 } \\right) \\right) d x d y } \\ ~ } \\\\ { \\displaystyle ~ = \\mathbb { E } _ { ( { \\bf x } , y ) \\sim p } \\left[ \\mathbb { E } _ { { \\bf s } \\sim \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) } \\left[ \\left( \\hat { l } ( { \\bf x } , { \\bf s } ) + \\lambda | | { \\bf s } | | _ { 0 } \\right) \\nabla _ { \\theta } \\log \\pi _ { \\theta } ( { \\bf x } , { \\bf s } ) \\right] \\right] . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 459, + 1038, + 1241, + 1038, + 1241, + 1213, + 459, + 1213 + ], + "score": 0.93, + "latex": "\\begin{array} { l } { l _ { 2 } ( \\theta ) = \\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim p } \\left[ \\mathbb { E } _ { \\mathbf { s } \\sim \\pi _ { \\theta } ( \\mathbf { x } , \\cdot ) } \\Big [ \\hat { l } ( \\mathbf { x } , \\mathbf { s } ) + \\lambda | | \\mathbf { s } | | _ { 0 } \\Big ] \\right] } \\\\ { \\displaystyle = \\int _ { \\mathcal { X } \\times \\mathcal { Y } } p ( \\mathbf { x } , y ) \\left( \\sum _ { \\mathbf { s } \\in \\{ 0 , 1 \\} ^ { d } } \\pi _ { \\theta } ( \\mathbf { x } , \\mathbf { s } ) \\left( \\hat { l } ( \\mathbf { x } , \\mathbf { s } ) + \\lambda | | \\mathbf { s } | | _ { 0 } \\right) \\right) d x d y . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 662, + 1706, + 696, + 1706, + 696, + 1738, + 662, + 1738 + ], + "score": 0.89, + "latex": "f ^ { \\gamma }" + }, + { + "category_id": 13, + "poly": [ + 816, + 1239, + 833, + 1239, + 833, + 1264, + 816, + 1264 + ], + "score": 0.82, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 522, + 1701, + 555, + 1701, + 555, + 1734, + 522, + 1734 + ], + "score": 0.78, + "latex": "{ \\hat { S } } ^ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 570, + 1702, + 605, + 1702, + 605, + 1738, + 570, + 1738 + ], + "score": 0.73, + "latex": "f ^ { \\phi }" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 222.0, + 1168.0, + 222.0, + 1168.0, + 255.0, + 1055.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 258.0, + 877.0, + 258.0, + 877.0, + 303.0, + 808.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 278.0, + 1014.0, + 278.0, + 1014.0, + 307.0, + 933.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 264.0, + 1140.0, + 264.0, + 1140.0, + 311.0, + 1060.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 314.0, + 816.0, + 314.0, + 816.0, + 339.0, + 712.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 304.0, + 852.0, + 304.0, + 852.0, + 324.0, + 828.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 301.0, + 1010.0, + 301.0, + 1010.0, + 326.0, + 935.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 311.0, + 1114.0, + 311.0, + 1114.0, + 344.0, + 1084.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 335.0, + 795.0, + 335.0, + 795.0, + 359.0, + 729.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 338.0, + 1111.0, + 338.0, + 1111.0, + 367.0, + 1085.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 344.0, + 1279.0, + 344.0, + 1279.0, + 368.0, + 1177.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 354.0, + 774.0, + 354.0, + 774.0, + 379.0, + 739.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 355.0, + 852.0, + 355.0, + 852.0, + 374.0, + 828.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 358.0, + 1284.0, + 358.0, + 1284.0, + 390.0, + 1170.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 377.0, + 769.0, + 377.0, + 769.0, + 388.0, + 761.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 372.0, + 1105.0, + 372.0, + 1105.0, + 387.0, + 1095.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 390.0, + 617.0, + 390.0, + 617.0, + 419.0, + 542.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 388.0, + 1113.0, + 388.0, + 1113.0, + 416.0, + 1085.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 408.0, + 373.0, + 408.0, + 373.0, + 438.0, + 301.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 416.0, + 529.0, + 416.0, + 529.0, + 448.0, + 387.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 407.0, + 624.0, + 407.0, + 624.0, + 439.0, + 534.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 411.0, + 802.0, + 411.0, + 802.0, + 438.0, + 726.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 414.0, + 1252.0, + 414.0, + 1252.0, + 440.0, + 1204.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 440.0, + 349.0, + 440.0, + 349.0, + 462.0, + 325.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 436.0, + 593.0, + 436.0, + 593.0, + 468.0, + 562.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 441.0, + 772.0, + 441.0, + 772.0, + 458.0, + 754.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 445.0, + 1237.0, + 445.0, + 1237.0, + 465.0, + 1217.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 464.0, + 351.0, + 464.0, + 351.0, + 488.0, + 324.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 453.0, + 596.0, + 453.0, + 596.0, + 522.0, + 562.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 465.0, + 772.0, + 465.0, + 772.0, + 482.0, + 754.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 472.0, + 1236.0, + 472.0, + 1236.0, + 489.0, + 1220.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1329.0, + 466.0, + 1373.0, + 466.0, + 1373.0, + 495.0, + 1329.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 489.0, + 351.0, + 489.0, + 351.0, + 513.0, + 324.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 479.0, + 709.0, + 479.0, + 709.0, + 529.0, + 633.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 493.0, + 772.0, + 493.0, + 772.0, + 508.0, + 754.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 503.0, + 1234.0, + 503.0, + 1234.0, + 513.0, + 1222.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 483.0, + 1390.0, + 483.0, + 1390.0, + 511.0, + 1312.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 541.0, + 350.0, + 541.0, + 350.0, + 561.0, + 325.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 539.0, + 591.0, + 539.0, + 591.0, + 564.0, + 563.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 540.0, + 773.0, + 540.0, + 773.0, + 560.0, + 753.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 518.0, + 872.0, + 518.0, + 872.0, + 573.0, + 803.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 526.0, + 1012.0, + 526.0, + 1012.0, + 575.0, + 934.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 510.0, + 1141.0, + 510.0, + 1141.0, + 558.0, + 1060.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 521.0, + 1237.0, + 521.0, + 1237.0, + 541.0, + 1217.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 573.0, + 853.0, + 573.0, + 853.0, + 622.0, + 824.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 558.0, + 1114.0, + 558.0, + 1114.0, + 631.0, + 1083.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 589.0, + 1284.0, + 589.0, + 1284.0, + 636.0, + 1171.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 634.0, + 846.0, + 634.0, + 846.0, + 642.0, + 836.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 634.0, + 1111.0, + 634.0, + 1111.0, + 663.0, + 1085.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 650.0, + 853.0, + 650.0, + 853.0, + 674.0, + 826.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 701.0, + 1157.0, + 701.0, + 1157.0, + 725.0, + 1045.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 752.0, + 1406.0, + 752.0, + 1406.0, + 789.0, + 293.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 784.0, + 1404.0, + 784.0, + 1404.0, + 819.0, + 290.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 813.0, + 1406.0, + 813.0, + 1406.0, + 849.0, + 293.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 846.0, + 1404.0, + 846.0, + 1404.0, + 878.0, + 295.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 875.0, + 1406.0, + 875.0, + 1406.0, + 910.0, + 292.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 908.0, + 1326.0, + 908.0, + 1326.0, + 940.0, + 297.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1809.0, + 560.0, + 1809.0, + 560.0, + 1851.0, + 292.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1880.0, + 1405.0, + 1880.0, + 1405.0, + 1917.0, + 293.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1912.0, + 1404.0, + 1912.0, + 1404.0, + 1945.0, + 295.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1941.0, + 1407.0, + 1941.0, + 1407.0, + 1978.0, + 293.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1973.0, + 1403.0, + 1973.0, + 1403.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2001.0, + 1406.0, + 2001.0, + 1406.0, + 2036.0, + 292.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1698.0, + 521.0, + 1698.0, + 521.0, + 1743.0, + 294.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 1698.0, + 569.0, + 1698.0, + 569.0, + 1743.0, + 556.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 1698.0, + 661.0, + 1698.0, + 661.0, + 1743.0, + 606.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 1698.0, + 1408.0, + 1698.0, + 1408.0, + 1743.0, + 697.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1735.0, + 1358.0, + 1735.0, + 1358.0, + 1772.0, + 295.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1231.0, + 815.0, + 1231.0, + 815.0, + 1275.0, + 294.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 1231.0, + 933.0, + 1231.0, + 933.0, + 1275.0, + 834.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 993.0, + 1017.0, + 993.0, + 1017.0, + 1032.0, + 294.0, + 1032.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1594, + 1404, + 1594, + 1404, + 1724, + 297, + 1724 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 298, + 1342, + 1405, + 1342, + 1405, + 1437, + 298, + 1437 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 579, + 1005, + 1167, + 1005, + 1167, + 1095, + 579, + 1095 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 612, + 1160, + 1134, + 1160, + 1134, + 1252, + 612, + 1252 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 531, + 852, + 1213, + 852, + 1213, + 939, + 531, + 939 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 300, + 1111, + 858, + 1111, + 858, + 1144, + 300, + 1144 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 299, + 956, + 870, + 956, + 870, + 989, + 299, + 989 + ], + "score": 0.916 + }, + { + "category_id": 0, + "poly": [ + 300, + 1538, + 701, + 1538, + 701, + 1571, + 300, + 1571 + ], + "score": 0.91 + }, + { + "category_id": 2, + "poly": [ + 296, + 1918, + 1405, + 1918, + 1405, + 2035, + 296, + 2035 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 815, + 74, + 815, + 105, + 299, + 105 + ], + "score": 0.901 + }, + { + "category_id": 0, + "poly": [ + 300, + 1480, + 749, + 1480, + 749, + 1512, + 300, + 1512 + ], + "score": 0.86 + }, + { + "category_id": 8, + "poly": [ + 791, + 590, + 954, + 590, + 954, + 633, + 791, + 633 + ], + "score": 0.856 + }, + { + "category_id": 8, + "poly": [ + 499, + 688, + 1238, + 688, + 1238, + 780, + 499, + 780 + ], + "score": 0.835 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2113, + 840, + 2113 + ], + "score": 0.806 + }, + { + "category_id": 0, + "poly": [ + 300, + 229, + 729, + 229, + 729, + 260, + 300, + 260 + ], + "score": 0.779 + }, + { + "category_id": 1, + "poly": [ + 366, + 1751, + 993, + 1751, + 993, + 1891, + 366, + 1891 + ], + "score": 0.773 + }, + { + "category_id": 1, + "poly": [ + 300, + 801, + 853, + 801, + 853, + 834, + 300, + 834 + ], + "score": 0.696 + }, + { + "category_id": 8, + "poly": [ + 747, + 475, + 999, + 475, + 999, + 520, + 747, + 520 + ], + "score": 0.66 + }, + { + "category_id": 1, + "poly": [ + 307, + 270, + 1207, + 270, + 1207, + 782, + 307, + 782 + ], + "score": 0.349 + }, + { + "category_id": 8, + "poly": [ + 366, + 1751, + 993, + 1751, + 993, + 1891, + 366, + 1891 + ], + "score": 0.297 + }, + { + "category_id": 14, + "poly": [ + 580, + 1002, + 1166, + 1002, + 1166, + 1097, + 580, + 1097 + ], + "score": 0.94, + "latex": "\\phi \\phi - \\beta \\frac { 1 } { n _ { m b } } \\sum _ { j = 1 } ^ { n _ { m b } } \\sum _ { i = 1 } ^ { c } y _ { i } ^ { j } \\times \\nabla _ { \\phi } \\log ( f _ { i } ^ { \\phi } ( \\mathbf { x } _ { j } ^ { ( \\mathbf { s } _ { j } ) } , \\mathbf { s } _ { j } ) )" + }, + { + "category_id": 14, + "poly": [ + 503, + 685, + 1241, + 685, + 1241, + 781, + 503, + 781 + ], + "score": 0.93, + "latex": "\\hat { l } _ { j } ( \\mathbf { x } _ { j } , \\mathbf { s } _ { j } ) \\gets - \\left[ \\sum _ { i = 1 } ^ { c } y _ { i } ^ { j } \\log ( f _ { i } ^ { \\phi } ( \\mathbf { x } _ { j } ^ { ( \\mathbf { s } _ { j } ) } , \\mathbf { s } _ { j } ) ) - \\sum _ { i = 1 } ^ { c } y _ { i } ^ { j } \\log ( f _ { i } ^ { \\gamma } ( \\mathbf { x } _ { j } ) ) \\right]" + }, + { + "category_id": 14, + "poly": [ + 611, + 1157, + 1135, + 1157, + 1135, + 1253, + 611, + 1253 + ], + "score": 0.93, + "latex": "\\gamma \\gamma - \\beta \\frac { 1 } { n _ { m b } } \\sum _ { j = 1 } ^ { n _ { m b } } \\sum _ { i = 1 } ^ { c } y _ { i } ^ { j } \\times \\nabla _ { \\gamma } \\log ( f _ { i } ^ { \\gamma } ( \\mathbf { x } _ { j } ) )" + }, + { + "category_id": 14, + "poly": [ + 534, + 848, + 1211, + 848, + 1211, + 942, + 534, + 942 + ], + "score": 0.93, + "latex": "\\theta \\theta - \\alpha \\frac { 1 } { n _ { m b } } \\sum _ { j = 1 } ^ { n _ { m b } } ( \\hat { l } _ { j } ( \\mathbf { x } _ { j } , \\mathbf { s } _ { j } ) + \\lambda | | \\mathbf { s } _ { j } | | ) \\nabla _ { \\theta } \\log \\pi _ { \\theta } ( \\mathbf { x } _ { j } , \\mathbf { s } _ { j } )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1685, + 585, + 1685, + 585, + 1728, + 297, + 1728 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\mathbb { P } ( Y = 1 | \\mathbf { X } ) = \\frac { 1 } { 1 + \\mathrm { l o g i t } ( \\mathbf { X } ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 983, + 1948, + 1104, + 1948, + 1104, + 1977, + 983, + 1977 + ], + "score": 0.92, + "latex": "X _ { 1 } , . . . , X _ { 1 0 }" + }, + { + "category_id": 14, + "poly": [ + 745, + 473, + 1000, + 473, + 1000, + 518, + 745, + 518 + ], + "score": 0.91, + "latex": "( p _ { 1 } ^ { j } , . . . , p _ { d } ^ { j } ) \\hat { S } ^ { \\theta } ( \\mathbf { x } _ { j } )" + }, + { + "category_id": 13, + "poly": [ + 519, + 1656, + 691, + 1656, + 691, + 1689, + 519, + 1689 + ], + "score": 0.91, + "latex": "( \\mathbf { X } \\sim \\mathcal { N } ( \\mathbf { 0 } , \\mathbf { I } ) )" + }, + { + "category_id": 13, + "poly": [ + 469, + 562, + 596, + 562, + 596, + 593, + 469, + 593 + ], + "score": 0.9, + "latex": "i = 1 , . . . , d" + }, + { + "category_id": 13, + "poly": [ + 808, + 362, + 1001, + 362, + 1001, + 402, + 808, + 402 + ], + "score": 0.9, + "latex": "( \\mathbf { x } _ { j } , y _ { j } ) _ { j = 1 } ^ { n _ { m b } } \\sim \\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 596, + 273, + 697, + 273, + 697, + 304, + 596, + 304 + ], + "score": 0.9, + "latex": "\\alpha , \\beta > 0" + }, + { + "category_id": 13, + "poly": [ + 428, + 397, + 589, + 397, + 589, + 429, + 428, + 429 + ], + "score": 0.89, + "latex": "j = 1 , . . . , n _ { m b }" + }, + { + "category_id": 13, + "poly": [ + 925, + 1921, + 970, + 1921, + 970, + 1947, + 925, + 1947 + ], + "score": 0.89, + "latex": "X _ { 1 1 }" + }, + { + "category_id": 13, + "poly": [ + 885, + 275, + 986, + 275, + 986, + 303, + 885, + 303 + ], + "score": 0.89, + "latex": "n _ { m b } > 0" + }, + { + "category_id": 14, + "poly": [ + 791, + 586, + 955, + 586, + 955, + 632, + 791, + 632 + ], + "score": 0.89, + "latex": "s _ { i } ^ { j } \\sim B e r ( p _ { i } ^ { j } )" + }, + { + "category_id": 13, + "poly": [ + 584, + 305, + 659, + 305, + 659, + 335, + 584, + 335 + ], + "score": 0.89, + "latex": "\\theta , \\phi , \\gamma" + }, + { + "category_id": 13, + "poly": [ + 846, + 958, + 866, + 958, + 866, + 989, + 846, + 989 + ], + "score": 0.84, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 482, + 1753, + 619, + 1753, + 619, + 1788, + 482, + 1788 + ], + "score": 0.83, + "latex": "\\exp ( X _ { 1 } X _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 481, + 1852, + 990, + 1852, + 990, + 1888, + 481, + 1888 + ], + "score": 0.8, + "latex": "- 1 0 \\times \\sin 2 X _ { 7 } + 2 | X _ { 8 } | + X _ { 9 } + \\exp ( - X _ { 1 0 } )" + }, + { + "category_id": 13, + "poly": [ + 833, + 803, + 850, + 803, + 850, + 828, + 833, + 828 + ], + "score": 0.8, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 827, + 1657, + 854, + 1657, + 854, + 1684, + 827, + 1684 + ], + "score": 0.79, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 837, + 1118, + 857, + 1118, + 857, + 1144, + 837, + 1144 + ], + "score": 0.79, + "latex": "\\gamma" + }, + { + "category_id": 13, + "poly": [ + 482, + 1801, + 705, + 1801, + 705, + 1843, + 482, + 1843 + ], + "score": 0.73, + "latex": "\\textstyle \\exp ( \\sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )" + }, + { + "category_id": 13, + "poly": [ + 1080, + 273, + 1107, + 273, + 1107, + 301, + 1080, + 301 + ], + "score": 0.66, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 332, + 1916, + 419, + 1916, + 419, + 1946, + 332, + 1946 + ], + "score": 0.56, + "latex": "^ { 6 } \\mathrm { I n } \\mathrm { L } 2 \\mathrm { X }" + }, + { + "category_id": 13, + "poly": [ + 726, + 1687, + 771, + 1687, + 771, + 1720, + 726, + 1720 + ], + "score": 0.53, + "latex": "( \\mathbf { X } )" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1539.0, + 703.0, + 1539.0, + 703.0, + 1572.0, + 296.0, + 1572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1910.0, + 331.0, + 1910.0, + 331.0, + 1958.0, + 327.0, + 1958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 1910.0, + 924.0, + 1910.0, + 924.0, + 1958.0, + 420.0, + 1958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1910.0, + 1407.0, + 1910.0, + 1407.0, + 1958.0, + 971.0, + 1958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1948.0, + 982.0, + 1948.0, + 982.0, + 1978.0, + 296.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 1948.0, + 1402.0, + 1948.0, + 1402.0, + 1978.0, + 1105.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1966.0, + 1407.0, + 1966.0, + 1407.0, + 2019.0, + 327.0, + 2019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2004.0, + 385.0, + 2004.0, + 385.0, + 2035.0, + 295.0, + 2035.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": [ + 294.0, + 1478.0, + 752.0, + 1478.0, + 752.0, + 1514.0, + 294.0, + 1514.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, + 227.0, + 731.0, + 227.0, + 731.0, + 266.0, + 296.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1596.0, + 1404.0, + 1596.0, + 1404.0, + 1629.0, + 295.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1621.0, + 1406.0, + 1621.0, + 1406.0, + 1661.0, + 294.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1657.0, + 518.0, + 1657.0, + 518.0, + 1690.0, + 295.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 1657.0, + 826.0, + 1657.0, + 826.0, + 1690.0, + 692.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 1657.0, + 1404.0, + 1657.0, + 1404.0, + 1690.0, + 855.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1679.0, + 296.0, + 1679.0, + 296.0, + 1736.0, + 287.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 1679.0, + 725.0, + 1679.0, + 725.0, + 1736.0, + 586.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 1679.0, + 1316.0, + 1679.0, + 1316.0, + 1736.0, + 772.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1343.0, + 1403.0, + 1343.0, + 1403.0, + 1377.0, + 295.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1374.0, + 1403.0, + 1374.0, + 1403.0, + 1409.0, + 292.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1408.0, + 411.0, + 1408.0, + 411.0, + 1436.0, + 297.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1110.0, + 340.0, + 1110.0, + 340.0, + 1146.0, + 297.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 1105.0, + 836.0, + 1105.0, + 836.0, + 1153.0, + 381.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 1105.0, + 861.0, + 1105.0, + 861.0, + 1153.0, + 858.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 955.0, + 340.0, + 955.0, + 340.0, + 991.0, + 296.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 950.0, + 845.0, + 950.0, + 845.0, + 998.0, + 381.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 950.0, + 872.0, + 950.0, + 872.0, + 998.0, + 867.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1750.0, + 481.0, + 1750.0, + 481.0, + 1792.0, + 367.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 1750.0, + 623.0, + 1750.0, + 623.0, + 1792.0, + 620.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 1795.0, + 481.0, + 1795.0, + 481.0, + 1851.0, + 362.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 1795.0, + 714.0, + 1795.0, + 714.0, + 1851.0, + 706.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1849.0, + 480.0, + 1849.0, + 480.0, + 1890.0, + 367.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 800.0, + 340.0, + 800.0, + 340.0, + 835.0, + 296.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 799.0, + 832.0, + 799.0, + 832.0, + 836.0, + 383.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 270.0, + 595.0, + 270.0, + 595.0, + 305.0, + 307.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 270.0, + 884.0, + 270.0, + 884.0, + 305.0, + 698.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 270.0, + 1079.0, + 270.0, + 1079.0, + 305.0, + 987.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 295.0, + 583.0, + 295.0, + 583.0, + 341.0, + 304.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 295.0, + 666.0, + 295.0, + 666.0, + 341.0, + 660.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 330.0, + 565.0, + 330.0, + 565.0, + 368.0, + 305.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 362.0, + 341.0, + 362.0, + 341.0, + 396.0, + 306.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 349.0, + 807.0, + 349.0, + 807.0, + 409.0, + 377.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 394.0, + 340.0, + 394.0, + 340.0, + 429.0, + 306.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 393.0, + 427.0, + 393.0, + 427.0, + 433.0, + 380.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 393.0, + 632.0, + 393.0, + 632.0, + 433.0, + 590.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 428.0, + 339.0, + 428.0, + 339.0, + 460.0, + 307.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 426.0, + 789.0, + 426.0, + 789.0, + 460.0, + 425.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 528.0, + 339.0, + 528.0, + 339.0, + 566.0, + 307.0, + 566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 528.0, + 699.0, + 528.0, + 699.0, + 564.0, + 426.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 558.0, + 339.0, + 558.0, + 339.0, + 596.0, + 307.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 560.0, + 468.0, + 560.0, + 468.0, + 594.0, + 426.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 560.0, + 636.0, + 560.0, + 636.0, + 594.0, + 597.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 587.0, + 790.0, + 587.0, + 790.0, + 635.0, + 787.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 645.0, + 338.0, + 645.0, + 338.0, + 679.0, + 308.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 641.0, + 589.0, + 641.0, + 589.0, + 678.0, + 425.0, + 678.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 296, + 906, + 1405, + 906, + 1405, + 1243, + 296, + 1243 + ], + "score": 0.984, + "html": "
DatasetSyn1Syn2Syn3Syn4Syn5Syn6
Metrics (%)TPRFDRTPRFDRTPRFDRTPRFDRTPRFDRTPRFDR
INVASE100.00.0100.00.092.00.099.810.384.81.190.17.4
L2X LIME100.0 13.80.0 86.2100.0 100.00.0 0.069.4 98.130.6 1.979.5 40.721.8 49.474.8 41.126.3 50.683.3 50.516.7 49.5
Shapley Knockoff60.4 10.039.6 70.093.3 8.76.7 36.290.9 81.29.1 17.565.2 38.831.9 35.162.9 41.033.7 51.171.2 56.628.8 42.1
Tree100.00.0100.00.0100.00.054.739.056.840.0
37.560.0
SCFS23.539.5
76.560.578.322.048.952.442.451.256.143.9
LASSO19.081.039.860.278.321.749.950.945.548.256.443.6
" + }, + { + "category_id": 1, + "poly": [ + 297, + 535, + 1406, + 535, + 1406, + 812, + 297, + 812 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1337, + 1404, + 1337, + 1404, + 1523, + 298, + 1523 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1537, + 1404, + 1537, + 1404, + 1753, + 297, + 1753 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1766, + 1404, + 1766, + 1404, + 1982, + 297, + 1982 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 369, + 347, + 1176, + 347, + 1176, + 465, + 369, + 465 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 297, + 229, + 1401, + 229, + 1401, + 323, + 297, + 323 + ], + "score": 0.961 + }, + { + "category_id": 2, + "poly": [ + 332, + 2004, + 940, + 2004, + 940, + 2034, + 332, + 2034 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 298, + 488, + 1336, + 488, + 1336, + 521, + 298, + 521 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.902 + }, + { + "category_id": 6, + "poly": [ + 395, + 1266, + 1303, + 1266, + 1303, + 1298, + 395, + 1298 + ], + "score": 0.751 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 858, + 2088, + 858, + 2111, + 842, + 2111 + ], + "score": 0.682 + }, + { + "category_id": 0, + "poly": [ + 298, + 845, + 531, + 845, + 531, + 876, + 298, + 876 + ], + "score": 0.6 + }, + { + "category_id": 6, + "poly": [ + 298, + 845, + 531, + 845, + 531, + 876, + 298, + 876 + ], + "score": 0.34 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2111, + 841, + 2111 + ], + "score": 0.244 + }, + { + "category_id": 13, + "poly": [ + 840, + 1798, + 1003, + 1798, + 1003, + 1831, + 840, + 1831 + ], + "score": 0.93, + "latex": "( X _ { 1 } , X _ { 2 } , X _ { 1 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1122, + 1691, + 1225, + 1691, + 1225, + 1721, + 1122, + 1721 + ], + "score": 0.92, + "latex": "X _ { 1 1 } < 0" + }, + { + "category_id": 13, + "poly": [ + 450, + 1721, + 550, + 1721, + 550, + 1752, + 450, + 1752 + ], + "score": 0.92, + "latex": "X _ { 1 1 } \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 834, + 1630, + 944, + 1630, + 944, + 1661, + 834, + 1661 + ], + "score": 0.92, + "latex": "X _ { 1 1 } \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 507, + 431, + 607, + 431, + 607, + 463, + 507, + 463 + ], + "score": 0.92, + "latex": "X _ { 1 1 } < 0" + }, + { + "category_id": 13, + "poly": [ + 464, + 1630, + 574, + 1630, + 574, + 1660, + 464, + 1660 + ], + "score": 0.92, + "latex": "X _ { 1 1 } ~ < ~ 0" + }, + { + "category_id": 13, + "poly": [ + 560, + 1691, + 683, + 1691, + 683, + 1722, + 560, + 1722 + ], + "score": 0.91, + "latex": "k = 3 , 4 , 5" + }, + { + "category_id": 13, + "poly": [ + 507, + 390, + 607, + 390, + 607, + 422, + 507, + 422 + ], + "score": 0.91, + "latex": "X _ { 1 1 } < 0" + }, + { + "category_id": 13, + "poly": [ + 507, + 350, + 608, + 350, + 608, + 381, + 507, + 381 + ], + "score": 0.91, + "latex": "X _ { 1 1 } < 0" + }, + { + "category_id": 13, + "poly": [ + 992, + 1891, + 1063, + 1891, + 1063, + 1918, + 992, + 1918 + ], + "score": 0.91, + "latex": "k = 3" + }, + { + "category_id": 13, + "poly": [ + 449, + 566, + 725, + 566, + 725, + 601, + 449, + 601 + ], + "score": 0.9, + "latex": "( \\mathcal { D } _ { t r a i n } { \\bf \\bar { \\alpha } } = ( { \\bf x } _ { i } , y _ { i } ) _ { i = 1 } ^ { 1 0 0 0 0 } )" + }, + { + "category_id": 13, + "poly": [ + 488, + 628, + 565, + 628, + 565, + 656, + 488, + 656 + ], + "score": 0.9, + "latex": "k = 5" + }, + { + "category_id": 13, + "poly": [ + 870, + 566, + 1133, + 566, + 1133, + 602, + 870, + 602 + ], + "score": 0.89, + "latex": "( \\mathcal { D } _ { t e s t } = ( \\mathbf { \\bar { x } } _ { j } ^ { - } , y _ { j } ) _ { j = 1 } ^ { 1 0 0 0 0 } )" + }, + { + "category_id": 13, + "poly": [ + 342, + 1768, + 412, + 1768, + 412, + 1796, + 342, + 1796 + ], + "score": 0.89, + "latex": "k = 3" + }, + { + "category_id": 13, + "poly": [ + 718, + 1860, + 773, + 1860, + 773, + 1889, + 718, + 1889 + ], + "score": 0.87, + "latex": "40 \\%" + }, + { + "category_id": 13, + "poly": [ + 918, + 629, + 938, + 629, + 938, + 655, + 918, + 655 + ], + "score": 0.82, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1053, + 601, + 1133, + 601, + 1133, + 626, + 1053, + 626 + ], + "score": 0.8, + "latex": "k = 4" + }, + { + "category_id": 13, + "poly": [ + 1335, + 1799, + 1354, + 1799, + 1354, + 1827, + 1335, + 1827 + ], + "score": 0.78, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 551, + 600, + 571, + 600, + 571, + 625, + 551, + 625 + ], + "score": 0.77, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 771, + 687, + 857, + 687, + 857, + 720, + 771, + 720 + ], + "score": 0.63, + "latex": "\\mathrm { ( F D R ) } ^ { 8 }" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 2000.0, + 942.0, + 2000.0, + 942.0, + 2037.0, + 331.0, + 2037.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": [ + 393.0, + 1263.0, + 1307.0, + 1263.0, + 1307.0, + 1302.0, + 393.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2119.0, + 840.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 840.0, + 535.0, + 840.0, + 535.0, + 881.0, + 294.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 840.0, + 535.0, + 840.0, + 535.0, + 881.0, + 294.0, + 881.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, + 535.0, + 1404.0, + 535.0, + 1404.0, + 571.0, + 295.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 284.0, + 550.0, + 448.0, + 550.0, + 448.0, + 632.0, + 284.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 550.0, + 869.0, + 550.0, + 869.0, + 632.0, + 726.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 550.0, + 1416.0, + 550.0, + 1416.0, + 632.0, + 1134.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 626.0, + 487.0, + 626.0, + 487.0, + 663.0, + 294.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 626.0, + 917.0, + 626.0, + 917.0, + 663.0, + 566.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 626.0, + 1406.0, + 626.0, + 1406.0, + 663.0, + 939.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 656.0, + 1407.0, + 656.0, + 1407.0, + 697.0, + 291.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 687.0, + 770.0, + 687.0, + 770.0, + 723.0, + 295.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 687.0, + 1407.0, + 687.0, + 1407.0, + 723.0, + 858.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 721.0, + 1404.0, + 721.0, + 1404.0, + 753.0, + 296.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 748.0, + 1406.0, + 748.0, + 1406.0, + 785.0, + 295.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 780.0, + 1087.0, + 780.0, + 1087.0, + 816.0, + 295.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1339.0, + 1404.0, + 1339.0, + 1404.0, + 1371.0, + 296.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1366.0, + 1405.0, + 1366.0, + 1405.0, + 1408.0, + 292.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1395.0, + 1406.0, + 1395.0, + 1406.0, + 1438.0, + 292.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1430.0, + 1406.0, + 1430.0, + 1406.0, + 1466.0, + 293.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1458.0, + 1406.0, + 1458.0, + 1406.0, + 1496.0, + 292.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1493.0, + 798.0, + 1493.0, + 798.0, + 1524.0, + 296.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1536.0, + 1405.0, + 1536.0, + 1405.0, + 1573.0, + 294.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1568.0, + 1405.0, + 1568.0, + 1405.0, + 1603.0, + 295.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1598.0, + 1406.0, + 1598.0, + 1406.0, + 1633.0, + 295.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1628.0, + 463.0, + 1628.0, + 463.0, + 1664.0, + 294.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 1628.0, + 833.0, + 1628.0, + 833.0, + 1664.0, + 575.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 1628.0, + 1406.0, + 1628.0, + 1406.0, + 1664.0, + 945.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1656.0, + 1406.0, + 1656.0, + 1406.0, + 1696.0, + 292.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1689.0, + 559.0, + 1689.0, + 559.0, + 1728.0, + 294.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 1689.0, + 1121.0, + 1689.0, + 1121.0, + 1728.0, + 684.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 1689.0, + 1406.0, + 1689.0, + 1406.0, + 1728.0, + 1226.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1720.0, + 449.0, + 1720.0, + 449.0, + 1755.0, + 293.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1720.0, + 561.0, + 1720.0, + 561.0, + 1755.0, + 551.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1767.0, + 341.0, + 1767.0, + 341.0, + 1801.0, + 295.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 1767.0, + 1405.0, + 1767.0, + 1405.0, + 1801.0, + 413.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1800.0, + 839.0, + 1800.0, + 839.0, + 1831.0, + 296.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 1800.0, + 1334.0, + 1800.0, + 1334.0, + 1831.0, + 1004.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 1800.0, + 1405.0, + 1800.0, + 1405.0, + 1831.0, + 1355.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1827.0, + 1404.0, + 1827.0, + 1404.0, + 1863.0, + 292.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1858.0, + 717.0, + 1858.0, + 717.0, + 1894.0, + 292.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 1858.0, + 1404.0, + 1858.0, + 1404.0, + 1894.0, + 774.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1888.0, + 991.0, + 1888.0, + 991.0, + 1923.0, + 295.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1888.0, + 1405.0, + 1888.0, + 1405.0, + 1923.0, + 1064.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1921.0, + 1406.0, + 1921.0, + 1406.0, + 1954.0, + 294.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1951.0, + 854.0, + 1951.0, + 854.0, + 1984.0, + 292.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 346.0, + 506.0, + 346.0, + 506.0, + 386.0, + 368.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 346.0, + 1177.0, + 346.0, + 1177.0, + 386.0, + 609.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 387.0, + 506.0, + 387.0, + 506.0, + 425.0, + 368.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 387.0, + 1178.0, + 387.0, + 1178.0, + 425.0, + 608.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 428.0, + 506.0, + 428.0, + 506.0, + 466.0, + 368.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 428.0, + 1176.0, + 428.0, + 1176.0, + 466.0, + 608.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 226.0, + 1403.0, + 226.0, + 1403.0, + 266.0, + 292.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 260.0, + 1403.0, + 260.0, + 1403.0, + 294.0, + 295.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 289.0, + 518.0, + 289.0, + 518.0, + 323.0, + 295.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 487.0, + 1341.0, + 487.0, + 1341.0, + 526.0, + 294.0, + 526.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1472, + 1404, + 1472, + 1404, + 1778, + 297, + 1778 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1090, + 1404, + 1090, + 1404, + 1456, + 297, + 1456 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 229, + 1404, + 229, + 1404, + 537, + 297, + 537 + ], + "score": 0.979 + }, + { + "category_id": 5, + "poly": [ + 402, + 568, + 1296, + 568, + 1296, + 858, + 402, + 858 + ], + "score": 0.979, + "html": "
DatasetsSyn4Syn5
Group1212
Metrics (%)TPRFDRTPRFDRTPRFDRTPRFDR
INVASE99.524.6100.00.41 69.21.699.80.6
L2X (k = 3)71.128.957.24.665.534.555.47.7
L2X (k = 4)81.039.274.96.376.242.972.49.4
L2X(k = 5)89.946.084.615.487.547.582.117.9
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1793, + 1402, + 1793, + 1402, + 1947, + 298, + 1947 + ], + "score": 0.972 + }, + { + "category_id": 2, + "poly": [ + 301, + 1978, + 1403, + 1978, + 1403, + 2035, + 301, + 2035 + ], + "score": 0.94 + }, + { + "category_id": 0, + "poly": [ + 298, + 1034, + 538, + 1034, + 538, + 1066, + 298, + 1066 + ], + "score": 0.898 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.881 + }, + { + "category_id": 6, + "poly": [ + 299, + 881, + 1403, + 881, + 1403, + 975, + 299, + 975 + ], + "score": 0.844 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.8 + }, + { + "category_id": 1, + "poly": [ + 299, + 881, + 1403, + 881, + 1403, + 975, + 299, + 975 + ], + "score": 0.11 + }, + { + "category_id": 13, + "poly": [ + 582, + 2005, + 890, + 2005, + 890, + 2034, + 582, + 2034 + ], + "score": 0.91, + "latex": "\\bar { X _ { 1 } } , \\bar { X _ { 2 } } , \\bar { X _ { 3 } } , \\bar { X _ { 4 } } , \\bar { X _ { 5 } } , \\bar { X _ { 6 } } , \\bar { X _ { 1 1 } }" + }, + { + "category_id": 13, + "poly": [ + 1055, + 383, + 1105, + 383, + 1105, + 414, + 1055, + 414 + ], + "score": 0.91, + "latex": "X _ { 1 1 }" + }, + { + "category_id": 13, + "poly": [ + 1178, + 913, + 1284, + 913, + 1284, + 944, + 1178, + 944 + ], + "score": 0.91, + "latex": "X _ { 1 1 } < 0" + }, + { + "category_id": 13, + "poly": [ + 1191, + 415, + 1241, + 415, + 1241, + 444, + 1191, + 444 + ], + "score": 0.9, + "latex": "X _ { 1 1 }" + }, + { + "category_id": 13, + "poly": [ + 424, + 262, + 474, + 262, + 474, + 292, + 424, + 292 + ], + "score": 0.9, + "latex": "X _ { 1 1 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 383, + 347, + 383, + 347, + 414, + 298, + 414 + ], + "score": 0.89, + "latex": "X _ { 1 1 }" + }, + { + "category_id": 13, + "poly": [ + 297, + 943, + 399, + 943, + 399, + 975, + 297, + 975 + ], + "score": 0.89, + "latex": "X _ { 1 1 } \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 1218, + 1979, + 1253, + 1979, + 1253, + 2004, + 1218, + 2004 + ], + "score": 0.87, + "latex": "X _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1298, + 1979, + 1333, + 1979, + 1333, + 2004, + 1298, + 2004 + ], + "score": 0.87, + "latex": "X _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1656, + 349, + 1656, + 349, + 1685, + 296, + 1685 + ], + "score": 0.43, + "latex": "L 2 X" + }, + { + "category_id": 13, + "poly": [ + 485, + 789, + 565, + 789, + 565, + 815, + 485, + 815 + ], + "score": 0.26, + "latex": "( k = 4 )" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1971.0, + 1217.0, + 1971.0, + 1217.0, + 2011.0, + 329.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 1971.0, + 1297.0, + 1971.0, + 1297.0, + 2011.0, + 1254.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2011.0, + 1334.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2003.0, + 581.0, + 2003.0, + 581.0, + 2037.0, + 296.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 2003.0, + 902.0, + 2003.0, + 902.0, + 2037.0, + 891.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1031.0, + 543.0, + 1031.0, + 543.0, + 1072.0, + 294.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 879.0, + 1403.0, + 879.0, + 1403.0, + 917.0, + 294.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 911.0, + 1177.0, + 911.0, + 1177.0, + 947.0, + 293.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 911.0, + 1403.0, + 911.0, + 1403.0, + 947.0, + 1285.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 939.0, + 296.0, + 939.0, + 296.0, + 979.0, + 292.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 939.0, + 407.0, + 939.0, + 407.0, + 979.0, + 400.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2117.0, + 838.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1471.0, + 1407.0, + 1471.0, + 1407.0, + 1507.0, + 295.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1501.0, + 1405.0, + 1501.0, + 1405.0, + 1537.0, + 294.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1532.0, + 1407.0, + 1532.0, + 1407.0, + 1568.0, + 295.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1565.0, + 1405.0, + 1565.0, + 1405.0, + 1597.0, + 296.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1595.0, + 1406.0, + 1595.0, + 1406.0, + 1630.0, + 294.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1622.0, + 1406.0, + 1622.0, + 1406.0, + 1659.0, + 294.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1654.0, + 295.0, + 1654.0, + 295.0, + 1691.0, + 292.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1654.0, + 1406.0, + 1654.0, + 1406.0, + 1691.0, + 350.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1683.0, + 1405.0, + 1683.0, + 1405.0, + 1721.0, + 292.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1716.0, + 1404.0, + 1716.0, + 1404.0, + 1752.0, + 295.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1747.0, + 531.0, + 1747.0, + 531.0, + 1782.0, + 292.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1091.0, + 1404.0, + 1091.0, + 1404.0, + 1125.0, + 294.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1120.0, + 1402.0, + 1120.0, + 1402.0, + 1157.0, + 294.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1152.0, + 1404.0, + 1152.0, + 1404.0, + 1186.0, + 294.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1181.0, + 1405.0, + 1181.0, + 1405.0, + 1217.0, + 291.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1212.0, + 1404.0, + 1212.0, + 1404.0, + 1246.0, + 294.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1243.0, + 1405.0, + 1243.0, + 1405.0, + 1277.0, + 294.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1274.0, + 1404.0, + 1274.0, + 1404.0, + 1308.0, + 295.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1302.0, + 1405.0, + 1302.0, + 1405.0, + 1339.0, + 292.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1335.0, + 1405.0, + 1335.0, + 1405.0, + 1369.0, + 295.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1364.0, + 1404.0, + 1364.0, + 1404.0, + 1399.0, + 292.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1396.0, + 1404.0, + 1396.0, + 1404.0, + 1430.0, + 292.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1425.0, + 408.0, + 1425.0, + 408.0, + 1460.0, + 292.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 231.0, + 1402.0, + 231.0, + 1402.0, + 263.0, + 296.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 259.0, + 423.0, + 259.0, + 423.0, + 295.0, + 294.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 259.0, + 1405.0, + 259.0, + 1405.0, + 295.0, + 475.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 291.0, + 1405.0, + 291.0, + 1405.0, + 327.0, + 294.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 322.0, + 1405.0, + 322.0, + 1405.0, + 357.0, + 295.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 351.0, + 1404.0, + 351.0, + 1404.0, + 389.0, + 294.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 380.0, + 297.0, + 380.0, + 297.0, + 417.0, + 294.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 380.0, + 1054.0, + 380.0, + 1054.0, + 417.0, + 348.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 380.0, + 1405.0, + 380.0, + 1405.0, + 417.0, + 1106.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 411.0, + 1190.0, + 411.0, + 1190.0, + 449.0, + 294.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 411.0, + 1404.0, + 411.0, + 1404.0, + 449.0, + 1242.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 442.0, + 1404.0, + 442.0, + 1404.0, + 479.0, + 294.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 472.0, + 1406.0, + 472.0, + 1406.0, + 511.0, + 294.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 504.0, + 1125.0, + 504.0, + 1125.0, + 539.0, + 292.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1791.0, + 1406.0, + 1791.0, + 1406.0, + 1829.0, + 293.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1824.0, + 1403.0, + 1824.0, + 1403.0, + 1857.0, + 296.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1855.0, + 1404.0, + 1855.0, + 1404.0, + 1889.0, + 294.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1883.0, + 1403.0, + 1883.0, + 1403.0, + 1919.0, + 294.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1915.0, + 1404.0, + 1915.0, + 1404.0, + 1952.0, + 294.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 879.0, + 1403.0, + 879.0, + 1403.0, + 917.0, + 294.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 911.0, + 1177.0, + 911.0, + 1177.0, + 947.0, + 293.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 911.0, + 1403.0, + 911.0, + 1403.0, + 947.0, + 1285.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 939.0, + 296.0, + 939.0, + 296.0, + 979.0, + 292.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 939.0, + 407.0, + 939.0, + 407.0, + 979.0, + 400.0, + 979.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1182, + 1404, + 1182, + 1404, + 1396, + 298, + 1396 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1591, + 1404, + 1591, + 1404, + 1745, + 299, + 1745 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1911, + 1402, + 1911, + 1402, + 2033, + 299, + 2033 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 1412, + 1402, + 1412, + 1402, + 1505, + 299, + 1505 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 300, + 970, + 1400, + 970, + 1400, + 1033, + 300, + 1033 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 297, + 1761, + 1398, + 1761, + 1398, + 1823, + 297, + 1823 + ], + "score": 0.945 + }, + { + "category_id": 5, + "poly": [ + 295, + 225, + 1409, + 225, + 1409, + 795, + 295, + 795 + ], + "score": 0.934, + "html": "
DatasetAUROC
w/o FSwith Globalwith INVASEwith Treewith L2Xwith LASSO
Syn1.578±.004.686±.005.690±.006.574±.101.498±.005.498±.006
Syn2.789±.003.873±.003.877±.003.872±.003.823±.029.555±.061
Syn3.854±.004.900±.003.902±.003.899±.001.862±.009.886±.003
Syn4.558±.021.774±.006.787±.004.684±.017.678±.024.514±.031
Syn5.662±.013.784±.005 .858±.004.784±.005.741±.004.709±.008.691±.024
Syn6.692±.015.877±.003.771±.031.827±.017.727±.025
DatasetAUPRC
w/o FSwith Globalwith INVASEwith Treewith L2Xwith LASSO
Syn1.567±.007.690±.006.694±.006.577±.102.498±.007.499±.008
Syn2.799±.005.878±.005.886±.004.878±.004.817±.031.591±.037
Syn3.861±.003.905±.002.907±.003.904±.002.860±.012.890±.002
Syn4.572±.019.794±.006.804±.004.681±.031.672±.025.536±.025
Syn5.665±.019.796±.005.797±.006.765±.003.719±.011.680±.040
Syn6.709±.018.870±.005.886±.004.779±.027.835±.017.757±.036
" + }, + { + "category_id": 0, + "poly": [ + 300, + 1128, + 625, + 1128, + 625, + 1161, + 300, + 1161 + ], + "score": 0.911 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 301, + 1539, + 1146, + 1539, + 1146, + 1570, + 301, + 1570 + ], + "score": 0.86 + }, + { + "category_id": 0, + "poly": [ + 300, + 1071, + 775, + 1071, + 775, + 1102, + 300, + 1102 + ], + "score": 0.856 + }, + { + "category_id": 0, + "poly": [ + 301, + 1860, + 1249, + 1860, + 1249, + 1889, + 301, + 1889 + ], + "score": 0.82 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.784 + }, + { + "category_id": 6, + "poly": [ + 296, + 818, + 1406, + 818, + 1406, + 910, + 296, + 910 + ], + "score": 0.744 + }, + { + "category_id": 1, + "poly": [ + 296, + 818, + 1406, + 818, + 1406, + 910, + 296, + 910 + ], + "score": 0.218 + }, + { + "category_id": 1, + "poly": [ + 301, + 1860, + 1249, + 1860, + 1249, + 1889, + 301, + 1889 + ], + "score": 0.095 + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1129.0, + 629.0, + 1129.0, + 629.0, + 1162.0, + 296.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1536.0, + 1152.0, + 1536.0, + 1152.0, + 1576.0, + 293.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1070.0, + 779.0, + 1070.0, + 779.0, + 1105.0, + 295.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1857.0, + 1255.0, + 1857.0, + 1255.0, + 1892.0, + 296.0, + 1892.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, + 816.0, + 1404.0, + 816.0, + 1404.0, + 853.0, + 294.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 846.0, + 1406.0, + 846.0, + 1406.0, + 884.0, + 291.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 880.0, + 440.0, + 880.0, + 440.0, + 911.0, + 295.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1182.0, + 1404.0, + 1182.0, + 1404.0, + 1217.0, + 293.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1213.0, + 1404.0, + 1213.0, + 1404.0, + 1247.0, + 294.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1239.0, + 1405.0, + 1239.0, + 1405.0, + 1282.0, + 292.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1272.0, + 1405.0, + 1272.0, + 1405.0, + 1307.0, + 293.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1304.0, + 1405.0, + 1304.0, + 1405.0, + 1337.0, + 293.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1334.0, + 1406.0, + 1334.0, + 1406.0, + 1369.0, + 293.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1366.0, + 507.0, + 1366.0, + 507.0, + 1397.0, + 296.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1591.0, + 1405.0, + 1591.0, + 1405.0, + 1628.0, + 294.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1624.0, + 1403.0, + 1624.0, + 1403.0, + 1657.0, + 295.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1651.0, + 1404.0, + 1651.0, + 1404.0, + 1689.0, + 294.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1685.0, + 1401.0, + 1685.0, + 1401.0, + 1718.0, + 294.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1712.0, + 1398.0, + 1712.0, + 1398.0, + 1753.0, + 293.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1913.0, + 1403.0, + 1913.0, + 1403.0, + 1942.0, + 295.0, + 1942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1404.0, + 1942.0, + 1404.0, + 1974.0, + 294.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 1402.0, + 1974.0, + 1402.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2003.0, + 1104.0, + 2003.0, + 1104.0, + 2036.0, + 293.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1408.0, + 1406.0, + 1408.0, + 1406.0, + 1450.0, + 293.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1439.0, + 1407.0, + 1439.0, + 1407.0, + 1481.0, + 292.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1473.0, + 1159.0, + 1473.0, + 1159.0, + 1510.0, + 292.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 971.0, + 1402.0, + 971.0, + 1402.0, + 1007.0, + 296.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1003.0, + 712.0, + 1003.0, + 712.0, + 1037.0, + 295.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1758.0, + 1404.0, + 1758.0, + 1404.0, + 1796.0, + 295.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1791.0, + 651.0, + 1791.0, + 651.0, + 1826.0, + 295.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 816.0, + 1404.0, + 816.0, + 1404.0, + 853.0, + 294.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 846.0, + 1406.0, + 846.0, + 1406.0, + 884.0, + 291.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 880.0, + 440.0, + 880.0, + 440.0, + 911.0, + 295.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1857.0, + 1255.0, + 1857.0, + 1255.0, + 1892.0, + 296.0, + 1892.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 350, + 1213, + 1350, + 1213, + 1350, + 1510, + 350, + 1510 + ], + "score": 0.982, + "html": "
DatasetsMetricsAUROC AUPRCAUROC AUPRC
Labels3year5year
MAGGICINVASEWithout INVASE.722±.005.720±.006.655±.010.639±.009.740±.005 .867±.006.730±.006 .855±.004
Labels5year10 year
PLCOINVASEWithout INVASE.637±.007.629±.008.329±.013.324±.011.673±.007.657±.006.506±.006.485±.008
" + }, + { + "category_id": 1, + "poly": [ + 299, + 1880, + 1403, + 1880, + 1403, + 2034, + 299, + 2034 + ], + "score": 0.976 + }, + { + "category_id": 5, + "poly": [ + 298, + 884, + 1415, + 884, + 1415, + 1068, + 298, + 1068 + ], + "score": 0.972, + "html": "
OverallMaleDiabetesHypertensionSmokerHeart Failure
42.5±18.443.5±10.7 53.2±10.846.6±9.3 41.0±12.151.8±11.1
FemaleNon-diabetesNon-hypertension Non-smokerNo Heart Failure
40.8±15.639.3±8.040.0±9.343.2±7.039.6±6.9
" + }, + { + "category_id": 3, + "poly": [ + 338, + 227, + 1396, + 227, + 1396, + 728, + 338, + 728 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 299, + 1652, + 1403, + 1652, + 1403, + 1715, + 299, + 1715 + ], + "score": 0.952 + }, + { + "category_id": 4, + "poly": [ + 297, + 760, + 1406, + 760, + 1406, + 825, + 297, + 825 + ], + "score": 0.929 + }, + { + "category_id": 0, + "poly": [ + 300, + 1792, + 571, + 1792, + 571, + 1828, + 300, + 1828 + ], + "score": 0.914 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.887 + }, + { + "category_id": 6, + "poly": [ + 298, + 1090, + 1399, + 1090, + 1399, + 1154, + 298, + 1154 + ], + "score": 0.852 + }, + { + "category_id": 2, + "poly": [ + 837, + 2088, + 865, + 2088, + 865, + 2112, + 837, + 2112 + ], + "score": 0.848 + }, + { + "category_id": 6, + "poly": [ + 478, + 1532, + 1217, + 1532, + 1217, + 1565, + 478, + 1565 + ], + "score": 0.831 + }, + { + "category_id": 13, + "poly": [ + 374, + 1123, + 404, + 1123, + 404, + 1152, + 374, + 1152 + ], + "score": 0.25, + "latex": "\\pm" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 306.0, + 661.0, + 306.0, + 661.0, + 338.0, + 469.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 311.0, + 675.0, + 311.0, + 675.0, + 320.0, + 662.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 308.0, + 696.0, + 308.0, + 696.0, + 321.0, + 678.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 306.0, + 812.0, + 306.0, + 812.0, + 335.0, + 697.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 308.0, + 844.0, + 308.0, + 844.0, + 333.0, + 827.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 298.0, + 1011.0, + 298.0, + 1011.0, + 333.0, + 990.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 282.0, + 1034.0, + 282.0, + 1034.0, + 336.0, + 1013.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 276.0, + 1076.0, + 276.0, + 1076.0, + 334.0, + 1056.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 250.0, + 1099.0, + 250.0, + 1099.0, + 333.0, + 1080.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 251.0, + 1142.0, + 251.0, + 1142.0, + 332.0, + 1123.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 226.0, + 1167.0, + 226.0, + 1167.0, + 334.0, + 1144.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 281.0, + 1210.0, + 281.0, + 1210.0, + 335.0, + 1191.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 259.0, + 1229.0, + 259.0, + 1229.0, + 332.0, + 1213.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 232.0, + 1298.0, + 232.0, + 1298.0, + 334.0, + 1255.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 318.0, + 714.0, + 318.0, + 714.0, + 333.0, + 697.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 319.0, + 695.0, + 319.0, + 695.0, + 333.0, + 678.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 334.0, + 470.0, + 334.0, + 470.0, + 355.0, + 438.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 337.0, + 985.0, + 337.0, + 985.0, + 354.0, + 955.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 439.0, + 348.0, + 469.0, + 348.0, + 469.0, + 366.0, + 439.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 348.0, + 985.0, + 348.0, + 985.0, + 366.0, + 955.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 361.0, + 470.0, + 361.0, + 470.0, + 394.0, + 369.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 361.0, + 986.0, + 361.0, + 986.0, + 394.0, + 885.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 367.0, + 1359.0, + 367.0, + 1359.0, + 385.0, + 1334.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 387.0, + 470.0, + 387.0, + 470.0, + 407.0, + 435.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 387.0, + 986.0, + 387.0, + 986.0, + 407.0, + 951.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 400.0, + 471.0, + 400.0, + 471.0, + 422.0, + 393.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 400.0, + 988.0, + 400.0, + 988.0, + 422.0, + 908.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 406.0, + 1359.0, + 406.0, + 1359.0, + 424.0, + 1334.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 415.0, + 470.0, + 415.0, + 470.0, + 434.0, + 339.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 415.0, + 986.0, + 415.0, + 986.0, + 434.0, + 855.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 428.0, + 470.0, + 428.0, + 470.0, + 461.0, + 404.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 426.0, + 987.0, + 426.0, + 987.0, + 461.0, + 919.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 445.0, + 1358.0, + 445.0, + 1358.0, + 463.0, + 1334.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1363.0, + 435.0, + 1393.0, + 435.0, + 1393.0, + 596.0, + 1363.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 454.0, + 470.0, + 454.0, + 470.0, + 474.0, + 417.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 454.0, + 986.0, + 454.0, + 986.0, + 474.0, + 933.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 468.0, + 470.0, + 468.0, + 470.0, + 487.0, + 416.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 468.0, + 986.0, + 468.0, + 986.0, + 488.0, + 932.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 481.0, + 470.0, + 481.0, + 470.0, + 500.0, + 391.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 481.0, + 986.0, + 481.0, + 986.0, + 500.0, + 907.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 494.0, + 470.0, + 494.0, + 470.0, + 513.0, + 387.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 493.0, + 988.0, + 493.0, + 988.0, + 515.0, + 903.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 508.0, + 470.0, + 508.0, + 470.0, + 527.0, + 418.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 508.0, + 986.0, + 508.0, + 986.0, + 527.0, + 935.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 519.0, + 471.0, + 519.0, + 471.0, + 542.0, + 412.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 521.0, + 986.0, + 521.0, + 986.0, + 541.0, + 929.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 523.0, + 1359.0, + 523.0, + 1359.0, + 541.0, + 1334.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 532.0, + 472.0, + 532.0, + 472.0, + 559.0, + 419.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 936.0, + 534.0, + 988.0, + 534.0, + 988.0, + 557.0, + 936.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 549.0, + 469.0, + 549.0, + 469.0, + 567.0, + 447.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 549.0, + 985.0, + 549.0, + 985.0, + 567.0, + 962.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 558.0, + 472.0, + 558.0, + 472.0, + 583.0, + 369.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 558.0, + 988.0, + 558.0, + 988.0, + 583.0, + 886.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 561.0, + 1358.0, + 561.0, + 1358.0, + 578.0, + 1333.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 574.0, + 470.0, + 574.0, + 470.0, + 594.0, + 424.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 574.0, + 986.0, + 574.0, + 986.0, + 594.0, + 941.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 589.0, + 469.0, + 589.0, + 469.0, + 605.0, + 426.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 587.0, + 986.0, + 587.0, + 986.0, + 607.0, + 941.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 601.0, + 471.0, + 601.0, + 471.0, + 623.0, + 386.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 601.0, + 988.0, + 601.0, + 988.0, + 623.0, + 902.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1331.0, + 598.0, + 1360.0, + 598.0, + 1360.0, + 620.0, + 1331.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 612.0, + 471.0, + 612.0, + 471.0, + 635.0, + 428.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 616.0, + 985.0, + 616.0, + 985.0, + 632.0, + 944.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 629.0, + 470.0, + 629.0, + 470.0, + 648.0, + 405.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 629.0, + 986.0, + 629.0, + 986.0, + 648.0, + 921.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 641.0, + 470.0, + 641.0, + 470.0, + 661.0, + 426.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 641.0, + 986.0, + 641.0, + 986.0, + 661.0, + 942.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 639.0, + 1359.0, + 639.0, + 1359.0, + 657.0, + 1334.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 656.0, + 469.0, + 656.0, + 469.0, + 674.0, + 440.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 656.0, + 985.0, + 656.0, + 985.0, + 674.0, + 956.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 669.0, + 469.0, + 669.0, + 469.0, + 685.0, + 430.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 668.0, + 986.0, + 668.0, + 986.0, + 688.0, + 944.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 681.0, + 470.0, + 681.0, + 470.0, + 701.0, + 433.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 681.0, + 986.0, + 681.0, + 986.0, + 701.0, + 948.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 678.0, + 1358.0, + 678.0, + 1358.0, + 696.0, + 1334.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 695.0, + 469.0, + 695.0, + 469.0, + 713.0, + 374.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 695.0, + 986.0, + 695.0, + 986.0, + 713.0, + 890.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 709.0, + 468.0, + 709.0, + 468.0, + 725.0, + 427.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 709.0, + 984.0, + 709.0, + 984.0, + 725.0, + 942.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 719.0, + 1347.0, + 719.0, + 1347.0, + 729.0, + 1336.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.75, + 304.5, + 826.75, + 304.5, + 826.75, + 336.0, + 805.75, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.75, + 318.0, + 675.75, + 318.0, + 675.75, + 332.0, + 660.75, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 483.0, + 1357.0, + 483.0, + 1357.0, + 501.0, + 1335.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 759.0, + 1404.0, + 759.0, + 1404.0, + 795.0, + 295.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 791.0, + 1393.0, + 791.0, + 1393.0, + 827.0, + 295.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1788.0, + 576.0, + 1788.0, + 576.0, + 1833.0, + 292.0, + 1833.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, + 1087.0, + 1401.0, + 1087.0, + 1401.0, + 1123.0, + 296.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1119.0, + 373.0, + 1119.0, + 373.0, + 1157.0, + 294.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 1119.0, + 459.0, + 1119.0, + 459.0, + 1157.0, + 405.0, + 1157.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": [ + 480.0, + 1531.0, + 1218.0, + 1531.0, + 1218.0, + 1567.0, + 480.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1882.0, + 1405.0, + 1882.0, + 1405.0, + 1915.0, + 297.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1912.0, + 1405.0, + 1912.0, + 1405.0, + 1945.0, + 295.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 1407.0, + 1972.0, + 1407.0, + 2009.0, + 295.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2002.0, + 662.0, + 2002.0, + 662.0, + 2035.0, + 295.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1650.0, + 1405.0, + 1650.0, + 1405.0, + 1689.0, + 295.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1682.0, + 845.0, + 1682.0, + 845.0, + 1718.0, + 294.0, + 1718.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 297, + 1404, + 297, + 1404, + 390, + 299, + 390 + ], + "score": 0.957 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.888 + }, + { + "category_id": 0, + "poly": [ + 299, + 439, + 489, + 439, + 489, + 471, + 299, + 471 + ], + "score": 0.866 + }, + { + "category_id": 0, + "poly": [ + 302, + 229, + 609, + 229, + 609, + 261, + 302, + 261 + ], + "score": 0.831 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.813 + }, + { + "category_id": 1, + "poly": [ + 295, + 427, + 1408, + 427, + 1408, + 2047, + 295, + 2047 + ], + "score": 0.783 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 436.0, + 491.0, + 436.0, + 491.0, + 476.0, + 296.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 226.0, + 614.0, + 226.0, + 614.0, + 269.0, + 297.0, + 269.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, + 295.0, + 1404.0, + 295.0, + 1404.0, + 331.0, + 294.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 328.0, + 1403.0, + 328.0, + 1403.0, + 362.0, + 295.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 357.0, + 893.0, + 357.0, + 893.0, + 393.0, + 294.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 434.0, + 494.0, + 434.0, + 494.0, + 478.0, + 294.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 490.0, + 1407.0, + 490.0, + 1407.0, + 527.0, + 305.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 518.0, + 1404.0, + 518.0, + 1404.0, + 562.0, + 352.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 551.0, + 1113.0, + 551.0, + 1113.0, + 590.0, + 353.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 605.0, + 1409.0, + 605.0, + 1409.0, + 648.0, + 303.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 631.0, + 1409.0, + 631.0, + 1409.0, + 680.0, + 348.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 671.0, + 880.0, + 671.0, + 880.0, + 705.0, + 355.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 721.0, + 1406.0, + 721.0, + 1406.0, + 766.0, + 306.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 751.0, + 1406.0, + 751.0, + 1406.0, + 795.0, + 352.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 784.0, + 646.0, + 784.0, + 646.0, + 821.0, + 351.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 837.0, + 1407.0, + 837.0, + 1407.0, + 880.0, + 305.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 871.0, + 1406.0, + 871.0, + 1406.0, + 911.0, + 351.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 902.0, + 429.0, + 902.0, + 429.0, + 938.0, + 353.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 958.0, + 1406.0, + 958.0, + 1406.0, + 997.0, + 306.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 986.0, + 1407.0, + 986.0, + 1407.0, + 1031.0, + 351.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1017.0, + 898.0, + 1017.0, + 898.0, + 1061.0, + 351.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1074.0, + 1404.0, + 1074.0, + 1404.0, + 1113.0, + 306.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1104.0, + 944.0, + 1104.0, + 944.0, + 1144.0, + 353.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1160.0, + 1406.0, + 1160.0, + 1406.0, + 1199.0, + 306.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1190.0, + 673.0, + 1190.0, + 673.0, + 1230.0, + 353.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 1242.0, + 1407.0, + 1242.0, + 1407.0, + 1289.0, + 305.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1273.0, + 1408.0, + 1273.0, + 1408.0, + 1321.0, + 350.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1309.0, + 1202.0, + 1309.0, + 1202.0, + 1344.0, + 351.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1364.0, + 1404.0, + 1364.0, + 1404.0, + 1404.0, + 306.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1387.0, + 890.0, + 1387.0, + 890.0, + 1440.0, + 350.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1448.0, + 1406.0, + 1448.0, + 1406.0, + 1488.0, + 294.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1481.0, + 990.0, + 1481.0, + 990.0, + 1518.0, + 351.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1536.0, + 1294.0, + 1536.0, + 1294.0, + 1572.0, + 292.0, + 1572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1592.0, + 1406.0, + 1592.0, + 1406.0, + 1631.0, + 294.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1622.0, + 1212.0, + 1622.0, + 1212.0, + 1660.0, + 351.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1678.0, + 1404.0, + 1678.0, + 1404.0, + 1717.0, + 294.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1708.0, + 808.0, + 1708.0, + 808.0, + 1748.0, + 353.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1764.0, + 1407.0, + 1764.0, + 1407.0, + 1803.0, + 292.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1794.0, + 1404.0, + 1794.0, + 1404.0, + 1834.0, + 353.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1825.0, + 1404.0, + 1825.0, + 1404.0, + 1864.0, + 353.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1859.0, + 1404.0, + 1859.0, + 1404.0, + 1893.0, + 355.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1887.0, + 604.0, + 1887.0, + 604.0, + 1921.0, + 359.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1938.0, + 1406.0, + 1938.0, + 1406.0, + 1982.0, + 292.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1970.0, + 1406.0, + 1970.0, + 1406.0, + 2013.0, + 352.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 2004.0, + 642.0, + 2004.0, + 642.0, + 2038.0, + 355.0, + 2038.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "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, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.835 + }, + { + "category_id": 1, + "poly": [ + 296, + 841, + 1405, + 841, + 1405, + 965, + 296, + 965 + ], + "score": 0.551 + }, + { + "category_id": 1, + "poly": [ + 293, + 1354, + 1402, + 1354, + 1402, + 1422, + 293, + 1422 + ], + "score": 0.536 + }, + { + "category_id": 1, + "poly": [ + 295, + 1097, + 1400, + 1097, + 1400, + 1194, + 295, + 1194 + ], + "score": 0.535 + }, + { + "category_id": 1, + "poly": [ + 296, + 984, + 1399, + 984, + 1399, + 1080, + 296, + 1080 + ], + "score": 0.535 + }, + { + "category_id": 1, + "poly": [ + 294, + 1635, + 1401, + 1635, + 1401, + 1700, + 294, + 1700 + ], + "score": 0.534 + }, + { + "category_id": 1, + "poly": [ + 294, + 1438, + 1401, + 1438, + 1401, + 1504, + 294, + 1504 + ], + "score": 0.527 + }, + { + "category_id": 1, + "poly": [ + 297, + 1521, + 1403, + 1521, + 1403, + 1616, + 297, + 1616 + ], + "score": 0.525 + }, + { + "category_id": 1, + "poly": [ + 298, + 787, + 1399, + 787, + 1399, + 824, + 298, + 824 + ], + "score": 0.507 + }, + { + "category_id": 1, + "poly": [ + 296, + 1210, + 1405, + 1210, + 1405, + 1336, + 296, + 1336 + ], + "score": 0.492 + }, + { + "category_id": 1, + "poly": [ + 295, + 1718, + 1403, + 1718, + 1403, + 1783, + 295, + 1783 + ], + "score": 0.476 + }, + { + "category_id": 1, + "poly": [ + 301, + 560, + 1403, + 560, + 1403, + 655, + 301, + 655 + ], + "score": 0.471 + }, + { + "category_id": 1, + "poly": [ + 300, + 674, + 1399, + 674, + 1399, + 770, + 300, + 770 + ], + "score": 0.47 + }, + { + "category_id": 1, + "poly": [ + 298, + 477, + 1400, + 477, + 1400, + 543, + 298, + 543 + ], + "score": 0.449 + }, + { + "category_id": 1, + "poly": [ + 297, + 1801, + 1400, + 1801, + 1400, + 1896, + 297, + 1896 + ], + "score": 0.431 + }, + { + "category_id": 1, + "poly": [ + 297, + 1914, + 1398, + 1914, + 1398, + 1979, + 297, + 1979 + ], + "score": 0.427 + }, + { + "category_id": 1, + "poly": [ + 299, + 395, + 1401, + 395, + 1401, + 461, + 299, + 461 + ], + "score": 0.426 + }, + { + "category_id": 1, + "poly": [ + 298, + 311, + 1400, + 311, + 1400, + 378, + 298, + 378 + ], + "score": 0.411 + }, + { + "category_id": 1, + "poly": [ + 295, + 229, + 1400, + 229, + 1400, + 294, + 295, + 294 + ], + "score": 0.4 + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 840.0, + 1405.0, + 840.0, + 1405.0, + 880.0, + 294.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 871.0, + 1406.0, + 871.0, + 1406.0, + 908.0, + 353.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 901.0, + 1406.0, + 901.0, + 1406.0, + 940.0, + 352.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 933.0, + 646.0, + 933.0, + 646.0, + 966.0, + 353.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1353.0, + 1405.0, + 1353.0, + 1405.0, + 1395.0, + 296.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1385.0, + 1296.0, + 1385.0, + 1296.0, + 1422.0, + 354.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1098.0, + 1406.0, + 1098.0, + 1406.0, + 1133.0, + 294.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1126.0, + 1405.0, + 1126.0, + 1405.0, + 1169.0, + 353.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1160.0, + 1092.0, + 1160.0, + 1092.0, + 1195.0, + 354.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 983.0, + 1404.0, + 983.0, + 1404.0, + 1023.0, + 294.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1019.0, + 1403.0, + 1019.0, + 1403.0, + 1049.0, + 358.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1045.0, + 1277.0, + 1045.0, + 1277.0, + 1082.0, + 355.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1633.0, + 1406.0, + 1633.0, + 1406.0, + 1673.0, + 296.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1665.0, + 1323.0, + 1665.0, + 1323.0, + 1701.0, + 355.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1439.0, + 1403.0, + 1439.0, + 1403.0, + 1475.0, + 297.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1468.0, + 1012.0, + 1468.0, + 1012.0, + 1505.0, + 355.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1521.0, + 1405.0, + 1521.0, + 1405.0, + 1556.0, + 293.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1551.0, + 1404.0, + 1551.0, + 1404.0, + 1590.0, + 353.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1582.0, + 629.0, + 1582.0, + 629.0, + 1616.0, + 354.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 786.0, + 1403.0, + 786.0, + 1403.0, + 825.0, + 296.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1211.0, + 1406.0, + 1211.0, + 1406.0, + 1248.0, + 294.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1242.0, + 1405.0, + 1242.0, + 1405.0, + 1278.0, + 356.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1273.0, + 1408.0, + 1273.0, + 1408.0, + 1309.0, + 354.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1305.0, + 777.0, + 1305.0, + 777.0, + 1338.0, + 354.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1718.0, + 1405.0, + 1718.0, + 1405.0, + 1754.0, + 297.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1748.0, + 1093.0, + 1748.0, + 1093.0, + 1783.0, + 354.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 560.0, + 1404.0, + 560.0, + 1404.0, + 598.0, + 295.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 592.0, + 1403.0, + 592.0, + 1403.0, + 628.0, + 355.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 619.0, + 502.0, + 619.0, + 502.0, + 658.0, + 353.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 674.0, + 1404.0, + 674.0, + 1404.0, + 712.0, + 294.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 707.0, + 1405.0, + 707.0, + 1405.0, + 742.0, + 355.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 739.0, + 1108.0, + 739.0, + 1108.0, + 771.0, + 352.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 478.0, + 1404.0, + 478.0, + 1404.0, + 513.0, + 294.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 509.0, + 1077.0, + 509.0, + 1077.0, + 544.0, + 353.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1801.0, + 1404.0, + 1801.0, + 1404.0, + 1836.0, + 293.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1833.0, + 1404.0, + 1833.0, + 1404.0, + 1867.0, + 354.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1863.0, + 1028.0, + 1863.0, + 1028.0, + 1897.0, + 353.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1914.0, + 1403.0, + 1914.0, + 1403.0, + 1950.0, + 296.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1945.0, + 1313.0, + 1945.0, + 1313.0, + 1981.0, + 353.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 396.0, + 1405.0, + 396.0, + 1405.0, + 432.0, + 295.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 425.0, + 1201.0, + 425.0, + 1201.0, + 462.0, + 353.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 311.0, + 1405.0, + 311.0, + 1405.0, + 350.0, + 293.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 345.0, + 1210.0, + 345.0, + 1210.0, + 378.0, + 353.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 228.0, + 1401.0, + 228.0, + 1401.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 260.0, + 935.0, + 260.0, + 935.0, + 296.0, + 353.0, + 296.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 296, + 383, + 1405, + 383, + 1405, + 1258, + 296, + 1258 + ], + "score": 0.984, + "html": "
Key ideasExperimentsshownGlobal/Instance-wiseModelagnostic#of relevantfeatures
SCFS[11]Max-dependency min-redundancycriteria with Pearson correlationsFeature selectionGlobalYesNot needed
MIFS[21]Max-dependency min-redundancycriteria with Mutual InformationFeature selectionGlobalYesNot needed
LASSO[31]Linear regressionwith l1-norm penaltyFeature selectionPredictionGlobalYesNot needed
Knock-off[3]Comparison between knock-offvariablesand real variablesFeature selectionHypothesis testGlobalYesNot needed
L2X[4]Mutual Information maximizationwith Gumbel-softmaxInterpretationInstance-wiseYesShould begiven
LIME[24]Locally linearapproximationInterpretationInstance-wiseYesShould begiven
Shapley[18]Shapley value estimationto quantify feature importanceFeature selectionInstance-wiseYesShould begiven
DeepLIFT[27]Decompose the output ofNN on a reference inputInterpretationInstance-wiseNoShould begiven
Saliency[29]Backpropagation from theoutput of the NN to the inputInterpretationInstance-wiseNoShould begiven
Tree SHAP[19]Shapley value estimationonly for tree-ensemble modelsInterpretationInstance-wiseNoShould begiven
Pixel-wise[1]Measuring the effects onthe output using input perturbationInterpretationInstance-wiseNoShould begiven
INVASE(Ours)Minimize KL divergence usingdeep NN influenced byactor-critic modelsFeature selectionInterpretationPredictionInstance-wiseYesNot needed
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1787, + 1404, + 1787, + 1404, + 2034, + 297, + 2034 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1581, + 1404, + 1581, + 1404, + 1676, + 299, + 1676 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1451, + 1400, + 1451, + 1400, + 1513, + 299, + 1513 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 690, + 1527, + 1007, + 1527, + 1007, + 1569, + 690, + 1569 + ], + "score": 0.945 + }, + { + "category_id": 0, + "poly": [ + 298, + 1381, + 846, + 1381, + 846, + 1418, + 298, + 1418 + ], + "score": 0.924 + }, + { + "category_id": 0, + "poly": [ + 300, + 1718, + 606, + 1718, + 606, + 1754, + 300, + 1754 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.85 + }, + { + "category_id": 0, + "poly": [ + 300, + 228, + 450, + 228, + 450, + 262, + 300, + 262 + ], + "score": 0.821 + }, + { + "category_id": 0, + "poly": [ + 300, + 300, + 756, + 300, + 756, + 338, + 300, + 338 + ], + "score": 0.812 + }, + { + "category_id": 7, + "poly": [ + 365, + 1280, + 1334, + 1280, + 1334, + 1313, + 365, + 1313 + ], + "score": 0.57 + }, + { + "category_id": 6, + "poly": [ + 365, + 1280, + 1334, + 1280, + 1334, + 1313, + 365, + 1313 + ], + "score": 0.325 + }, + { + "category_id": 13, + "poly": [ + 375, + 1580, + 538, + 1580, + 538, + 1615, + 375, + 1615 + ], + "score": 0.92, + "latex": "f ^ { \\phi } : \\mathcal { X } \\mathbb { R }" + }, + { + "category_id": 14, + "poly": [ + 688, + 1524, + 1008, + 1524, + 1008, + 1568, + 688, + 1568 + ], + "score": 0.91, + "latex": "\\hat { l } ( { \\bf x } , { \\bf s } ) = - | | y - f ^ { \\phi } ( { \\bf x } , { \\bf s } ) | | _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 783, + 1942, + 1062, + 1942, + 1062, + 1975, + 783, + 1975 + ], + "score": 0.9, + "latex": "\\{ 0 . 1 , 0 . 3 , 0 . 5 , 1 , 2 , 5 , 1 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 588, + 1645, + 611, + 1645, + 611, + 1674, + 588, + 1674 + ], + "score": 0.87, + "latex": "l _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1305, + 1584, + 1333, + 1584, + 1333, + 1613, + 1305, + 1613 + ], + "score": 0.86, + "latex": "\\ell _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 784, + 1453, + 811, + 1453, + 811, + 1480, + 784, + 1480 + ], + "score": 0.8, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 650, + 1822, + 669, + 1822, + 669, + 1848, + 650, + 1848 + ], + "score": 0.8, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1242, + 1614, + 1268, + 1614, + 1268, + 1641, + 1242, + 1641 + ], + "score": 0.8, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 674, + 1944, + 695, + 1944, + 695, + 1970, + 674, + 1970 + ], + "score": 0.78, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 717, + 1821, + 748, + 1821, + 748, + 1849, + 717, + 1849 + ], + "score": 0.77, + "latex": "2 d" + }, + { + "category_id": 13, + "poly": [ + 560, + 607, + 580, + 607, + 580, + 631, + 560, + 631 + ], + "score": 0.62, + "latex": "l _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1345, + 1614, + 1373, + 1614, + 1373, + 1642, + 1345, + 1642 + ], + "score": 0.59, + "latex": "\\mathbf { X }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1379.0, + 848.0, + 1379.0, + 848.0, + 1425.0, + 294.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1719.0, + 609.0, + 1719.0, + 609.0, + 1758.0, + 296.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 223.0, + 454.0, + 223.0, + 454.0, + 269.0, + 295.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 297.0, + 761.0, + 297.0, + 761.0, + 341.0, + 296.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1278.0, + 1335.0, + 1278.0, + 1335.0, + 1316.0, + 364.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1278.0, + 1335.0, + 1278.0, + 1335.0, + 1316.0, + 364.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1789.0, + 1405.0, + 1789.0, + 1405.0, + 1823.0, + 294.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1819.0, + 649.0, + 1819.0, + 649.0, + 1854.0, + 294.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 1819.0, + 716.0, + 1819.0, + 716.0, + 1854.0, + 670.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 1819.0, + 1405.0, + 1819.0, + 1405.0, + 1854.0, + 749.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1851.0, + 1405.0, + 1851.0, + 1405.0, + 1885.0, + 295.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1883.0, + 1404.0, + 1883.0, + 1404.0, + 1913.0, + 296.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 1404.0, + 1912.0, + 1404.0, + 1945.0, + 294.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1941.0, + 673.0, + 1941.0, + 673.0, + 1977.0, + 292.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1941.0, + 782.0, + 1941.0, + 782.0, + 1977.0, + 696.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1977.0, + 1063.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1974.0, + 1401.0, + 1974.0, + 1401.0, + 2004.0, + 295.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 2006.0, + 429.0, + 2006.0, + 429.0, + 2032.0, + 297.0, + 2032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1580.0, + 374.0, + 1580.0, + 374.0, + 1616.0, + 295.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 1580.0, + 1304.0, + 1580.0, + 1304.0, + 1616.0, + 539.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 1580.0, + 1404.0, + 1580.0, + 1404.0, + 1616.0, + 1334.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1615.0, + 1241.0, + 1615.0, + 1241.0, + 1646.0, + 295.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 1615.0, + 1344.0, + 1615.0, + 1344.0, + 1646.0, + 1269.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 1615.0, + 1404.0, + 1615.0, + 1404.0, + 1646.0, + 1374.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1644.0, + 587.0, + 1644.0, + 587.0, + 1678.0, + 295.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 1644.0, + 1210.0, + 1644.0, + 1210.0, + 1678.0, + 612.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1452.0, + 783.0, + 1452.0, + 783.0, + 1487.0, + 295.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 812.0, + 1452.0, + 1404.0, + 1452.0, + 1404.0, + 1487.0, + 812.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1481.0, + 910.0, + 1481.0, + 910.0, + 1517.0, + 294.0, + 1517.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 297, + 1040, + 1405, + 1040, + 1405, + 1374, + 297, + 1374 + ], + "score": 0.982, + "html": "
DatasetSyn1Syn2Syn3Syn4Syn5Syn6
Metrics (%) TPRFDRTPRFDRTPRFDRTPRFDRTPRFDRTPRFDR
INVASE100.00.0100.00.0100.00.066.340.573.223.790.515.4
L2X6.193.981.418.657.742.348.546.435.460.866.333.7
LIME0.0100.0 95.6100.0 95.10.092.77.343.847.442.350.150.149.9
Shapley4.44.988.811.250.243.449.944.262.537.5
Knock off0.064.93.771.274.924.928.259.833.159.446.953.0
Tree49.950.1100.00.0100.00.040.749.556.737.558.441.6
SCFS2.597.55.394.774.925.127.074.630.662.138.361.7
LASSO2.597.54.096.075.324.728.373.236.056.945.954.1
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1480, + 1404, + 1480, + 1404, + 1664, + 298, + 1664 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1679, + 1404, + 1679, + 1404, + 1925, + 298, + 1925 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 368, + 352, + 1404, + 352, + 1404, + 685, + 368, + 685 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 886, + 1405, + 886, + 1405, + 1012, + 297, + 1012 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 298, + 711, + 1401, + 711, + 1401, + 774, + 298, + 774 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 297, + 295, + 1066, + 295, + 1066, + 329, + 297, + 329 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 300, + 226, + 685, + 226, + 685, + 263, + 300, + 263 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 302, + 820, + 759, + 820, + 759, + 854, + 302, + 854 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.852 + }, + { + "category_id": 6, + "poly": [ + 431, + 1397, + 1266, + 1397, + 1266, + 1430, + 431, + 1430 + ], + "score": 0.801 + }, + { + "category_id": 13, + "poly": [ + 437, + 948, + 541, + 948, + 541, + 981, + 437, + 981 + ], + "score": 0.9, + "latex": "( \\mathcal { N } ( \\mathbf { 0 } , \\mathbf { I } ) )" + }, + { + "category_id": 13, + "poly": [ + 1117, + 1542, + 1172, + 1542, + 1172, + 1571, + 1117, + 1571 + ], + "score": 0.86, + "latex": "90 \\%" + }, + { + "category_id": 13, + "poly": [ + 1056, + 1772, + 1112, + 1772, + 1112, + 1802, + 1056, + 1802 + ], + "score": 0.86, + "latex": "50 \\%" + }, + { + "category_id": 13, + "poly": [ + 394, + 1088, + 431, + 1088, + 431, + 1115, + 394, + 1115 + ], + "score": 0.25, + "latex": "( \\% )" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 226.0, + 688.0, + 226.0, + 688.0, + 267.0, + 296.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 819.0, + 763.0, + 819.0, + 763.0, + 859.0, + 297.0, + 859.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": [ + 428.0, + 1395.0, + 1271.0, + 1395.0, + 1271.0, + 1433.0, + 428.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1482.0, + 1404.0, + 1482.0, + 1404.0, + 1514.0, + 296.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1511.0, + 1406.0, + 1511.0, + 1406.0, + 1545.0, + 292.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1540.0, + 1116.0, + 1540.0, + 1116.0, + 1575.0, + 295.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 1540.0, + 1405.0, + 1540.0, + 1405.0, + 1575.0, + 1173.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1572.0, + 1405.0, + 1572.0, + 1405.0, + 1606.0, + 293.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1600.0, + 1406.0, + 1600.0, + 1406.0, + 1638.0, + 292.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1634.0, + 582.0, + 1634.0, + 582.0, + 1666.0, + 294.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1678.0, + 1405.0, + 1678.0, + 1405.0, + 1714.0, + 295.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1711.0, + 1405.0, + 1711.0, + 1405.0, + 1744.0, + 294.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1743.0, + 1404.0, + 1743.0, + 1404.0, + 1773.0, + 296.0, + 1773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1772.0, + 1055.0, + 1772.0, + 1055.0, + 1806.0, + 294.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 1772.0, + 1404.0, + 1772.0, + 1404.0, + 1806.0, + 1113.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1802.0, + 1406.0, + 1802.0, + 1406.0, + 1836.0, + 296.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1834.0, + 1404.0, + 1834.0, + 1404.0, + 1864.0, + 294.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1862.0, + 1405.0, + 1862.0, + 1405.0, + 1899.0, + 293.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1896.0, + 472.0, + 1896.0, + 472.0, + 1926.0, + 294.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 356.0, + 1019.0, + 356.0, + 1019.0, + 387.0, + 369.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 397.0, + 1015.0, + 397.0, + 1015.0, + 427.0, + 368.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 436.0, + 1056.0, + 436.0, + 1056.0, + 473.0, + 367.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 479.0, + 525.0, + 479.0, + 525.0, + 510.0, + 368.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 478.0, + 1401.0, + 478.0, + 1401.0, + 512.0, + 614.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 510.0, + 699.0, + 510.0, + 699.0, + 541.0, + 395.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 550.0, + 462.0, + 550.0, + 462.0, + 582.0, + 365.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 552.0, + 1400.0, + 552.0, + 1400.0, + 582.0, + 580.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 582.0, + 1098.0, + 582.0, + 1098.0, + 613.0, + 396.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 619.0, + 1401.0, + 619.0, + 1401.0, + 658.0, + 367.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 651.0, + 570.0, + 651.0, + 570.0, + 687.0, + 394.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 884.0, + 1405.0, + 884.0, + 1405.0, + 922.0, + 294.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 920.0, + 1405.0, + 920.0, + 1405.0, + 953.0, + 295.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 949.0, + 436.0, + 949.0, + 436.0, + 982.0, + 295.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 949.0, + 1405.0, + 949.0, + 1405.0, + 982.0, + 542.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 981.0, + 1357.0, + 981.0, + 1357.0, + 1013.0, + 294.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 706.0, + 1406.0, + 706.0, + 1406.0, + 749.0, + 292.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 741.0, + 823.0, + 741.0, + 823.0, + 776.0, + 293.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 294.0, + 1068.0, + 294.0, + 1068.0, + 331.0, + 298.0, + 331.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 490, + 713, + 1210, + 713, + 1210, + 1036, + 490, + 1036 + ], + "score": 0.981, + "html": "
DatasetsSyn4Syn5Syn6
X/Metris (%)TPRFDRTPRFDRTPRFDR
0.198.094.390.093.499.292.3
0.393.787.984.288.996.986.7
0.599.043.188.350.699.631.7
166.340.573.223.790.515.4
20.00.025.44.167.13.6
50.00.07.52.77.62.5
100.00.00.00.00.00.0
" + }, + { + "category_id": 5, + "poly": [ + 504, + 226, + 1192, + 226, + 1192, + 350, + 504, + 350 + ], + "score": 0.973, + "html": "
MethodsINVASEL2XShapleyLIME
TrainTest1327.69s0.38s939.82s0.78s12801.21s0.06s-18931.98s
" + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 816, + 75, + 816, + 105, + 298, + 105 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 300, + 493, + 740, + 493, + 740, + 527, + 300, + 527 + ], + "score": 0.901 + }, + { + "category_id": 1, + "poly": [ + 294, + 1060, + 1400, + 1060, + 1400, + 1125, + 294, + 1125 + ], + "score": 0.885 + }, + { + "category_id": 1, + "poly": [ + 299, + 560, + 1403, + 560, + 1403, + 685, + 299, + 685 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.842 + }, + { + "category_id": 6, + "poly": [ + 296, + 374, + 1401, + 374, + 1401, + 438, + 296, + 438 + ], + "score": 0.595 + }, + { + "category_id": 1, + "poly": [ + 296, + 374, + 1401, + 374, + 1401, + 438, + 296, + 438 + ], + "score": 0.255 + }, + { + "category_id": 6, + "poly": [ + 299, + 560, + 1403, + 560, + 1403, + 685, + 299, + 685 + ], + "score": 0.155 + }, + { + "category_id": 13, + "poly": [ + 1304, + 564, + 1324, + 564, + 1324, + 591, + 1304, + 591 + ], + "score": 0.75, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1241, + 1062, + 1261, + 1062, + 1261, + 1088, + 1241, + 1088 + ], + "score": 0.7, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1031, + 625, + 1051, + 625, + 1051, + 651, + 1031, + 651 + ], + "score": 0.63, + "latex": "\\lambda" + }, + { + "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, + 490.0, + 743.0, + 490.0, + 743.0, + 532.0, + 296.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 375.0, + 1403.0, + 375.0, + 1403.0, + 407.0, + 297.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 403.0, + 1402.0, + 403.0, + 1402.0, + 439.0, + 295.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 563.0, + 1303.0, + 563.0, + 1303.0, + 596.0, + 294.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1325.0, + 563.0, + 1404.0, + 563.0, + 1404.0, + 596.0, + 1325.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 593.0, + 1403.0, + 593.0, + 1403.0, + 626.0, + 295.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 621.0, + 1030.0, + 621.0, + 1030.0, + 660.0, + 292.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 621.0, + 1405.0, + 621.0, + 1405.0, + 660.0, + 1052.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 655.0, + 635.0, + 655.0, + 635.0, + 687.0, + 293.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1055.0, + 1240.0, + 1055.0, + 1240.0, + 1098.0, + 293.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 1055.0, + 1405.0, + 1055.0, + 1405.0, + 1098.0, + 1262.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1090.0, + 758.0, + 1090.0, + 758.0, + 1129.0, + 294.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 563.0, + 1303.0, + 563.0, + 1303.0, + 596.0, + 294.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1325.0, + 563.0, + 1404.0, + 563.0, + 1404.0, + 596.0, + 1325.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 593.0, + 1403.0, + 593.0, + 1403.0, + 626.0, + 295.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 621.0, + 1030.0, + 621.0, + 1030.0, + 660.0, + 292.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 621.0, + 1405.0, + 621.0, + 1405.0, + 660.0, + 1052.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 655.0, + 635.0, + 655.0, + 635.0, + 687.0, + 293.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 375.0, + 1403.0, + 375.0, + 1403.0, + 407.0, + 297.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 403.0, + 1402.0, + 403.0, + 1402.0, + 439.0, + 295.0, + 439.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 504, + 867, + 1197, + 867, + 1197, + 1247, + 504, + 1247 + ], + "score": 0.979, + "html": "
Dataset 1Syn4ASyn5ASyn6A
Metrics (%)TPRFDRTPRFDRTPRFDR
INVASE+77.514.585.98.889.97.3
L2X65.039.348.057.474.435.5
LIME Shapley56.3 71.849.2 39.858.2 71.048.8 41.358.9 68.947.8 38.2
Knock off59.862.655.049.965.040.0
Tree61.346.975.639.466.940.0
SCFS52.866.955.350.650.451.8
LASSO61.061.255.050.053.948.8
" + }, + { + "category_id": 1, + "poly": [ + 298, + 294, + 1405, + 294, + 1405, + 510, + 298, + 510 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 1880, + 1403, + 1880, + 1403, + 2034, + 299, + 2034 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 300, + 523, + 1404, + 523, + 1404, + 624, + 300, + 624 + ], + "score": 0.963 + }, + { + "category_id": 0, + "poly": [ + 299, + 1815, + 885, + 1815, + 885, + 1847, + 299, + 1847 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 423, + 1608, + 1288, + 1608, + 1288, + 1763, + 423, + 1763 + ], + "score": 0.905 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.853 + }, + { + "category_id": 0, + "poly": [ + 298, + 225, + 1154, + 225, + 1154, + 262, + 298, + 262 + ], + "score": 0.805 + }, + { + "category_id": 1, + "poly": [ + 360, + 647, + 1403, + 647, + 1403, + 834, + 360, + 834 + ], + "score": 0.755 + }, + { + "category_id": 1, + "poly": [ + 369, + 1495, + 1397, + 1495, + 1397, + 1563, + 369, + 1563 + ], + "score": 0.547 + }, + { + "category_id": 1, + "poly": [ + 372, + 1422, + 1402, + 1422, + 1402, + 1488, + 372, + 1488 + ], + "score": 0.513 + }, + { + "category_id": 6, + "poly": [ + 290, + 1271, + 1405, + 1271, + 1405, + 1333, + 290, + 1333 + ], + "score": 0.486 + }, + { + "category_id": 1, + "poly": [ + 370, + 1571, + 469, + 1571, + 469, + 1602, + 370, + 1602 + ], + "score": 0.418 + }, + { + "category_id": 1, + "poly": [ + 371, + 1378, + 1312, + 1378, + 1312, + 1417, + 371, + 1417 + ], + "score": 0.415 + }, + { + "category_id": 0, + "poly": [ + 370, + 1571, + 469, + 1571, + 469, + 1602, + 370, + 1602 + ], + "score": 0.139 + }, + { + "category_id": 13, + "poly": [ + 1010, + 553, + 1302, + 553, + 1302, + 596, + 1010, + 596 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\mathbb { P } ( Y = 1 | \\mathbf { X } ) = \\frac { 1 } { 1 + \\mathrm { l o g i t } ( \\mathbf { X } ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 397, + 800, + 599, + 800, + 599, + 833, + 397, + 833 + ], + "score": 0.9, + "latex": "X _ { 9 } + \\exp ( - X _ { 1 0 } )" + }, + { + "category_id": 13, + "poly": [ + 482, + 326, + 532, + 326, + 532, + 357, + 482, + 357 + ], + "score": 0.9, + "latex": "X _ { 1 1 }" + }, + { + "category_id": 13, + "poly": [ + 523, + 1382, + 647, + 1382, + 647, + 1414, + 523, + 1414 + ], + "score": 0.9, + "latex": "X _ { 1 } X _ { 3 } < 0" + }, + { + "category_id": 13, + "poly": [ + 1158, + 326, + 1208, + 326, + 1208, + 357, + 1158, + 357 + ], + "score": 0.9, + "latex": "X _ { 1 1 }" + }, + { + "category_id": 13, + "poly": [ + 514, + 555, + 677, + 555, + 677, + 589, + 514, + 589 + ], + "score": 0.9, + "latex": "( \\mathbf { X } \\sim \\mathcal { N } ( \\mathbf { 0 } , \\mathbf { I } ) )" + }, + { + "category_id": 13, + "poly": [ + 396, + 723, + 531, + 723, + 531, + 756, + 396, + 756 + ], + "score": 0.89, + "latex": "\\exp ( - X _ { 1 0 } )" + }, + { + "category_id": 13, + "poly": [ + 396, + 1454, + 600, + 1454, + 600, + 1487, + 396, + 1487 + ], + "score": 0.89, + "latex": "X _ { 9 } + \\exp ( - X _ { 1 0 } )" + }, + { + "category_id": 13, + "poly": [ + 1065, + 1377, + 1304, + 1377, + 1304, + 1418, + 1065, + 1418 + ], + "score": 0.89, + "latex": "= \\textstyle \\exp ( \\sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )" + }, + { + "category_id": 13, + "poly": [ + 396, + 1530, + 698, + 1530, + 698, + 1563, + 396, + 1563 + ], + "score": 0.88, + "latex": "2 | X _ { 8 } | + X _ { 9 } + \\exp ( - X _ { 1 0 } )" + }, + { + "category_id": 13, + "poly": [ + 530, + 1499, + 665, + 1499, + 665, + 1530, + 530, + 1530 + ], + "score": 0.88, + "latex": "X _ { 3 } X _ { 7 } \\ < \\ 0" + }, + { + "category_id": 13, + "poly": [ + 657, + 1382, + 874, + 1382, + 874, + 1416, + 657, + 1416 + ], + "score": 0.87, + "latex": "{ \\mathrm { l o g i t } } = \\exp ( X _ { 1 } X _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 624, + 651, + 841, + 651, + 841, + 685, + 624, + 685 + ], + "score": 0.87, + "latex": "{ \\mathrm { l o g i t } } = \\exp ( X _ { 1 } X _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 675, + 1610, + 893, + 1610, + 893, + 1644, + 675, + 1644 + ], + "score": 0.86, + "latex": "{ \\mathrm { l o g i t } } = \\exp ( X _ { 1 } X _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1018, + 692, + 1404, + 692, + 1404, + 726, + 1018, + 726 + ], + "score": 0.86, + "latex": "\\mathrm { t = - 1 0 } \\times \\sin 2 X _ { 7 } + 2 | X _ { 8 } | + X _ { 9 } +" + }, + { + "category_id": 13, + "poly": [ + 524, + 652, + 613, + 652, + 613, + 683, + 524, + 683 + ], + "score": 0.85, + "latex": "X _ { 1 } < 0" + }, + { + "category_id": 13, + "poly": [ + 622, + 691, + 837, + 691, + 837, + 726, + 622, + 726 + ], + "score": 0.85, + "latex": "{ \\mathrm { l o g i t } } = \\exp ( X _ { 1 } X _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 523, + 693, + 612, + 693, + 612, + 723, + 523, + 723 + ], + "score": 0.85, + "latex": "X _ { 1 } < 0" + }, + { + "category_id": 13, + "poly": [ + 668, + 1422, + 886, + 1422, + 886, + 1456, + 668, + 1456 + ], + "score": 0.84, + "latex": "{ \\mathrm { l o g i t } } = \\exp ( X _ { 1 } X _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1083, + 1422, + 1404, + 1422, + 1404, + 1456, + 1083, + 1456 + ], + "score": 0.83, + "latex": "= - 1 0 \\times \\sin 2 X _ { 7 } + 2 | X _ { 8 } | +" + }, + { + "category_id": 13, + "poly": [ + 740, + 1494, + 977, + 1494, + 977, + 1535, + 740, + 1535 + ], + "score": 0.83, + "latex": "= \\textstyle \\exp ( \\sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )" + }, + { + "category_id": 13, + "poly": [ + 525, + 1422, + 655, + 1422, + 655, + 1453, + 525, + 1453 + ], + "score": 0.83, + "latex": "X _ { 1 } X _ { 7 } < 0" + }, + { + "category_id": 13, + "poly": [ + 617, + 763, + 915, + 763, + 915, + 805, + 617, + 805 + ], + "score": 0.82, + "latex": "\\scriptstyle { \\mathrm { l o g i t } } = \\exp ( \\sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )" + }, + { + "category_id": 13, + "poly": [ + 478, + 1611, + 665, + 1611, + 665, + 1643, + 478, + 1643 + ], + "score": 0.81, + "latex": "X _ { 1 } < 0 , X _ { 2 } < 0" + }, + { + "category_id": 13, + "poly": [ + 522, + 768, + 610, + 768, + 610, + 799, + 522, + 799 + ], + "score": 0.81, + "latex": "X _ { 7 } < 0" + }, + { + "category_id": 13, + "poly": [ + 676, + 1687, + 1262, + 1687, + 1262, + 1718, + 676, + 1718 + ], + "score": 0.79, + "latex": "\\mathrm { l o g i t = - 1 0 \\times \\sin 2 X _ { 7 } + 2 } | X _ { 8 } | + X _ { 9 } + \\exp ( - X _ { 1 0 } ) ." + }, + { + "category_id": 13, + "poly": [ + 1096, + 768, + 1403, + 768, + 1403, + 802, + 1096, + 802 + ], + "score": 0.77, + "latex": "\\mathrel { \\mathop { : = } } - 1 0 \\times \\sin 2 X _ { 7 } + 2 | X _ { 8 } | +" + }, + { + "category_id": 13, + "poly": [ + 677, + 1645, + 972, + 1645, + 972, + 1685, + 677, + 1685 + ], + "score": 0.75, + "latex": "\\scriptstyle { \\mathrm { l o g i t } } = \\exp ( \\sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )" + }, + { + "category_id": 13, + "poly": [ + 658, + 1722, + 1281, + 1722, + 1281, + 1763, + 658, + 1763 + ], + "score": 0.73, + "latex": "\\begin{array} { r } { ) , \\mathrm { l o g i t } = 0 . 5 \\times \\exp ( X _ { 1 } X _ { 2 } ) + 0 . 5 \\times \\exp ( \\sum _ { i = 3 } ^ { 4 } X _ { i } ^ { 2 } - 2 ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 478, + 1726, + 665, + 1726, + 665, + 1759, + 478, + 1759 + ], + "score": 0.7, + "latex": "X _ { 1 } \\geq 0 , X _ { 2 } \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 1176, + 1499, + 1404, + 1499, + 1404, + 1532, + 1176, + 1532 + ], + "score": 0.67, + "latex": "= - 1 0 \\times \\sin 2 X _ { 7 } +" + }, + { + "category_id": 13, + "poly": [ + 478, + 1650, + 665, + 1650, + 665, + 1683, + 478, + 1683 + ], + "score": 0.6, + "latex": "X _ { 1 } < 0 , X _ { 2 } \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 1032, + 647, + 1269, + 647, + 1269, + 688, + 1032, + 688 + ], + "score": 0.59, + "latex": "= \\textstyle \\exp ( \\sum _ { i = 3 } ^ { 6 } X _ { i } ^ { 2 } - 4 )" + }, + { + "category_id": 13, + "poly": [ + 693, + 556, + 719, + 556, + 719, + 584, + 693, + 584 + ], + "score": 0.58, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 478, + 1685, + 664, + 1685, + 664, + 1718, + 478, + 1718 + ], + "score": 0.34, + "latex": "X _ { 1 } \\geq 0 , X _ { 2 } < 0" + }, + { + "category_id": 13, + "poly": [ + 722, + 1425, + 748, + 1425, + 748, + 1449, + 722, + 1449 + ], + "score": 0.28, + "latex": "=" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1812.0, + 886.0, + 1812.0, + 886.0, + 1853.0, + 296.0, + 1853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 871.0, + 2085.0, + 871.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 225.0, + 1156.0, + 225.0, + 1156.0, + 266.0, + 298.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1268.0, + 1403.0, + 1268.0, + 1403.0, + 1306.0, + 293.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1299.0, + 442.0, + 1299.0, + 442.0, + 1336.0, + 295.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1565.0, + 477.0, + 1565.0, + 477.0, + 1618.0, + 364.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 295.0, + 1405.0, + 295.0, + 1405.0, + 329.0, + 292.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 325.0, + 481.0, + 325.0, + 481.0, + 360.0, + 295.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 325.0, + 1157.0, + 325.0, + 1157.0, + 360.0, + 533.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 325.0, + 1403.0, + 325.0, + 1403.0, + 360.0, + 1209.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 354.0, + 1405.0, + 354.0, + 1405.0, + 392.0, + 293.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 388.0, + 1402.0, + 388.0, + 1402.0, + 419.0, + 296.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 416.0, + 1405.0, + 416.0, + 1405.0, + 453.0, + 293.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 446.0, + 1406.0, + 446.0, + 1406.0, + 483.0, + 292.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 479.0, + 875.0, + 479.0, + 875.0, + 513.0, + 295.0, + 513.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": [ + 294.0, + 1911.0, + 1407.0, + 1911.0, + 1407.0, + 1948.0, + 294.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1938.0, + 1405.0, + 1938.0, + 1405.0, + 1981.0, + 293.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1973.0, + 1404.0, + 1973.0, + 1404.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1345.0, + 2002.0, + 1345.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 523.0, + 1403.0, + 523.0, + 1403.0, + 558.0, + 296.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 547.0, + 513.0, + 547.0, + 513.0, + 605.0, + 288.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 547.0, + 692.0, + 547.0, + 692.0, + 605.0, + 678.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 547.0, + 1009.0, + 547.0, + 1009.0, + 605.0, + 720.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1303.0, + 547.0, + 1410.0, + 547.0, + 1410.0, + 605.0, + 1303.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 590.0, + 979.0, + 590.0, + 979.0, + 626.0, + 294.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 1606.0, + 477.0, + 1606.0, + 477.0, + 1645.0, + 420.0, + 1645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 1606.0, + 674.0, + 1606.0, + 674.0, + 1645.0, + 666.0, + 1645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 1629.0, + 477.0, + 1629.0, + 477.0, + 1701.0, + 410.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 1629.0, + 676.0, + 1629.0, + 676.0, + 1701.0, + 666.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 1629.0, + 996.0, + 1629.0, + 996.0, + 1701.0, + 973.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 1680.0, + 477.0, + 1680.0, + 477.0, + 1721.0, + 419.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 1680.0, + 675.0, + 1680.0, + 675.0, + 1721.0, + 665.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1263.0, + 1680.0, + 1268.0, + 1680.0, + 1268.0, + 1721.0, + 1263.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 1719.0, + 477.0, + 1719.0, + 477.0, + 1765.0, + 418.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 1719.0, + 1292.0, + 1719.0, + 1292.0, + 1765.0, + 1282.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 634.0, + 523.0, + 634.0, + 523.0, + 695.0, + 361.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 634.0, + 623.0, + 634.0, + 623.0, + 695.0, + 614.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 634.0, + 1031.0, + 634.0, + 1031.0, + 695.0, + 842.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 634.0, + 1286.0, + 634.0, + 1286.0, + 695.0, + 1270.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 688.0, + 522.0, + 688.0, + 522.0, + 728.0, + 366.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 688.0, + 621.0, + 688.0, + 621.0, + 728.0, + 613.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 688.0, + 1017.0, + 688.0, + 1017.0, + 728.0, + 838.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 720.0, + 395.0, + 720.0, + 395.0, + 759.0, + 391.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 720.0, + 547.0, + 720.0, + 547.0, + 759.0, + 532.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 746.0, + 396.0, + 746.0, + 396.0, + 837.0, + 358.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 746.0, + 616.0, + 746.0, + 616.0, + 837.0, + 611.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 746.0, + 1095.0, + 746.0, + 1095.0, + 837.0, + 916.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 746.0, + 1413.0, + 746.0, + 1413.0, + 837.0, + 1404.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1487.0, + 529.0, + 1487.0, + 529.0, + 1541.0, + 365.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 1487.0, + 739.0, + 1487.0, + 739.0, + 1541.0, + 666.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 1487.0, + 1175.0, + 1487.0, + 1175.0, + 1541.0, + 978.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1525.0, + 395.0, + 1525.0, + 395.0, + 1566.0, + 391.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 1525.0, + 710.0, + 1525.0, + 710.0, + 1566.0, + 699.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1415.0, + 524.0, + 1415.0, + 524.0, + 1460.0, + 366.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 1415.0, + 667.0, + 1415.0, + 667.0, + 1460.0, + 656.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 1415.0, + 1082.0, + 1415.0, + 1082.0, + 1460.0, + 887.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1447.0, + 395.0, + 1447.0, + 395.0, + 1491.0, + 392.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 1447.0, + 613.0, + 1447.0, + 613.0, + 1491.0, + 601.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1565.0, + 477.0, + 1565.0, + 477.0, + 1618.0, + 364.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 1371.0, + 522.0, + 1371.0, + 522.0, + 1426.0, + 363.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 1371.0, + 656.0, + 1371.0, + 656.0, + 1426.0, + 648.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1371.0, + 1064.0, + 1371.0, + 1064.0, + 1426.0, + 875.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 1371.0, + 1318.0, + 1371.0, + 1318.0, + 1426.0, + 1305.0, + 1426.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 417, + 224, + 1285, + 224, + 1285, + 604, + 417, + 604 + ], + "score": 0.983, + "html": "
DatasetSyn4BSyn5BSyn6BSyn7
Metrics (%)TPRFDRTPRFDRTPRFDRTPRFDR
INVASE+65.530.185.015.086.527.886.832.4
L2X43.253.450.350.344.655.435.370.9
LIME56.837.271.927.269.830.256.451.0
Shapley51.443.577.224.169.330.761.845.6
Knock off5.387.473.325.259.940.154.160.0
Tree56.737.473.925.070.129.971.640.3
SCFS3.796.272.326.361.138.922.977.5
LASSO4.295.673.325.060.139.924.975.8
" + }, + { + "category_id": 5, + "poly": [ + 297, + 724, + 1404, + 724, + 1404, + 1061, + 297, + 1061 + ], + "score": 0.982, + "html": "
DatasetSyn1Syn2Syn3Syn4Syn5Syn6
Metrics (%) TPRFDRTPRFDRTPRFDRTPRFDRTPRFDRTPRFDR
INVASE100.00.0100.00.0100.00.085.90.072.90.181.013.2
L2X LIME68.8 46.931.2 53.199.9 99.90.1 0.183.0 87.217.0 12.860.0 63.631.3 24.468.3 50.222.3 37.673.5 68.726.5 31.3
Shapley Knock off73.9 27.526.1 65.094.5 77.55.5 22.581.0 100.019.0 0.065.323.9 34.461.229.069.930.1
Tree100.00.0100.00.0100.00.057.0 56.329.756.1 51.629.8 40.258.0 46.742.0 53.3
SCFS30.070.053.047.0100.00.052.039.954.032.464.535.5
LASSO75.025.0100.0
25.075.00.060.733.156.129.858.241.8
" + }, + { + "category_id": 5, + "poly": [ + 298, + 1149, + 1404, + 1149, + 1404, + 1488, + 298, + 1488 + ], + "score": 0.981, + "html": "
DatasetSyn1Syn2Syn3Syn4Syn5Syn6
Metrics (%)TPRFDRTPRFDRTPRFDRTPRFDRTPRFDRTPRFDR
INVASE35.90.0100.00.084.07.059.238.664.631.770.029.9
L2X LIME0.0 1.0100.0 99.062.2 70.337.8 29.743.6 74.956.4 25.141.9 43.555.4 55.921.5 26.876.7 68.966.9 56.833.1 43.2
Shapley Knock off5.494.668.531.567.932.132.769.439.658.648.551.5
Tree15.0 0.050.0 100.085.0 71.015.0 29.0100.0 75.00.0 25.046.1 34.552.1 66.334.558.3 54.760.040.0
SCFS10.090.061.039.093.86.243.255.743.836.963.1
LASSO31.063.655.544.5
0.0100.072.527.5100.00.039.260.833.268.245.055.0
" + }, + { + "category_id": 1, + "poly": [ + 301, + 1602, + 1398, + 1602, + 1398, + 1696, + 301, + 1696 + ], + "score": 0.963 + }, + { + "category_id": 6, + "poly": [ + 297, + 628, + 1404, + 628, + 1404, + 690, + 297, + 690 + ], + "score": 0.922 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 865, + 2087, + 865, + 2112, + 836, + 2112 + ], + "score": 0.848 + }, + { + "category_id": 6, + "poly": [ + 302, + 1084, + 1398, + 1084, + 1398, + 1117, + 302, + 1117 + ], + "score": 0.845 + }, + { + "category_id": 6, + "poly": [ + 313, + 1511, + 1378, + 1511, + 1378, + 1544, + 313, + 1544 + ], + "score": 0.43 + }, + { + "category_id": 1, + "poly": [ + 313, + 1511, + 1378, + 1511, + 1378, + 1544, + 313, + 1544 + ], + "score": 0.223 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 627.0, + 1402.0, + 627.0, + 1402.0, + 663.0, + 295.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 656.0, + 442.0, + 656.0, + 442.0, + 693.0, + 297.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1077.0, + 1402.0, + 1077.0, + 1402.0, + 1123.0, + 297.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1504.0, + 1381.0, + 1504.0, + 1381.0, + 1550.0, + 318.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1603.0, + 1403.0, + 1603.0, + 1403.0, + 1637.0, + 297.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1633.0, + 1406.0, + 1633.0, + 1406.0, + 1671.0, + 295.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1665.0, + 1089.0, + 1665.0, + 1089.0, + 1699.0, + 297.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1504.0, + 1381.0, + 1504.0, + 1381.0, + 1550.0, + 318.0, + 1550.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 296, + 500, + 1463, + 500, + 1463, + 925, + 296, + 925 + ], + "score": 0.985, + "html": "
DatasetsMAGGICPLCO
Labels3-year5-year5-year10-year
MetricsAUROCAUPRCAUROCAUPRCAUROCAUPRCAUROCAUPRC
INVASE0.7220.6550.7400.8670.6370.3290.6730.506
L2X0.6090.5290.6070.7940.5580.1700.5830.365
LIME0.6370.55960.6340.8080.5970.1830.6010.374
Shapley0.6410.5570.6170.7970.6140.1940.6150.381
Knockoff0.6860.6140.7110.8530.6190.2300.6580.475
Tree0.6780.6040.7080.8500.6320.2690.6550.469
SCFS0.6830.6230.7230.8570.6320.2310.6320.444
LASSO0.6920.6150.7090.8470.6230.2180.6560.467
" + }, + { + "category_id": 1, + "poly": [ + 297, + 285, + 1406, + 285, + 1406, + 473, + 297, + 473 + ], + "score": 0.905 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.843 + }, + { + "category_id": 7, + "poly": [ + 296, + 948, + 1404, + 948, + 1404, + 1011, + 296, + 1011 + ], + "score": 0.819 + }, + { + "category_id": 0, + "poly": [ + 298, + 229, + 1204, + 229, + 1204, + 262, + 298, + 262 + ], + "score": 0.557 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1204, + 229, + 1204, + 262, + 298, + 262 + ], + "score": 0.284 + }, + { + "category_id": 6, + "poly": [ + 297, + 285, + 1406, + 285, + 1406, + 473, + 297, + 473 + ], + "score": 0.096 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2122.0, + 832.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 944.0, + 1405.0, + 944.0, + 1405.0, + 986.0, + 293.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 980.0, + 642.0, + 980.0, + 642.0, + 1011.0, + 296.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 1209.0, + 229.0, + 1209.0, + 264.0, + 294.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 285.0, + 1406.0, + 285.0, + 1406.0, + 322.0, + 292.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 317.0, + 1406.0, + 317.0, + 1406.0, + 353.0, + 294.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 348.0, + 1406.0, + 348.0, + 1406.0, + 383.0, + 292.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 379.0, + 1404.0, + 379.0, + 1404.0, + 411.0, + 292.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 409.0, + 1406.0, + 409.0, + 1406.0, + 445.0, + 294.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 441.0, + 960.0, + 441.0, + 960.0, + 473.0, + 297.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 285.0, + 1406.0, + 285.0, + 1406.0, + 322.0, + 292.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 317.0, + 1406.0, + 317.0, + 1406.0, + 353.0, + 294.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 348.0, + 1406.0, + 348.0, + 1406.0, + 383.0, + 292.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 379.0, + 1404.0, + 379.0, + 1404.0, + 411.0, + 292.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 409.0, + 1406.0, + 409.0, + 1406.0, + 445.0, + 294.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 441.0, + 960.0, + 441.0, + 960.0, + 473.0, + 297.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 1209.0, + 229.0, + 1209.0, + 264.0, + 294.0, + 264.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 489, + 1081, + 1212, + 1081, + 1212, + 1480, + 489, + 1480 + ], + "score": 0.98, + "html": "
VariablesSyn1Syn2Syn3Syn4Syn5Syn6
X10.028 0.0020.030 0.0110.070 0.0090.011 0.0010.044 0.0010.026 0.012
X0.0180.0790.0080.0380.0060.046
X3 X40.0050.1130.0060.0560.0010.055
0.0060.0340.013
X5 X60.0190.1140.032 0.0270.0990.0160.036
0.0050.0100.0000.0180.004
X70.3670.2620.272
X80.0200.0300.1120.0230.0750.082
X90.0250.0220.2990.0060.2160.200
X100.070.0430.3280.0270.2220.206
X110.0090.0060.0340.0460.0180.058
" + }, + { + "category_id": 5, + "poly": [ + 488, + 342, + 1212, + 342, + 1212, + 742, + 488, + 742 + ], + "score": 0.98, + "html": "
VariablesSyn1Syn2Syn3Syn4Syn5Syn6
X1 X0.003 0.0010.008 0.0050.006 0.0060.009 0.0050.007 0.0150.006 0.005
X30.006 0.0060.0110.0010.0170.0160.010
X40.0030.0030.0020.0000.002
X50.0030.0150.0220.0040.0170.028
X60.0030.0040.0050.0020.0040.005
X70.0130.0090.4810.0020.2420.235
X80.0100.0080.0120.0030.0100.022
X90.0010.0030.2390.0020.1150.121
X100.0020.0030.3080.0030.1490.144
X110.0140.0120.0040.0280.0180.002
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1602, + 1404, + 1602, + 1404, + 1727, + 298, + 1727 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 300, + 897, + 1401, + 897, + 1401, + 1054, + 300, + 1054 + ], + "score": 0.95 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.847 + }, + { + "category_id": 6, + "poly": [ + 296, + 228, + 1364, + 228, + 1364, + 301, + 296, + 301 + ], + "score": 0.823 + }, + { + "category_id": 6, + "poly": [ + 296, + 1506, + 1397, + 1506, + 1397, + 1568, + 296, + 1568 + ], + "score": 0.784 + }, + { + "category_id": 6, + "poly": [ + 300, + 766, + 1403, + 766, + 1403, + 859, + 300, + 859 + ], + "score": 0.658 + }, + { + "category_id": 1, + "poly": [ + 300, + 766, + 1403, + 766, + 1403, + 859, + 300, + 859 + ], + "score": 0.262 + }, + { + "category_id": 1, + "poly": [ + 296, + 1506, + 1397, + 1506, + 1397, + 1568, + 296, + 1568 + ], + "score": 0.111 + }, + { + "category_id": 13, + "poly": [ + 1274, + 798, + 1360, + 798, + 1360, + 827, + 1274, + 827 + ], + "score": 0.86, + "latex": "> 0 . 0 5" + }, + { + "category_id": 13, + "poly": [ + 921, + 1537, + 1004, + 1537, + 1004, + 1566, + 921, + 1566 + ], + "score": 0.86, + "latex": "> 0 . 0 5" + }, + { + "category_id": 13, + "poly": [ + 541, + 404, + 577, + 404, + 577, + 428, + 541, + 428 + ], + "score": 0.85, + "latex": "X _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 541, + 584, + 578, + 584, + 578, + 611, + 541, + 611 + ], + "score": 0.85, + "latex": "X _ { 7 }" + }, + { + "category_id": 13, + "poly": [ + 541, + 525, + 577, + 525, + 577, + 551, + 541, + 551 + ], + "score": 0.84, + "latex": "X _ { 5 }" + }, + { + "category_id": 13, + "poly": [ + 541, + 1293, + 577, + 1293, + 577, + 1319, + 541, + 1319 + ], + "score": 0.84, + "latex": "X _ { 6 }" + }, + { + "category_id": 13, + "poly": [ + 541, + 555, + 578, + 555, + 578, + 580, + 541, + 580 + ], + "score": 0.83, + "latex": "X _ { 6 }" + }, + { + "category_id": 13, + "poly": [ + 541, + 495, + 577, + 495, + 577, + 519, + 541, + 519 + ], + "score": 0.82, + "latex": "X _ { 4 }" + }, + { + "category_id": 13, + "poly": [ + 541, + 1324, + 578, + 1324, + 578, + 1350, + 541, + 1350 + ], + "score": 0.82, + "latex": "X _ { 7 }" + }, + { + "category_id": 13, + "poly": [ + 541, + 1264, + 578, + 1264, + 578, + 1289, + 541, + 1289 + ], + "score": 0.81, + "latex": "X _ { 5 }" + }, + { + "category_id": 13, + "poly": [ + 541, + 1232, + 578, + 1232, + 578, + 1259, + 541, + 1259 + ], + "score": 0.79, + "latex": "X _ { 4 }" + }, + { + "category_id": 13, + "poly": [ + 541, + 464, + 578, + 464, + 578, + 490, + 541, + 490 + ], + "score": 0.79, + "latex": "X _ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 541, + 1171, + 578, + 1171, + 578, + 1198, + 541, + 1198 + ], + "score": 0.74, + "latex": "X _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 541, + 1354, + 578, + 1354, + 578, + 1381, + 541, + 1381 + ], + "score": 0.73, + "latex": "X _ { 8 }" + }, + { + "category_id": 13, + "poly": [ + 535, + 1414, + 583, + 1414, + 583, + 1441, + 535, + 1441 + ], + "score": 0.72, + "latex": "X _ { 1 0 }" + }, + { + "category_id": 13, + "poly": [ + 541, + 1141, + 578, + 1141, + 578, + 1167, + 541, + 1167 + ], + "score": 0.69, + "latex": "X _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 541, + 434, + 577, + 434, + 577, + 458, + 541, + 458 + ], + "score": 0.68, + "latex": "X _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 541, + 614, + 578, + 614, + 578, + 641, + 541, + 641 + ], + "score": 0.68, + "latex": "X _ { 8 }" + }, + { + "category_id": 13, + "poly": [ + 540, + 643, + 578, + 643, + 578, + 671, + 540, + 671 + ], + "score": 0.65, + "latex": "X _ { 9 }" + }, + { + "category_id": 13, + "poly": [ + 541, + 1201, + 578, + 1201, + 578, + 1228, + 541, + 1228 + ], + "score": 0.65, + "latex": "X _ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 540, + 1383, + 578, + 1383, + 578, + 1411, + 540, + 1411 + ], + "score": 0.63, + "latex": "X _ { 9 }" + }, + { + "category_id": 13, + "poly": [ + 535, + 674, + 584, + 674, + 584, + 702, + 535, + 702 + ], + "score": 0.61, + "latex": "X _ { 1 0 }" + }, + { + "category_id": 13, + "poly": [ + 535, + 1444, + 584, + 1444, + 584, + 1473, + 535, + 1473 + ], + "score": 0.6, + "latex": "X _ { 1 1 }" + }, + { + "category_id": 13, + "poly": [ + 535, + 704, + 584, + 704, + 584, + 733, + 535, + 733 + ], + "score": 0.46, + "latex": "X _ { 1 1 }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 231.0, + 1360.0, + 231.0, + 1360.0, + 264.0, + 297.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 273.0, + 755.0, + 273.0, + 755.0, + 302.0, + 298.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1503.0, + 1403.0, + 1503.0, + 1403.0, + 1541.0, + 294.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1537.0, + 920.0, + 1537.0, + 920.0, + 1569.0, + 296.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 1537.0, + 1233.0, + 1537.0, + 1233.0, + 1569.0, + 1005.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 765.0, + 1403.0, + 765.0, + 1403.0, + 799.0, + 295.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 799.0, + 1273.0, + 799.0, + 1273.0, + 829.0, + 296.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 799.0, + 1404.0, + 799.0, + 1404.0, + 829.0, + 1361.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 827.0, + 508.0, + 827.0, + 508.0, + 859.0, + 294.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1601.0, + 1404.0, + 1601.0, + 1404.0, + 1636.0, + 295.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1634.0, + 1405.0, + 1634.0, + 1405.0, + 1667.0, + 294.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1666.0, + 1404.0, + 1666.0, + 1404.0, + 1698.0, + 294.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1695.0, + 1261.0, + 1695.0, + 1261.0, + 1728.0, + 293.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 898.0, + 1402.0, + 898.0, + 1402.0, + 931.0, + 296.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 927.0, + 1406.0, + 927.0, + 1406.0, + 966.0, + 294.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 961.0, + 1405.0, + 961.0, + 1405.0, + 994.0, + 295.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 990.0, + 1406.0, + 990.0, + 1406.0, + 1028.0, + 295.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1018.0, + 974.0, + 1018.0, + 974.0, + 1059.0, + 294.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 765.0, + 1403.0, + 765.0, + 1403.0, + 799.0, + 295.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 799.0, + 1273.0, + 799.0, + 1273.0, + 829.0, + 296.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 799.0, + 1404.0, + 799.0, + 1404.0, + 829.0, + 1361.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 827.0, + 508.0, + 827.0, + 508.0, + 859.0, + 294.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1503.0, + 1403.0, + 1503.0, + 1403.0, + 1541.0, + 294.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1537.0, + 920.0, + 1537.0, + 920.0, + 1569.0, + 296.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 1537.0, + 1233.0, + 1537.0, + 1233.0, + 1569.0, + 1005.0, + 1569.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 18, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 470, + 310, + 1225, + 310, + 1225, + 661, + 470, + 661 + ], + "score": 0.952, + "html": "
True Condition
PositiveNegative
PredictedConditionPositiveTruePositiveFalsePositive
NegativeFalseNegativeTrueNegative
" + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 816, + 75, + 816, + 105, + 298, + 105 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 866, + 2088, + 866, + 2113, + 834, + 2113 + ], + "score": 0.848 + }, + { + "category_id": 1, + "poly": [ + 471, + 696, + 1216, + 696, + 1216, + 872, + 471, + 872 + ], + "score": 0.823 + }, + { + "category_id": 1, + "poly": [ + 299, + 225, + 740, + 225, + 740, + 263, + 299, + 263 + ], + "score": 0.486 + }, + { + "category_id": 0, + "poly": [ + 299, + 225, + 740, + 225, + 740, + 263, + 299, + 263 + ], + "score": 0.428 + }, + { + "category_id": 6, + "poly": [ + 367, + 912, + 1334, + 912, + 1334, + 948, + 367, + 948 + ], + "score": 0.37 + }, + { + "category_id": 13, + "poly": [ + 811, + 822, + 843, + 822, + 843, + 846, + 811, + 846 + ], + "score": 0.4, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 790, + 721, + 822, + 721, + 822, + 747, + 790, + 747 + ], + "score": 0.37, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 1016, + 843, + 1036, + 843, + 1036, + 866, + 1016, + 866 + ], + "score": 0.27, + "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": [ + 828.0, + 2083.0, + 872.0, + 2083.0, + 872.0, + 2123.0, + 828.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 226.0, + 740.0, + 226.0, + 740.0, + 267.0, + 297.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 909.0, + 1336.0, + 909.0, + 1336.0, + 953.0, + 360.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 698.0, + 1099.0, + 698.0, + 1099.0, + 731.0, + 925.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 713.0, + 789.0, + 713.0, + 789.0, + 775.0, + 479.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 713.0, + 1202.0, + 713.0, + 1202.0, + 775.0, + 823.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 798.0, + 1123.0, + 798.0, + 1123.0, + 832.0, + 934.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 812.0, + 810.0, + 812.0, + 810.0, + 876.0, + 464.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 812.0, + 1015.0, + 812.0, + 1015.0, + 876.0, + 844.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 812.0, + 1214.0, + 812.0, + 1214.0, + 876.0, + 1037.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 226.0, + 740.0, + 226.0, + 740.0, + 267.0, + 297.0, + 267.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 19, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 335, + 623, + 1364, + 623, + 1364, + 1860, + 335, + 1860 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 295, + 1403, + 295, + 1403, + 480, + 297, + 480 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 495, + 1404, + 495, + 1404, + 618, + 298, + 618 + ], + "score": 0.973 + }, + { + "category_id": 4, + "poly": [ + 360, + 1870, + 1338, + 1870, + 1338, + 1905, + 360, + 1905 + ], + "score": 0.905 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 300, + 226, + 575, + 226, + 575, + 262, + 300, + 262 + ], + "score": 0.875 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 863, + 2088, + 863, + 2113, + 834, + 2113 + ], + "score": 0.823 + }, + { + "category_id": 13, + "poly": [ + 401, + 419, + 487, + 419, + 487, + 448, + 401, + 448 + ], + "score": 0.8, + "latex": "1 6 \\times 1 6" + }, + { + "category_id": 13, + "poly": [ + 578, + 1872, + 664, + 1872, + 664, + 1902, + 578, + 1902 + ], + "score": 0.64, + "latex": "1 6 \\mathrm { ~ x ~ } 1 6" + }, + { + "category_id": 13, + "poly": [ + 916, + 449, + 1003, + 449, + 1003, + 478, + 916, + 478 + ], + "score": 0.44, + "latex": "1 6 \\times 1 6" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 896.0, + 560.0, + 896.0, + 560.0, + 936.0, + 358.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 898.0, + 828.0, + 898.0, + 828.0, + 934.0, + 615.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 899.0, + 1084.0, + 899.0, + 1084.0, + 935.0, + 888.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 896.0, + 1348.0, + 896.0, + 1348.0, + 936.0, + 1133.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1232.0, + 559.0, + 1232.0, + 559.0, + 1275.0, + 359.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 1235.0, + 827.0, + 1235.0, + 827.0, + 1271.0, + 618.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1236.0, + 1084.0, + 1236.0, + 1084.0, + 1272.0, + 886.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 1235.0, + 1348.0, + 1235.0, + 1348.0, + 1271.0, + 1135.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 1521.0, + 556.0, + 1521.0, + 556.0, + 1566.0, + 363.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 1524.0, + 828.0, + 1524.0, + 828.0, + 1560.0, + 619.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1523.0, + 1089.0, + 1523.0, + 1089.0, + 1563.0, + 882.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 1523.0, + 1345.0, + 1523.0, + 1345.0, + 1559.0, + 1137.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 1630.0, + 1301.0, + 1630.0, + 1301.0, + 1661.0, + 1260.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1814.0, + 562.0, + 1814.0, + 562.0, + 1850.0, + 358.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1811.0, + 831.0, + 1811.0, + 831.0, + 1852.0, + 614.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1810.0, + 1087.0, + 1810.0, + 1087.0, + 1853.0, + 884.0, + 1853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1813.0, + 1346.0, + 1813.0, + 1346.0, + 1853.0, + 1133.0, + 1853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 1869.0, + 577.0, + 1869.0, + 577.0, + 1909.0, + 363.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 1869.0, + 1334.0, + 1869.0, + 1334.0, + 1909.0, + 665.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 224.0, + 580.0, + 224.0, + 580.0, + 267.0, + 296.0, + 267.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": [ + 295.0, + 296.0, + 1404.0, + 296.0, + 1404.0, + 332.0, + 295.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 324.0, + 1404.0, + 324.0, + 1404.0, + 363.0, + 294.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 357.0, + 1405.0, + 357.0, + 1405.0, + 393.0, + 293.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 385.0, + 1405.0, + 385.0, + 1405.0, + 423.0, + 292.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 418.0, + 400.0, + 418.0, + 400.0, + 454.0, + 293.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 418.0, + 1405.0, + 418.0, + 1405.0, + 454.0, + 488.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 447.0, + 915.0, + 447.0, + 915.0, + 483.0, + 293.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 447.0, + 1211.0, + 447.0, + 1211.0, + 483.0, + 1004.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 491.0, + 1405.0, + 491.0, + 1405.0, + 530.0, + 293.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 526.0, + 1405.0, + 526.0, + 1405.0, + 559.0, + 294.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 554.0, + 1406.0, + 554.0, + 1406.0, + 594.0, + 292.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 588.0, + 604.0, + 588.0, + 604.0, + 617.0, + 296.0, + 617.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 20, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 335, + 441, + 1364, + 441, + 1364, + 1743, + 335, + 1743 + ], + "score": 0.978 + }, + { + "category_id": 4, + "poly": [ + 354, + 1748, + 1342, + 1748, + 1342, + 1784, + 354, + 1784 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 865, + 2088, + 865, + 2113, + 834, + 2113 + ], + "score": 0.783 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 866, + 2087, + 866, + 2114, + 834, + 2114 + ], + "score": 0.198 + }, + { + "category_id": 13, + "poly": [ + 573, + 1750, + 660, + 1750, + 660, + 1780, + 573, + 1780 + ], + "score": 0.53, + "latex": "1 6 \\times 1 6" + }, + { + "category_id": 13, + "poly": [ + 362, + 1695, + 400, + 1695, + 400, + 1723, + 362, + 1723 + ], + "score": 0.26, + "latex": "\\mathrm { ( m ) }" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 724.0, + 558.0, + 724.0, + 558.0, + 762.0, + 360.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 724.0, + 830.0, + 724.0, + 830.0, + 762.0, + 616.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 719.0, + 1088.0, + 719.0, + 1088.0, + 765.0, + 884.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 724.0, + 1349.0, + 724.0, + 1349.0, + 762.0, + 1135.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 896.0, + 1257.0, + 896.0, + 1257.0, + 909.0, + 1246.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 911.0, + 1276.0, + 911.0, + 1276.0, + 931.0, + 1257.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1070.0, + 563.0, + 1070.0, + 563.0, + 1120.0, + 356.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1076.0, + 828.0, + 1076.0, + 828.0, + 1115.0, + 614.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1073.0, + 1087.0, + 1073.0, + 1087.0, + 1117.0, + 882.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 1077.0, + 1348.0, + 1077.0, + 1348.0, + 1115.0, + 1135.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 1298.0, + 578.0, + 1298.0, + 578.0, + 1330.0, + 563.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 1395.0, + 557.0, + 1395.0, + 557.0, + 1443.0, + 362.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1400.0, + 829.0, + 1400.0, + 829.0, + 1441.0, + 614.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1396.0, + 1085.0, + 1396.0, + 1085.0, + 1441.0, + 882.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 1400.0, + 1345.0, + 1400.0, + 1345.0, + 1438.0, + 1135.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 1691.0, + 361.0, + 1691.0, + 361.0, + 1729.0, + 357.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 1691.0, + 563.0, + 1691.0, + 563.0, + 1729.0, + 401.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1691.0, + 830.0, + 1691.0, + 830.0, + 1729.0, + 614.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1691.0, + 1086.0, + 1691.0, + 1086.0, + 1729.0, + 883.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 1689.0, + 1349.0, + 1689.0, + 1349.0, + 1732.0, + 1132.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1744.0, + 572.0, + 1744.0, + 572.0, + 1789.0, + 356.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 1744.0, + 1341.0, + 1744.0, + 1341.0, + 1789.0, + 661.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2125.0, + 829.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 830.0, + 2124.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 21, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 336, + 506, + 1364, + 506, + 1364, + 1685, + 336, + 1685 + ], + "score": 0.978 + }, + { + "category_id": 4, + "poly": [ + 423, + 1698, + 1275, + 1698, + 1275, + 1733, + 423, + 1733 + ], + "score": 0.914 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 865, + 2088, + 865, + 2113, + 834, + 2113 + ], + "score": 0.85 + }, + { + "category_id": 13, + "poly": [ + 637, + 1700, + 724, + 1700, + 724, + 1730, + 637, + 1730 + ], + "score": 0.55, + "latex": "1 6 \\times 1 6" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 656.0, + 1196.0, + 656.0, + 1196.0, + 672.0, + 1177.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 768.0, + 559.0, + 768.0, + 559.0, + 814.0, + 356.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 773.0, + 831.0, + 773.0, + 831.0, + 812.0, + 614.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 773.0, + 1086.0, + 773.0, + 1086.0, + 812.0, + 884.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 773.0, + 1350.0, + 773.0, + 1350.0, + 812.0, + 1133.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1062.0, + 560.0, + 1062.0, + 560.0, + 1101.0, + 359.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 1064.0, + 827.0, + 1064.0, + 827.0, + 1098.0, + 618.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1059.0, + 1086.0, + 1059.0, + 1086.0, + 1101.0, + 884.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1065.0, + 1348.0, + 1065.0, + 1348.0, + 1099.0, + 1133.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 1348.0, + 559.0, + 1348.0, + 559.0, + 1390.0, + 360.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 1354.0, + 827.0, + 1354.0, + 827.0, + 1389.0, + 620.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1351.0, + 1086.0, + 1351.0, + 1086.0, + 1390.0, + 884.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1353.0, + 1346.0, + 1353.0, + 1346.0, + 1388.0, + 1133.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1636.0, + 564.0, + 1636.0, + 564.0, + 1682.0, + 356.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 1640.0, + 830.0, + 1640.0, + 830.0, + 1679.0, + 615.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 1640.0, + 1086.0, + 1640.0, + 1086.0, + 1679.0, + 885.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1642.0, + 1346.0, + 1642.0, + 1346.0, + 1678.0, + 1133.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 1697.0, + 636.0, + 1697.0, + 636.0, + 1736.0, + 425.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 1697.0, + 1274.0, + 1697.0, + 1274.0, + 1736.0, + 725.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 830.0, + 2123.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 22, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 335, + 505, + 1363, + 505, + 1363, + 1685, + 335, + 1685 + ], + "score": 0.978 + }, + { + "category_id": 4, + "poly": [ + 419, + 1698, + 1280, + 1698, + 1280, + 1733, + 419, + 1733 + ], + "score": 0.915 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 865, + 2088, + 865, + 2113, + 834, + 2113 + ], + "score": 0.853 + }, + { + "category_id": 13, + "poly": [ + 633, + 1699, + 719, + 1699, + 719, + 1730, + 633, + 1730 + ], + "score": 0.74, + "latex": "1 6 \\mathrm { ~ x ~ } 1 6" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 768.0, + 567.0, + 768.0, + 567.0, + 815.0, + 355.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 776.0, + 829.0, + 776.0, + 829.0, + 811.0, + 616.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 774.0, + 1090.0, + 774.0, + 1090.0, + 812.0, + 883.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 776.0, + 1348.0, + 776.0, + 1348.0, + 811.0, + 1134.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 836.0, + 1244.0, + 836.0, + 1244.0, + 858.0, + 1222.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 867.0, + 1257.0, + 867.0, + 1257.0, + 894.0, + 1191.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 878.0, + 783.0, + 878.0, + 783.0, + 943.0, + 689.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 900.0, + 1211.0, + 900.0, + 1211.0, + 918.0, + 1193.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 902.0, + 1303.0, + 902.0, + 1303.0, + 916.0, + 1284.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1061.0, + 560.0, + 1061.0, + 560.0, + 1103.0, + 356.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 1064.0, + 827.0, + 1064.0, + 827.0, + 1099.0, + 619.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1062.0, + 1086.0, + 1062.0, + 1086.0, + 1100.0, + 884.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 1064.0, + 1348.0, + 1064.0, + 1348.0, + 1099.0, + 1135.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1131.0, + 1027.0, + 1131.0, + 1027.0, + 1220.0, + 906.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 1348.0, + 556.0, + 1348.0, + 556.0, + 1391.0, + 361.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 1354.0, + 827.0, + 1354.0, + 827.0, + 1388.0, + 620.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1349.0, + 1085.0, + 1349.0, + 1085.0, + 1391.0, + 883.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 1354.0, + 1344.0, + 1354.0, + 1344.0, + 1388.0, + 1138.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1480.0, + 717.0, + 1480.0, + 717.0, + 1495.0, + 696.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1637.0, + 563.0, + 1637.0, + 563.0, + 1681.0, + 356.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1642.0, + 828.0, + 1642.0, + 828.0, + 1677.0, + 614.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1640.0, + 1084.0, + 1640.0, + 1084.0, + 1679.0, + 886.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 1642.0, + 1345.0, + 1642.0, + 1345.0, + 1678.0, + 1134.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 1694.0, + 632.0, + 1694.0, + 632.0, + 1739.0, + 417.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 1694.0, + 1281.0, + 1694.0, + 1281.0, + 1739.0, + 720.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2125.0, + 829.0, + 2125.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 23, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/ByxT7TNFvH/ByxT7TNFvH.md b/parse/train/ByxT7TNFvH/ByxT7TNFvH.md new file mode 100644 index 0000000000000000000000000000000000000000..6b3a98b59609fe514b5a42fffab85abca7ae5aba --- /dev/null +++ b/parse/train/ByxT7TNFvH/ByxT7TNFvH.md @@ -0,0 +1,279 @@ +# SEMANTICALLY-GUIDED REPRESENTATION LEARNING FOR SELF-SUPERVISED MONOCULAR DEPTH + +Vitor Guizilini1 Rui Hou1,2 Jie Li1 Rares, Ambrus, 1 Adrien Gaidon1 + +1Toyota Research Institute (TRI) {first.last}@tri.global + +2University of Michigan rayhou@umich.edu + +# ABSTRACT + +Self-supervised learning is showing great promise for monocular depth estimation, using geometry as the only source of supervision. Depth networks are indeed capable of learning representations that relate visual appearance to 3D properties by implicitly leveraging category-level patterns. In this work we investigate how to leverage more directly this semantic structure to guide geometric representation learning, while remaining in the self-supervised regime. Instead of using semantic labels and proxy losses in a multi-task approach, we propose a new architecture leveraging fixed pretrained semantic segmentation networks to guide self-supervised representation learning via pixel-adaptive convolutions. Furthermore, we propose a two-stage training process to overcome a common semantic bias on dynamic objects via resampling. Our method improves upon the state of the art for self-supervised monocular depth prediction over all pixels, fine-grained details, and per semantic categories.† + +# 1 INTRODUCTION + +Accurate depth estimation is a key problem in computer vision and robotics, as it is instrumental for perception, navigation, and planning. Although perceiving depth typically requires dedicated sensors (e.g., stereo rigs, LiDAR), learning to predict depth from monocular imagery can provide useful cues for a wide array of tasks (Michels et al., 2005; Kendall et al., 2018; Manhardt et al., 2019; Lee et al., 2019). Going beyond supervised learning from direct measurements (Eigen et al., 2014), self-supervised methods exploit geometry as supervision (Guo et al., 2018; Pillai et al., 2019; Zou et al., 2018; Yang et al., 2017), therefore having the potential to leverage large scale datasets of raw videos to outperform supervised methods (Guizilini et al., 2019). + +Although depth from a single image is an ill-posed inverse problem, monocular depth networks are able to make accurate predictions by learning representations connecting the appearance of scenes and objects with their geometry in Euclidean 3D space. Due to perspective, there is indeed an equivariance relationship between the visual appearance of an object in 2D and its depth, when conditioned on the object’s category. For instance, a car 25 meters away appears smaller (on the image plane) than a car only 5 meters away but bigger than a truck 50 meters away. Current depth estimation methods either do not leverage this structure explicitly or rely on strong semantic supervision to jointly optimize geometric consistency and a semantic proxy task in a multi-task objective (Ochs et al., 2019; Chen et al., 2019), thus departing from the self-supervised paradigm. + +In this paper, we explore how we can leverage semantic information to improve monocular depth prediction in a self-supervised way. Our main contribution is a novel architecture that uses a fixed pre-trained semantic segmentation network to guide geometric representation learning in a selfsupervised monocular depth network. In contrast to standard convolutional layers, our architecture uses pixel-adaptive convolutions (Su et al., 2019) to learn semantic-dependent representations that can better capture the aforementioned equivariance property. Leveraging semantics may nonetheless introduce category-specific biases. Our second contribution is a two-stage training process where we automatically detect the presence of a common bias on dynamic objects (projections at infinity) and resample the training set to de-bias it. Our method improves upon the state of the art in selfsupervised monocular depth estimation on the standard KITTI benchmark (Geiger et al., 2013), both on average over pixels, over classes, and for dynamic categories in particular. + +![](images/b09c90637e486163bce4d7333340755790cf27ff41a391d503abe5d3014d643d.jpg) +Figure 1: Example of a pointcloud generated using our proposed semantically-guided architecture, colored by RGB values from the input image and corresponding predicted semantic labels. + +# 2 RELATED WORK + +Since the seminal work of Eigen et al. (2014), substantial progress has been done to improve the accuracy of supervised depth estimation from monocular images, including the use of Conditional Random Fields (CRFs) (Li et al., 2015), joint optimization of surface normals (Qi et al., 2018), fusion of multiple depth maps (Lee et al., 2018), and ordinal classification (Fu et al., 2018). Consequently, as supervised techniques for depth estimation advanced rapidly, the availability of largescale depth labels became a bottleneck, especially for outdoor applications. Garg et al. (2016) and Godard et al. (2017) provided an alternative self-supervised strategy involving stereo cameras, where Spatial Transformer Networks (Jaderberg et al., 2015) can be used to geometrically warp, in a differentiable way, the right image into a synthesized left image, using the predicted depth from the left image. The photometric consistency loss between the resulting synthesized and original left images can then be minimized in an end-to-end manner using a Structural Similarity term (Wang et al., 2004) and additional depth regularization terms. Following Godard et al. (2017) and Ummenhofer et al. (2017), Zhou et al. (2017) generalized this to the purely monocular setting, where a depth and a pose networks are simultaneously learned from unlabeled monocular videos. Rapid progress in terms of architectures and objective functions (Yin & Shi, 2018; Mahjourian et al., 2018; Casser et al., 2019; Zou et al., 2018; Klodt & Vedaldi, 2018; Wang et al., 2018; Yang et al., 2018) have since then turned monocular depth estimation into one of the most successful applications of self-supervised learning, even outperforming supervised methods (Guizilini et al., 2019). + +The introduction of semantic information to improve depth estimates has been explored in prior works, and can be broadly divided into two categories. The first one uses semantic (or instance) information to mask out or properly model dynamic portions of the image, which are not accounted for in the photometric loss calculation. Guney & Geiger ¨ (2015) leveraged object knowledge in a Markov Random Field (MRF) to resolve stereo ambiguities, while Bai et al. (2016) used a conjunction of instance-level segmentation and epipolar constraints to reduce uncertainty in optical flow estimation. Casser et al. (2019) used instance-level masks to estimate motion models for different objects in the environment, and account for their external motion in the resulting warped image. The second category attempts to learn both tasks in a single framework, and uses consistency losses to ensure that both are optimized simultaneously and regularize each other, so the information contained in one task can be transferred to improve the other. For instance, Ochs et al. (2019) estimated depth with an ordinal classification loss similar to the standard semantic classification loss, and used empirical weighting to combine them into a single loss for optimization. Similarly, Chen et al. (2019) used a unified conditional decoder that can generate either semantic or depth estimates, and both outputs are used to generate a series of losses also combined using empirical weighting to generate the final loss to be optimized. + +Our approach focuses instead on representation learning, exploiting semantic features into the selfsupervised depth network by using a pretrained semantic segmentation network to guide the generation of depth features. This is done using pixel-adaptive convolutions, recently proposed in Su et al. (2019) and applied to tasks such as depth upsampling using RGB images for feature guidance. We show that different depth networks can be readily modified to leverage this semantic feature guidance, ranging from widely used ResNets (He et al., 2016) to the current state-of-the-art PackNet (Guizilini et al., 2019), with a consistent gain in performance across these architectures. + +# 3 SELF-SUPERVISED STRUCTURE-FROM-MOTION + +Our semantically-guided architecture is developed within a self-supervised monocular depth estimation setting, commonly known as structure-from-motion (SfM). Learning in a self-supervised structure-from-motion setting requires two networks: a monocular depth model $f _ { D } : I D$ , that outputs a depth prediction $\hat { D } = f _ { D } ( I ( p ) )$ for every pixel $p$ in the target image $I$ ; and a monocular ego-motion estimator $f _ { \mathbf { x } } : ( I _ { t } , I _ { S } ) \to \mathbf { x } _ { t \to S }$ , that predicts the $6 \mathrm { D o F }$ transformations for all $s \in S$ given by $\mathbf { x } _ { t s } = ( \mathbf { \Sigma } _ { \mathbf { 0 } } ^ { \mathbf { R } \textbf { t } } ) \in \mathbf { S } \mathbf { E } ( 3 )$ between the target image $I _ { t }$ and a set of temporal context source images $I _ { s } \in I _ { S }$ . In all reported experiments we use $I _ { t - 1 }$ and $I _ { t + 1 }$ as source images. + +# 3.1 THE SELF-SUPERVISED OBJECTIVE LOSS + +We train the depth and pose networks simultaneously, using the same protocols and losses as described in Guizilini et al. (2019). Our self-supervised objective loss consists of an appearance matching term ${ \mathcal { L } } _ { p }$ that is imposed between the synthesized $\bar { \hat { I } } _ { t }$ and original $I _ { t }$ target images, and a depth regularization term $\mathcal { L } _ { s }$ that ensures edge-aware smoothing in the depth estimates $\hat { D } _ { t }$ . The final objective loss is averaged per pixel, pyramid scale and image batch, and is defined as: + +$$ +\mathcal { L } ( I _ { t } , \hat { I } _ { t } ) = \mathcal { L } _ { p } ( I _ { t } , \hat { I } _ { t } ) + \lambda _ { 1 } \mathcal { L } _ { s } ( \hat { D } _ { t } ) +$$ + +where $\lambda _ { 1 }$ is a weighting coefficient between the photometric ${ \mathcal { L } } _ { p }$ and depth smoothness $\mathcal { L } _ { s }$ loss terms. Following Godard et al. (2017) and Zhou et al. (2017), the similarity between synthesized $\hat { I } _ { t }$ and original $I _ { t }$ target images is estimated using a Structural Similarity (SSIM) term (Wang et al., 2004) combined with an L1 loss term, inducing the following overall photometric loss: + +$$ +\mathcal { L } _ { p } ( I _ { t } , \hat { I } _ { t } ) = \alpha \frac { 1 - \mathrm { S S I M } ( I _ { t } , \hat { I } _ { t } ) } { 2 } + ( 1 - \alpha ) \parallel I _ { t } - \hat { I } _ { t } \parallel +$$ + +In order to regularize the depth in low gradient regions, we incorporate an edge-aware term similar to Godard et al. (2017). This loss is weighted for each of the pyramid levels, decaying by a factor of 2 on each downsampling, starting with a weight of 1 for the $0 ^ { \mathrm { { i } \mathrm { { \bar { h } } } } }$ pyramid level. + +$$ +\mathcal { L } _ { s } ( \hat { D } _ { t } ) = | \delta _ { x } \hat { D } _ { t } | e ^ { - | \delta _ { x } I _ { t } | } + | \delta _ { y } \hat { D } _ { t } | e ^ { - | \delta _ { y } I _ { t } | } +$$ + +We also incorporate some of the insights introduced in Godard et al. (2018), namely auto-masking, minimum reprojection error, and inverse depth map upsampling to further improve depth estimation performance in our self-supervised monocular setting. + +# 3.2 DEPTH AND POSE NETWORKS + +Our baseline depth and pose networks are based on the PackNet architecture introduced by Guizilini et al. (2019), which proposes novel packing and unpacking blocks to respectively downsample and upsample feature maps during the encoding and decoding stages. This network was selected due to its state-of-the-art performance in the task of self-supervised monocular depth estimation, so we can analyze if our proposed architecture is capable of further improving the current state-of-the-art. However, there are no restrictions as to which models our proposed semantically-guided architecture can be applied to, and in Section 5.4 we study its application to different depth networks. + +# 4 SEMANTICALLY-GUIDED GEOMETRIC REPRESENTATION LEARNING + +In this section, we describe our method to inject semantic information into a self-supervised depth network via its augmentation with semantic-aware convolutions. Our proposed architecture is depicted in Figure 2 and is composed of two networks: a primary one, responsible for the generation of depth predictions $\hat { D } = f _ { D } ( I ( p ) )$ ; and a secondary one, capable of producing semantic predictions. Only the first network is optimized during self-supervised learning; the semantic network is initialized from pretrained weights and is not further optimized. This is in contrast to the common practice of supervised (ImageNet) pretraining of depth encoders (Godard et al., 2018; Casser et al., 2019; Zou et al., 2018): here instead of fine-tuning from pre-trained weights, we preserve these secondary weights to guide the feature learning process of the primary depth network. Our approach also differs from learning without forgetting (Li & Hoiem, 2017) by leveraging fixed intermediate feature representations as a way to maintain consistent semantic guidance throughout training. + +![](images/768e7a4db114cab117418b58a69ddf5a06d6900d9c4ab615ba74d01856d69ab0.jpg) +Figure 2: Diagram of our proposed architecture for self-supervised monocular depth estimation with semantically-guided feature learning. The semantic network is fixed and initialized from pretrained weights, while the depth network is trained end-to-end in a self-supervised way, including pixel-adaptive convolutions (Guidance) on its decoder to learn semantic-dependent geometric features. + +# 4.1 SEMANTICALLY-GUIDED DEPTH FEATURES + +We leverage the information from the pretrained semantic network in the depth network through the use of pixel-adaptive convolutions (Su et al., 2019). They were recently proposed to address some limitations inherent to the standard convolution operation, namely its translation invariance making it content-agnostic. While this significantly reduces the number of parameters of the resulting network, this might also lead to sub-optimal solutions under certain conditions important for geometric representation learning. For example, spatially-shared filters globally average the loss gradients over the entire image, forcing the network to learn weights that cannot leverage location-specific information beyond their limited receptive fields. Content-agnostic filters are unable to distinguish between different pixels that are visually similar (i.e. dark areas due to shadows or black objects) or generalize to similar objects that are visually different (i.e. cars with varying colors). In this work, we use pixel-adaptive convolutions to produce semantic-aware depth features, where the fixed information encoded in the semantic network is used to disambiguate geometric representations for the generation of multi-level depth features. + +As shown in Figure 2, we extract multi-level feature maps from the semantic network. For each feature map, we apply a $3 \times 3$ and a $1 \times 1$ convolutional layer followed by Group Normalization (Wu & He, 2018) and ELU non-linearities (Clevert et al., 2016). These processed semantic feature maps are then used as guidance on their respective pixel-adaptive convolutional layers, following the formulation proposed in $\mathrm { S u }$ et al. (2019): + +$$ +\mathbf { v } _ { i } ^ { \prime } = \sum _ { j \in \Omega ( i ) } K ( \mathbf { f } _ { i } , \mathbf { f } _ { j } ) \mathbf { W } [ \mathbf { p } _ { i } - \mathbf { p } _ { j } ] \mathbf { v } _ { j } + \mathbf { b } +$$ + +In the above equation, $\mathbf { f } \in \mathcal { R } ^ { D }$ are processed features from the semantic network that will serve to guide the pixel-adaptive convolutions from the depth network, $\mathbf { p } = ( x , y ) ^ { T }$ are pixel coordinates, with $[ { \bf p } _ { i } - { \bf p } _ { j } ]$ denoting 2D spatial offsets between pixels, $\mathbf { W } _ { k \times k }$ are convolutional weights with kernel size $k , \check { \Omega } _ { i }$ defines a $k \times k$ convolutional window around $i$ , $\mathbf { v }$ is the input signal to be convolved, and $\mathbf { b } \in \mathcal { R } ^ { 1 }$ is a bias term. $K$ is the kernel used to calculate the correlation between guiding features, here chosen to be the standard Gaussian kernel: + +$$ +K ( \mathbf { f } _ { i } , \mathbf { f } _ { j } ) = \exp \left( - \frac { 1 } { 2 } ( \mathbf { f } _ { i } - \mathbf { f } _ { j } ) ^ { T } \Sigma _ { i j } ^ { - 1 } ( \mathbf { f } _ { i } - \mathbf { f } _ { j } ) \right) +$$ + +where $\Sigma _ { i j }$ is the covariance matrix between features $\mathbf { f } _ { i }$ and $\mathbf { f } _ { j }$ , here chosen to be a diagonal matrix $\sigma ^ { 2 } \cdot I _ { D }$ , with $\sigma$ as an extra learnable parameter for each convolutional filter. These kernel evaluations can be seen as a secondary set of weights applied to the standard convolutional weights, changing their impact on the resulting depth features depending on the content stored in the guiding semantic features. For example, the information contained in depth features pertaining to the sky should not be used to generate depth features describing a pedestrian, and this behavior is now captured as a larger distance between their corresponding semantic features, which in turn produces smaller weights for that particular convolutional filter. Note that the standard convolution can be considered a special case of the pixel-adaptive convolution, where $\forall ~ i j , K ( \mathbf { f } _ { i } , \mathbf { f } _ { j } ) ~ = ~ 1$ . + +![](images/c1133bd34f68068e6cc07f5e3946ece1ab608146cce40ed0d3a8c96d349ad49c.jpg) +Figure 3: Qualitative results of our proposed two-stage training to address the infinite depth problem. Top images were obtained evaluating the first-stage depth network, and bottom images were obtained using the second-stage depth network, trained with a filtered dataset. + +# 4.2 SEMANTIC GUIDANCE NETWORK + +As the secondary network used to provide semantic guidance for the generation of depth features, we use a Feature Pyramid Network (FPN) with ResNet backbone (Lin et al., 2017). This architecture has been shown to be efficient for both semantic and instance-level predictions towards panoptic segmentation (Kirillov et al., 2019; Li et al., 2018; Xiong et al., 2019; Porzi et al., 2019). While our proposed semantically-guided architecture is not restricted to any particular network, we chose this particular implementation to facilitate the future exploration of different sources for guidance information. Architectural details follow the protocols described in Li et al. (2018), and unless mentioned otherwise the same pretrained model was used in all reported experiments. The semantic network is assumed fixed, pretrained on a held out dataset different than the raw data used for selfsupervised learning, i.e. we do not require any semantic ground truth on the target dataset. + +# 4.3 TWO-STAGE TRAINING + +One well-known limitation of the self-supervised photometric loss is its inability to model dynamic objects, due to a static world assumption that only accounts for camera ego-motion (Godard et al., 2018; Casser et al., 2019). A resulting common failure mode is the infinite depth problem, which is caused by the presence of objects moving at the same speed as the camera. This typically causes distinct holes in the predicted depth maps, with arbitrarily large values where these objects should be. This severely hinders the applicability of such models in real-world applications, particularly for automated driving, where the ability to detect and properly model dynamic objects is crucial. Moreover, this limitation may be further accentuated in our proposed semantically-guided architecture, as the infinite depth problem occurs mostly on dynamic categories (i.e. cars and motorcycles) and the semantic-aware features may reinforce this bias. + +We propose a simple and efficient two-stage training method to detect and remove this bias from the training set. In the first stage, we learn a standard depth network on all available training data. This network, exhibiting the infinite depth problem, is then used to resample the dataset by automatically filtering out sequences with infinite depth predictions that violate a basic geometric prior. We indeed find that depth predictions for pixels corresponding to the nearby ground plane are generally robust. This enables getting a coarse estimate of the ground plane using RANSAC and detecting the number of pixels whose predicted depth projects them significantly below the ground. If that number is above a threshold, then the corresponding image is subsequently ignored (we found a conservative threshold of 10 to work well in all our experiments, filtering out roughly $5 \%$ of the KITTI training dataset). During the second stage, we retrain the network on the subsampled dataset (from scratch to avoid the previous local optimum). As this subsampled dataset is de-biased, the network learns better depth estimates on dynamic objects. This process can be repeated, but we find that two stages are enough to remove any traces of infinite depth in our experiments, as shown in Figure 3. + +# 5 EXPERIMENTAL RESULTS + +# 5.1 DATASETS + +We use the standard KITTI benchmark (Geiger et al., 2013) for self-supervised training and evaluation. More specifically, we adopt the training, validation and test splits used in Eigen et al. (2014) with the pre-processing from Zhou et al. (2017) to remove static frames, which is more suitable for + +
MethodSuperv.Lower is BetterHigher is Better
Abs RelSq RelRMSERMSEtogδ<1.25δ<1.25²δ<1.253
Garg et al. (2016)M0.1521.2265.8490.2460.7840.9210.967
Zou et al. (2018)M0.1501.1245.5070.2230.8060.9330.973
Godard et al. (2017)M0.1411.1865.6770.2380.8090.9280.969
Zhan et al. (2018)M0.1351.1325.5850.2290.8200.9330.971
Godard et al. (2018) (R18)M0.1150.9034.8630.1930.8770.9590.981
Godard et al. (2018) (R50)M0.1120.8514.7540.1900.8810.9600.981
Guizilini et al. (2019) (MR)M0.1080.7274.4260.1840.8850.9630.983
Guizilini et al. (2019) (HR)M0.1040.7584.3860.1820.8950.9640.982
Casser et al. (2019)S+Inst0.1411.0255.2900.2150.8160.9450.979
Chen et al. (2019)S+Sem0.1180.9055.0960.2110.8390.9450.977
Ochs et al. (2019)D+Sem0.1160.9454.9160.2080.8610.9520.968
Ours (MR)M+Sem0.1020.6984.3810.1780.8960.9640.984
Ours (HR)M+Sem0.1000.7614.2700.1750.9020.9650.982
+ +Table 1: Quantitative performance comparison of our proposed architecture on KITTI for depths up to $8 0 \mathrm { m }$ . $M$ refers to methods that train using monocular images, S refers to methods that train using stereo pairs, $D$ refers to methods that use ground-truth depth supervision, Sem refers to methods that include semantic information, and Inst refers to methods that include semantic and instance information. $M R$ indicates $6 4 0 \times 1 9 2$ input images, and $H R$ indicates $1 2 8 0 \mathrm { ~ x ~ } 3 8 4$ input images. Our proposed architecture is able to further improve the current state of the art in self-supervised monocular depth estimation, and outperforms other methods that exploit semantic information (including ground truth labels) by a substantial margin. + +monocular self-supervised learning. This results in 39810 images for training, 4424 for validation, and 697 for evaluation. Following common practice, we pretrain our depth and pose networks on the CityScapes dataset (Cordts et al., 2016), consisting of 88250 unlabeled images. Unless noted otherwise, input images are downsampled to $6 4 0 \times 1 9 2$ resolution and output inverse depth maps are upsampled to full resolution using bilinear interpolation. Our fixed semantic segmentation network is pretrained on Cityscapes, achieving a mIoU of $7 5 \%$ on the validation set. + +# 5.2 IMPLEMENTATION DETAILS + +We implement our models with PyTorch (Paszke et al., 2017) and follow the same training protocols of Guizilini et al. (2019) when optimizing our depth and pose networks. The initial training stage is conducted on the CityScapes dataset for 50 epochs, with a batch size of 4 per GPU and initial depth and pose learning rates of $2 \cdot 1 0 ^ { - 4 }$ and $5 \cdot { \bar { 1 } } 0 ^ { - 4 }$ respectively, that are halved every 20 epochs. Afterwards, the depth and pose networks are fine-tuned on KITTI for 30 epochs, with the same parameters and halving the learning rates after every 12 epochs. This fine-tuning stage includes the proposed architecture, where information from the fixed semantic network, pretrained separately, is used to directly guide the generation of depth features. There is no direct supervision at any stage during depth training, all semantic information is derived from the fixed secondary network. + +When pretraining the semantic segmentation network, we use a ResNet-50 backbone with Imagenet (Deng et al., 2009) pretrained weights and optimize the network for $4 8 k$ iterations on the CityScapes dataset with a learning rate of 0.01, momentum of 0.9, weight decay of $1 0 ^ { - 4 }$ , and a batch size of 1 per GPU. Random scaling between (0.7, 1.3), random horizontal flipping, and a crop size of $1 0 0 0 \times 2 0 0 0$ are used for data augmentation. We decay the learning rate by a factor of 10 at iterations $3 6 k$ and $4 4 k$ . Once training is complete, the semantic segmentation network is fixed and becomes the only source of semantic information when fine-tuning the depth and pose networks on KITTI. + +# 5.3 DEPTH ESTIMATION PERFORMANCE + +Our depth estimation results are summarized in Table 1, where we compare our proposed architecture with other published works. From these results we can see that the introduction of semanticallyguided geometric representation learning further improves upon the current state of the art in selfsupervised monocular depth estimation from Guizilini et al. (2019), which served as our baseline. Our approach also outperforms other methods that leverage semantic information by a substantial margin, even those using ground-truth KITTI semantic segmentation and depth labels during train + +
NetworkSEMTSTLower is BetterHigher is Better δ <1.25 δ<1.252 δ< 1.253Class-Avg. Abs Rel
Abs RelSq Rel RMSE RMSElog
ResNet-180.120 0.1170.896 0.8544.869 4.7140.198 0.1910.868 0.957 0.8730.981 0.963 0.9810.149 0.139
ResNet-500.117 0.1130.900 0.8314.826 4.6630.196 0.1890.873 0.967 0.878 0.9710.980 0.9830.144 0.136
PackNet0.108 0.103 0.1020.727 0.710 0.6984.426 4.301 4.3810.184 0.179 0.1780.885 0.963 0.895 0.964 0.896 0.9630.983 0.984 0.9840.132 0.121 0.117
+ +Table 2: Ablative analysis of our semantic guidance (SEM) and two-stage-training (TST) contributions. The last column indicates class-average Abs. Rel. obtained by averaging all class-specific depth errors in Figure 4, while other columns indicate pixel-average metrics. + +ing (Ochs et al., 2019). Furthermore, in Figure 5 we also present qualitative results showing the improvements in depth estimation generated by our proposed framework, compared to our baseline. Note how our semantically-guided architecture produces sharper boundaries and better object delineation, especially in structures further away or not clearly distinguishable in the input image. + +# 5.4 ABLATIVE ANALYSIS + +# 5.4.1 DIFFERENT DEPTH NETWORKS + +To better evaluate our main contribution, we provide an ablative analysis showing how it generalizes to different depth networks. To this end, we consider two variations of the widely used ResNet architecture as the encoder for our depth network: ResNet-18 and ResNet-50 (the same pretrained semantic network was used in all experiments). Depth estimation results considering these variations are shown in Table 2, where we can see that our proposed semantically-guided architecture is able to consistently improve the performance of different depth networks, for all considered metrics. + +# 5.4.2 CLASS-SPECIFIC DEPTH PERFORMANCE + +To further showcase the benefits of our semantically-guided architecture, we also provide classspecific evaluation metrics, as shown in Figure 4. As we do not have ground-truth semantic segmentation for these images, we use the prediction of the semantic network to bin pixels per predicted category, and evaluate only on those pixels. From these results we can see that our proposed architecture consistently improves depth performance for pixels across all predicted classes, especially those containing fine-grained structures and sharp boundaries, e.g. poles and traffic signs. + +![](images/029bba1944c05b59fd31cd1b470c4d6e1b61b263ba0128d9dbf7c9034beaab1f.jpg) +Figure 4: Class-specific depth evaluation for our proposed architecture (blue), relative to our baseline (red). The rightmost column indicates class-average depth metrics, obtained by averaging all individual classes. The introduction of semantically-guided features, in conjunction with our proposed two-stage training methodology to address the infinite depth problem, consistently improved depth results for all considered classes (lower is better). + +![](images/8b4a389f1dbad0e331cbee9e393af3ad825e78c305d86b9334b90a768bca6149.jpg) +Figure 5: Qualitative results of our proposed architecture. The left, middle, and right columns show respectively input images, baseline predicted depth maps (Guizilini et al., 2019), and the depths maps obtained using our proposed architecture. Our semantic-aware depth network predicts sharper boundaries and fine-grained details on distant objects. The dotted lines indicate class-average errors, obtained by averaging all the class-specific depth errors. + +We also measure the impact of our two-stage training process, which is expected to address the infinite depth problem in dynamic objects. Although we find the pixel-average difference in performance to not be significant (see Table 2), there is a significant improvement in class-average depth estimation, from 0.121 to 0.117 Abs-Rel. This is because the number of pixels affected by the infinite depth problem is vastly smaller than the total number of pixels. However, when considering class-average depth evaluation, the improvement over classes such as cars (0.200 to 0.177 Abs-Rel) and motorcycles (0.091 to 0.069) becomes statistically significant. This further exemplifies the importance of fine-grained metrics in depth evaluation, so these underlying behaviors can be properly observed and accounted for in the development of new techniques. + +# 6 CONCLUSION + +This paper introduces a novel architecture for self-supervised monocular depth estimation that leverages semantic information from a fixed pretrained network to guide the generation of multi-level depth features via pixel-adaptive convolutions. Our monodepth network learns semantic-aware geometric representations that can disambiguate photometric ambiguities in a self-supervised learning structure-from-motion context. Furthermore, we introduce a two-stage training process that resamples training data to overcome a common bias on dynamic objects resulting in predicting them at infinite depths. Our experiments on challenging real-world data shows that our proposed architecture consistently improves the performance of different monodepth architectures, thus establishing a new state of the art in self-supervised monocular depth estimation. Future directions of research include leveraging other sources of guidance (i.e. instance masks, optical flow, surface normals), as well as avenues for self-supervised fine-tuning of the semantic network. + +# REFERENCES + +Min Bai, Wenjie Luo, Kaustav Kundu, and Raquel Urtasun. Exploiting semantic information and deep matching for optical flow. In ECCV, 2016. 2 + +Holger Caesar, Varun Bankiti, Alex H. Lang, Sourabh Vora, Venice Erin Liong, Qiang Xu, Anush Krishnan, Yu Pan, Giancarlo Baldan, and Oscar Beijbom. nuscenes: A multimodal dataset for autonomous driving. CoRR, 2019. 13, 14 + +Vincent Casser, Soeren Pirk, Reza Mahjourian, and Anelia Angelova. Depth prediction without the sensors: Leveraging structure for unsupervised learning from monocular videos. AAAI, 2019. 2, 3, 5, 6 + +Po-Yi Chen, Alexander H. Liu, Yen-Cheng Liu, and Yu-Chiang Frank Wang. Towards scene understanding: Unsupervised monocular depth estimation with semantic-aware representation. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR), June 2019. 1, 2, 6 + +Djork-Arne Clevert, Thomas Unterthiner, and Sepp Hochreiter. Fast and accurate deep network ´ learning by exponential linear units (elus). In ICLR, 2016. 4 + +Marius Cordts, Mohamed Omran, Sebastian Ramos, Timo Rehfeld, Markus Enzweiler, Rodrigo Benenson, Uwe Franke, Stefan Roth, and Bernt Schiele. The cityscapes dataset for semantic urban scene understanding. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 3213–3223, 2016. 6, 12 + +Jia Deng, Wei Dong, Richard Socher, Li jia Li, Kai Li, and Li Fei-fei. Imagenet: A large-scale hierarchical image database. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, 2009. 6, 12 + +David Eigen, Christian Puhrsch, and Rob Fergus. Depth map prediction from a single image using a multi-scale deep network. In Advances in neural information processing systems, 2014. 1, 2, 5 + +Huan Fu, Mingming Gong, Chaohui Wang, Kayhan Batmanghelich, and Dacheng Tao. Deep ordinal regression network for monocular depth estimation. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 2002–2011, 2018. 2 + +Ravi Garg, Vijay Kumar BG, Gustavo Carneiro, and Ian Reid. Unsupervised cnn for single view depth estimation: Geometry to the rescue. In European Conference on Computer Vision, pp. 740–756. Springer, 2016. 2, 6 + +Andreas Geiger, Philip Lenz, Christoph Stiller, and Raquel Urtasun. Vision meets robotics: The kitti dataset. The International Journal of Robotics Research, 32(11):1231–1237, 2013. 1, 5 + +Clement Godard, Oisin Mac Aodha, and Gabriel J Brostow. Unsupervised monocular depth estima- ´ tion with left-right consistency. In CVPR, volume 2, pp. 7, 2017. 2, 3, 6 + +Clement Godard, Oisin Mac Aodha, Michael Firman, and Gabriel J. Brostow. Digging into self-´ supervised monocular depth prediction. arXiv:1806.01260, 2018. 3, 5, 6, 14 + +Vitor Guizilini, Sudeep Pillai, Rares Ambrus, and Adrien Gaidon. Packnet-sfm: 3d packing for self-supervised monocular depth estimation. arXiv preprint arXiv:1905.02693, 2019. 1, 2, 3, 6, 8, 14 + +Fatma Guney and Andreas Geiger. Displets: Resolving stereo ambiguities using object knowledge.¨ In Conference on Computer Vision and Pattern Recognition (CVPR), 2015. 2 + +Xiaoyang Guo, Hongsheng Li, Shuai Yi, Jimmy Ren, and Xiaogang Wang. Learning monocular depth by distilling cross-domain stereo networks. In Proceedings of the European Conference on Computer Vision (ECCV), pp. 484–500, 2018. 1 + +Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 770–778, 2016. 2 + +Max Jaderberg, Karen Simonyan, Andrew Zisserman, et al. Spatial transformer networks. In Advances in neural information processing systems, pp. 2017–2025, 2015. 2 + +Alex Kendall, Yarin Gal, and Roberto Cipolla. Multi-task learning using uncertainty to weigh losses for scene geometry and semantics. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 7482–7491, 2018. 1 + +Alexander Kirillov, Ross Girshick, Kaiming He, and Piotr Dollar. Panoptic feature pyramid net- ´ works. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 6399–6408, 2019. 5 + +Maria Klodt and Andrea Vedaldi. Supervising the new with the old: Learning sfm from sfm. In European Conference on Computer Vision, pp. 713–728. Springer, 2018. 2 + +Jae-Han Lee, Minhyeok Heo, Kyung-Rae Kim, and Chang-Su Kim. Single-image depth estimation based on fourier domain analysis. In International Conference on Computer Vision and Pattern Recognition (CVPR), pp. 330–339, 2018. 2 + +Kuan-Hui Lee, German Ros, Jie Li, and Adrien Gaidon. Spigan: Privileged adversarial learning from simulation. In ICLR, 2019. 1 + +Bo Li, Chunhua Shen, Yuchao Dai, Anton Van, and Mingyi He. Depth and surface normal estimation from monocular images using regression on deep features and hierarchical crfs. In International Conference on Computer Vision and Pattern Recognition (CVPR), pp. 1119–1127, 2015. 2 + +Jie Li, Allan Raventos, Arjun Bhargava, Takaaki Tagawa, and Adrien Gaidon. Learning to fuse things and stuff. arXiv preprint arXiv:1812.01192, 2018. 5 + +Zhizhong Li and Derek Hoiem. Learning without forgetting. IEEE TPAMI, 40(12):2935–2947, 2017. 3 + +Tsung-Yi Lin, Piotr Dollar, Ross Girshick, Kaiming He, Bharath Hariharan, and Serge Belongie.´ Feature pyramid networks for object detection. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 2117–2125, 2017. 5 + +Reza Mahjourian, Martin Wicke, and Anelia Angelova. Unsupervised learning of depth and egomotion from monocular video using 3d geometric constraints. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 5667–5675, 2018. 2 + +Fabian Manhardt, Wadim Kehl, and Adrien Gaidon. Roi-10d: Monocular lifting of 2d detection to 6d pose and metric shape. International Conference on Computer Vision and Pattern Recognition (CVPR), 2019. 1 + +Jeff Michels, Ashutosh Saxena, and Andrew Y Ng. High speed obstacle avoidance using monocular vision and reinforcement learning. In Proceedings of the 22nd international conference on Machine learning, pp. 593–600. ACM, 2005. 1 + +Matthias Ochs, Adrian Kretz, and Rudolf Mester. Sdnet: Semantically guided depth estimation network. In arXiv:1907.10659, 2019. 1, 2, 6, 7 + +Adam Paszke, Sam Gross, Soumith Chintala, Gregory Chanan, Edward Yang, Zachary DeVito, Zeming Lin, Alban Desmaison, Luca Antiga, and Adam Lerer. Automatic differentiation in pytorch. In NIPS-W, 2017. 6 + +Sudeep Pillai, Rares Ambrus, and Adrien Gaidon. Superdepth: Self-supervised, super-resolved monocular depth estimation. In Proceedings of the IEEE International Conference on Robotics and Automation (ICRA), 2019. 1 + +Lorenzo Porzi, Samuel Rota Bulo, Aleksander Colovic, and Peter Kontschieder. Seamless scene segmentation. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 8277–8286, 2019. 5 + +Xiaojuan Qi, Renjie Liao, Zhengzhe Liu, Raquel Urtasun, and Jiaya Jia. Geonet: Geometric neural network for joint depth and surface normal estimation. In International Conference on Computer Vision and Pattern Recognition (CVPR), pp. 283–291, 2018. 2 + +Hang Su, Varun Jampani, Deqing Sun, Orazio Gallo, Erik Learned-Miller, and Jan Kautz. Pixeladaptive convolutional neural networks. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2019. 1, 2, 4 + +Benjamin Ummenhofer, Huizhong Zhou, Jonas Uhrig, Nikolaus Mayer, Eddy Ilg, Alexey Dosovitskiy, and Thomas Brox. Demon: Depth and motion network for learning monocular stereo. In IEEE Conference on computer vision and pattern recognition (CVPR), volume 5, pp. 6, 2017. 2 + +Chaoyang Wang, Jose Miguel Buenaposada, Rui Zhu, and Simon Lucey. Learning depth from ´ monocular videos using direct methods. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 2022–2030, 2018. 2 + +Zhou Wang, Alan C Bovik, Hamid R Sheikh, and Eero P Simoncelli. Image quality assessment: from error visibility to structural similarity. IEEE transactions on image processing, 2004. 2, 3 + +Yuxin Wu and Kaiming He. Group normalization. In Proceedings of the 15th European Conference on Computer Vision (ECCV), pp. 3–19, 2018. 4 + +Yuwen Xiong, Renjie Liao, Hengshuang Zhao, Rui Hu, Min Bai, Ersin Yumer, and Raquel Urtasun. Upsnet: A unified panoptic segmentation network. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 8818–8826, 2019. 5 + +Nan Yang, Rui Wang, Jorg St ¨ uckler, and Daniel Cremers. Deep virtual stereo odometry: Leveraging ¨ deep depth prediction for monocular direct sparse odometry. arXiv:1807.02570, 2018. 2 + +Zhenheng Yang, Peng Wang, Wei Xu, Liang Zhao, and Ramakant Nevatia. Unsupervised learning of geometry with edge-aware depth-normal consistency. arXiv preprint arXiv:1711.03665, 2017. 1 + +Zhichao Yin and Jianping Shi. Geonet: Unsupervised learning of dense depth, optical flow and camera pose. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), volume 2, 2018. 2 + +Huangying Zhan, Ravi Garg, Chamara Saroj Weerasekera, Kejie Li, Harsh Agarwal, and Ian Reid. Unsupervised learning of monocular depth estimation and visual odometry with deep feature reconstruction. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 340–349, 2018. 6 + +Tinghui Zhou, Matthew Brown, Noah Snavely, and David G Lowe. Unsupervised learning of depth and ego-motion from video. In CVPR, volume 2, pp. 7, 2017. 2, 3, 5 + +Yuliang Zou, Zelun Luo, and Jia-Bin Huang. Df-net: Unsupervised joint learning of depth and flow using cross-task consistency. In European Conference on Computer Vision, 2018. 1, 2, 3, 6 + +# A PRE-TRAINING THE SEMANTIC SEGMENTATION NETWORK + +The introduction of a semantic segmentation network to the depth estimation task increases the depth estimation performance, however it also increases model complexity (e.g. number of trainable parameters). To investigate that the increased performance for the depth estimation task is indeed due to the semantic features encoded in the secondary network, we perform an in-depth analysis (summarized in Table 3) where we explore the impact of pre-training the semantic segmentation network before it is used to guide the generation of depth features. From these results we can see that the presence of semantic information encoded in the secondary network indeed leads to an increase in performance, and that fine-tuning this secondary network for the speficic task of depth estimation actually decreases performance. + +In the first two rows an untrained semantic network is utilized, with only its encoder initialized from ImageNet (Deng et al., 2009) weights. Two different scenarios are explored: in the first one (D) only the depth network is fine-tuned in a self-supervised fashion, while in $\mathbf { D + S }$ both networks are fine-tuned together in the same way. As expected, using untrained features as guidance leads to significantly worse results, since there is no structure encoded in the secondary network and the primary network needs to learn to filter out all this spurious information. When both networks are fine-tuned simultaneously, results improve because now the added complexity from the secondary network can be leveraged for the task of depth estimation, however there is still no improvement over the baseline. + +Next, the semantic network was pre-trained on only half of the CityScapes (Cordts et al., 2016) dataset (samples chosen randomly), leading to a worse semantic segmentation performance (validation mIoU of around $7 0 \%$ vs. $\dot { 7 } 5 \%$ for the fully trained one). This partial pre-training stage was enough to enable the transfer of useful information between networks, leading to improvements over the baseline. Interestingly, fine-tuning both networks for the task of depth estimation actually hurt performance this time, which we attribute to forgetting the information contained in the secondary network, as both networks are optimized for the depth task. When the semantic network is pretrained with all of CityScapes (last two rows), these effects are magnified, with fine-tuning only the depth network leading to our best reported performance (Table 1) and fine-tuning both networks again leading to results similar to the baseline. + +Table 3: Analysis of the impact of pre-training the semantic segmentation network. On the PreTrain column, $I$ indicates ImageNet (Deng et al., 2009) pretraining and CS indicates CityScapes (Cordts et al., 2016) pretraining, with $1 / 2$ indicating the use of only half the dataset (samples chosen randomly). In the Fine-Tune column, $D$ indicates fine-tuning the depth network and $s$ indicates finetuning the semantic network (note that this is a self-supervised fine-tuning for the depth task, using the objective described in Section 3.1). + +
MethodPre-TrainFine-TuneLower is BetterHigher is Better
Abs RelSq RelRMSERMSElogδ <1.25 δ<1.252δ<1.253
BaselineD0.1080.7274.4260.1840.8850.9630.983
ProposedID+S0.1160.8474.7510.1920.8790.9600.981
ID0.1971.3236.1140.2650.7760.9180.966
CS (1/2)D+S0.1090.7374.3890.1850.8840.9620.982
CS (1/2)D0.1040.7164.3220.1800.8930.9640.984
CsD+S0.1070.7414.4070.1830.8830.9630.983
CsD0.1020.6984.3810.1780.8960.9640.984
+ +# B UNCERTAINTY AND GENERALIZATION TO DIFFERENT OBJECTS + +In a self-supervised setting, increasing the number of unlabeled videos used for depth training is expected to lead to an increasing specialization away from the domain in which the semantic network was pre-trained. This might result in harmful guidance if our method is not robust to this gap. However, our approach does not use semantic predictions directly, but rather the decoded features of the semantic network themselves, which represent general appearance information that should be more robust to this domain gap. To validate our hypothesis, we further explore the impact of erroneous semantic information in the performance of our proposed semantically-guided depth framework. In Figure 6 we present qualitative results highlighting situations in which our pretrained semantic network failed to generate correct semantic predictions for certain objects in the scene, and yet our proposed framework was still able to properly recover depth values for that portion of the environment. These exemplify possible scenarios for erroneous semantic prediction. + +• Imprecise boundaries: in the first row, we can see that the semantic segmentation network does not correctly detect the traffic sign, yet the semantically-guided depth network predicts its shape and depth accurately. +• Wrong classification: in the second row, the truck was mistakenly classified as partially “road” and “building”, however our semantically-guided depth network was still able to properly recover its overall shape with sharp delineation that was not available from its semantic contour. A similar scenario happens in the same image, with “fence” being partially labeled as “bicycle”. +• Missing ontology: there is no “trash can” class on the CityScapes ontology, however in the third row our semantically-guided depth network was able to correctly reconstruct such object even though it was classified as “fence”, similarly to its surroundings. +• Object Hallucination: in the fourth row, the contour of a “person” was erroneously introduced in the image and correctly removed by our semantically-guided framework. + +These examples are evidence that our proposed framework is able to reason over the uncertainty inherent to semantic classification, leveraging this information when accurate to achieve the results reported in this paper, but also discarding it if necessary to generate a better reconstruction according to the self-supervised photometric loss. + +![](images/1571107d15766292cb50733ff1a095273dd604cd102c3c0235ac0a84b6b5dd4e.jpg) +Figure 6: Examples of erroneous semantic predictions that still led to accurate depth predictions using our proposed semantically-guided depth framework. + +# C GENERALIZATION TO DIFFERENT DATASETS + +In the previous sections, we show that our proposed framework is robust to a degraded semantic network, both by pretraining the semantic network with fewer annotated labels (Appendix A) and also by providing evidence that the depth network is able to reason over erroneous predictions to still generate accurate reconstructions (Appendix B). We now go one step further and analyze how our proposed semantically-guided framework generalizes to a dataset that was used neither during pre-training nor for fine-tuning. To this end, we evaluate our KITTI depth model on the recently released NuScenes dataset (Caesar et al., 2019). The official NuScenes validation split is used, containing 6019 images from the front camera with ground-truth depth maps generated by LiDAR reprojection. Results presented in Table 4 provide additional evidence that our method indeed results in generalization improvements, even on significantly different data from different platforms + +and environments (Karlsruhe, Germany for KITTI vs Boston, USA and Singapore for NuScenes), outperforming the state of the art methods and our baseline (Guizilini et al., 2019). +Table 4: Generalization capability of different networks, trained on both KITTI and CityScapes datasets and evaluated on the NuScenes (Caesar et al., 2019) dataset. Our proposed semanticallyguided architecture is able to further improve upon the baseline from Guizilini et al. (2019), which only used unlabeled image sequences for self-supervised depth training. + +
MethodAbs RelSq RelRMSERMSElogδ<1.25δ<1.25²δ<1.253
Godard et al. (2018) (R18)0.2121.9187.9580.3230.6740.8980.954
Godard et al. (2018) (R50)0.2102.0178.1110.3280.6970.9030.960
Guizilini et al. (2019) (MR)0.1871.8527.6360.2890.7420.9170.961
Ours (MR)0.1811.5057.2370.2710.7650.9310.969
\ No newline at end of file diff --git a/parse/train/ByxT7TNFvH/ByxT7TNFvH_content_list.json b/parse/train/ByxT7TNFvH/ByxT7TNFvH_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..f49ada04c07a56264da135481feacf85253e7b30 --- /dev/null +++ b/parse/train/ByxT7TNFvH/ByxT7TNFvH_content_list.json @@ -0,0 +1,1495 @@ +[ + { + "type": "text", + "text": "SEMANTICALLY-GUIDED REPRESENTATION LEARNING FOR SELF-SUPERVISED MONOCULAR DEPTH ", + "text_level": 1, + "bbox": [ + 176, + 98, + 820, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Vitor Guizilini1 Rui Hou1,2 Jie Li1 Rares, Ambrus, 1 Adrien Gaidon1 ", + "bbox": [ + 241, + 167, + 759, + 185 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1Toyota Research Institute (TRI) {first.last}@tri.global ", + "bbox": [ + 259, + 189, + 472, + 218 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "2University of Michigan rayhou@umich.edu ", + "bbox": [ + 552, + 189, + 712, + 217 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 452, + 243, + 544, + 258 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Self-supervised learning is showing great promise for monocular depth estimation, using geometry as the only source of supervision. Depth networks are indeed capable of learning representations that relate visual appearance to 3D properties by implicitly leveraging category-level patterns. In this work we investigate how to leverage more directly this semantic structure to guide geometric representation learning, while remaining in the self-supervised regime. Instead of using semantic labels and proxy losses in a multi-task approach, we propose a new architecture leveraging fixed pretrained semantic segmentation networks to guide self-supervised representation learning via pixel-adaptive convolutions. Furthermore, we propose a two-stage training process to overcome a common semantic bias on dynamic objects via resampling. Our method improves upon the state of the art for self-supervised monocular depth prediction over all pixels, fine-grained details, and per semantic categories.† ", + "bbox": [ + 233, + 273, + 764, + 454 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 467, + 336, + 482 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Accurate depth estimation is a key problem in computer vision and robotics, as it is instrumental for perception, navigation, and planning. Although perceiving depth typically requires dedicated sensors (e.g., stereo rigs, LiDAR), learning to predict depth from monocular imagery can provide useful cues for a wide array of tasks (Michels et al., 2005; Kendall et al., 2018; Manhardt et al., 2019; Lee et al., 2019). Going beyond supervised learning from direct measurements (Eigen et al., 2014), self-supervised methods exploit geometry as supervision (Guo et al., 2018; Pillai et al., 2019; Zou et al., 2018; Yang et al., 2017), therefore having the potential to leverage large scale datasets of raw videos to outperform supervised methods (Guizilini et al., 2019). ", + "bbox": [ + 174, + 497, + 825, + 608 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Although depth from a single image is an ill-posed inverse problem, monocular depth networks are able to make accurate predictions by learning representations connecting the appearance of scenes and objects with their geometry in Euclidean 3D space. Due to perspective, there is indeed an equivariance relationship between the visual appearance of an object in 2D and its depth, when conditioned on the object’s category. For instance, a car 25 meters away appears smaller (on the image plane) than a car only 5 meters away but bigger than a truck 50 meters away. Current depth estimation methods either do not leverage this structure explicitly or rely on strong semantic supervision to jointly optimize geometric consistency and a semantic proxy task in a multi-task objective (Ochs et al., 2019; Chen et al., 2019), thus departing from the self-supervised paradigm. ", + "bbox": [ + 173, + 616, + 825, + 741 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In this paper, we explore how we can leverage semantic information to improve monocular depth prediction in a self-supervised way. Our main contribution is a novel architecture that uses a fixed pre-trained semantic segmentation network to guide geometric representation learning in a selfsupervised monocular depth network. In contrast to standard convolutional layers, our architecture uses pixel-adaptive convolutions (Su et al., 2019) to learn semantic-dependent representations that can better capture the aforementioned equivariance property. Leveraging semantics may nonetheless introduce category-specific biases. Our second contribution is a two-stage training process where we automatically detect the presence of a common bias on dynamic objects (projections at infinity) and resample the training set to de-bias it. Our method improves upon the state of the art in selfsupervised monocular depth estimation on the standard KITTI benchmark (Geiger et al., 2013), both on average over pixels, over classes, and for dynamic categories in particular. ", + "bbox": [ + 174, + 748, + 825, + 901 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/b09c90637e486163bce4d7333340755790cf27ff41a391d503abe5d3014d643d.jpg", + "image_caption": [ + "Figure 1: Example of a pointcloud generated using our proposed semantically-guided architecture, colored by RGB values from the input image and corresponding predicted semantic labels. " + ], + "image_footnote": [], + "bbox": [ + 178, + 99, + 820, + 238 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 306, + 344, + 323 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Since the seminal work of Eigen et al. (2014), substantial progress has been done to improve the accuracy of supervised depth estimation from monocular images, including the use of Conditional Random Fields (CRFs) (Li et al., 2015), joint optimization of surface normals (Qi et al., 2018), fusion of multiple depth maps (Lee et al., 2018), and ordinal classification (Fu et al., 2018). Consequently, as supervised techniques for depth estimation advanced rapidly, the availability of largescale depth labels became a bottleneck, especially for outdoor applications. Garg et al. (2016) and Godard et al. (2017) provided an alternative self-supervised strategy involving stereo cameras, where Spatial Transformer Networks (Jaderberg et al., 2015) can be used to geometrically warp, in a differentiable way, the right image into a synthesized left image, using the predicted depth from the left image. The photometric consistency loss between the resulting synthesized and original left images can then be minimized in an end-to-end manner using a Structural Similarity term (Wang et al., 2004) and additional depth regularization terms. Following Godard et al. (2017) and Ummenhofer et al. (2017), Zhou et al. (2017) generalized this to the purely monocular setting, where a depth and a pose networks are simultaneously learned from unlabeled monocular videos. Rapid progress in terms of architectures and objective functions (Yin & Shi, 2018; Mahjourian et al., 2018; Casser et al., 2019; Zou et al., 2018; Klodt & Vedaldi, 2018; Wang et al., 2018; Yang et al., 2018) have since then turned monocular depth estimation into one of the most successful applications of self-supervised learning, even outperforming supervised methods (Guizilini et al., 2019). ", + "bbox": [ + 174, + 339, + 825, + 590 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The introduction of semantic information to improve depth estimates has been explored in prior works, and can be broadly divided into two categories. The first one uses semantic (or instance) information to mask out or properly model dynamic portions of the image, which are not accounted for in the photometric loss calculation. Guney & Geiger ¨ (2015) leveraged object knowledge in a Markov Random Field (MRF) to resolve stereo ambiguities, while Bai et al. (2016) used a conjunction of instance-level segmentation and epipolar constraints to reduce uncertainty in optical flow estimation. Casser et al. (2019) used instance-level masks to estimate motion models for different objects in the environment, and account for their external motion in the resulting warped image. The second category attempts to learn both tasks in a single framework, and uses consistency losses to ensure that both are optimized simultaneously and regularize each other, so the information contained in one task can be transferred to improve the other. For instance, Ochs et al. (2019) estimated depth with an ordinal classification loss similar to the standard semantic classification loss, and used empirical weighting to combine them into a single loss for optimization. Similarly, Chen et al. (2019) used a unified conditional decoder that can generate either semantic or depth estimates, and both outputs are used to generate a series of losses also combined using empirical weighting to generate the final loss to be optimized. ", + "bbox": [ + 174, + 597, + 825, + 819 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Our approach focuses instead on representation learning, exploiting semantic features into the selfsupervised depth network by using a pretrained semantic segmentation network to guide the generation of depth features. This is done using pixel-adaptive convolutions, recently proposed in Su et al. (2019) and applied to tasks such as depth upsampling using RGB images for feature guidance. We show that different depth networks can be readily modified to leverage this semantic feature guidance, ranging from widely used ResNets (He et al., 2016) to the current state-of-the-art PackNet (Guizilini et al., 2019), with a consistent gain in performance across these architectures. ", + "bbox": [ + 174, + 827, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "3 SELF-SUPERVISED STRUCTURE-FROM-MOTION ", + "text_level": 1, + "bbox": [ + 174, + 102, + 604, + 118 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Our semantically-guided architecture is developed within a self-supervised monocular depth estimation setting, commonly known as structure-from-motion (SfM). Learning in a self-supervised structure-from-motion setting requires two networks: a monocular depth model $f _ { D } : I D$ , that outputs a depth prediction $\\hat { D } = f _ { D } ( I ( p ) )$ for every pixel $p$ in the target image $I$ ; and a monocular ego-motion estimator $f _ { \\mathbf { x } } : ( I _ { t } , I _ { S } ) \\to \\mathbf { x } _ { t \\to S }$ , that predicts the $6 \\mathrm { D o F }$ transformations for all $s \\in S$ given by $\\mathbf { x } _ { t s } = ( \\mathbf { \\Sigma } _ { \\mathbf { 0 } } ^ { \\mathbf { R } \\textbf { t } } ) \\in \\mathbf { S } \\mathbf { E } ( 3 )$ between the target image $I _ { t }$ and a set of temporal context source images $I _ { s } \\in I _ { S }$ . In all reported experiments we use $I _ { t - 1 }$ and $I _ { t + 1 }$ as source images. ", + "bbox": [ + 173, + 132, + 825, + 233 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.1 THE SELF-SUPERVISED OBJECTIVE LOSS ", + "text_level": 1, + "bbox": [ + 173, + 248, + 503, + 263 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We train the depth and pose networks simultaneously, using the same protocols and losses as described in Guizilini et al. (2019). Our self-supervised objective loss consists of an appearance matching term ${ \\mathcal { L } } _ { p }$ that is imposed between the synthesized $\\bar { \\hat { I } } _ { t }$ and original $I _ { t }$ target images, and a depth regularization term $\\mathcal { L } _ { s }$ that ensures edge-aware smoothing in the depth estimates $\\hat { D } _ { t }$ . The final objective loss is averaged per pixel, pyramid scale and image batch, and is defined as: ", + "bbox": [ + 173, + 273, + 825, + 349 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/761f2abe68dfa81b034447e742baf1132ea0810702d321c69fdb07bf013cb13a.jpg", + "text": "$$\n\\mathcal { L } ( I _ { t } , \\hat { I } _ { t } ) = \\mathcal { L } _ { p } ( I _ { t } , \\hat { I } _ { t } ) + \\lambda _ { 1 } \\mathcal { L } _ { s } ( \\hat { D } _ { t } )\n$$", + "text_format": "latex", + "bbox": [ + 379, + 352, + 619, + 371 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\lambda _ { 1 }$ is a weighting coefficient between the photometric ${ \\mathcal { L } } _ { p }$ and depth smoothness $\\mathcal { L } _ { s }$ loss terms. Following Godard et al. (2017) and Zhou et al. (2017), the similarity between synthesized $\\hat { I } _ { t }$ and original $I _ { t }$ target images is estimated using a Structural Similarity (SSIM) term (Wang et al., 2004) combined with an L1 loss term, inducing the following overall photometric loss: ", + "bbox": [ + 173, + 373, + 825, + 433 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/f2a66c686ee12d86d751182aa0618de9112625ef825ac1c804f306732f83ea01.jpg", + "text": "$$\n\\mathcal { L } _ { p } ( I _ { t } , \\hat { I } _ { t } ) = \\alpha \\frac { 1 - \\mathrm { S S I M } ( I _ { t } , \\hat { I } _ { t } ) } { 2 } + ( 1 - \\alpha ) \\parallel I _ { t } - \\hat { I } _ { t } \\parallel\n$$", + "text_format": "latex", + "bbox": [ + 320, + 435, + 678, + 468 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In order to regularize the depth in low gradient regions, we incorporate an edge-aware term similar to Godard et al. (2017). This loss is weighted for each of the pyramid levels, decaying by a factor of 2 on each downsampling, starting with a weight of 1 for the $0 ^ { \\mathrm { { i } \\mathrm { { \\bar { h } } } } }$ pyramid level. ", + "bbox": [ + 174, + 469, + 825, + 512 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/bdd6a57a38eb218b5f7baba4a91ebe102970a1a99333a6272f6df20bd96d94e2.jpg", + "text": "$$\n\\mathcal { L } _ { s } ( \\hat { D } _ { t } ) = | \\delta _ { x } \\hat { D } _ { t } | e ^ { - | \\delta _ { x } I _ { t } | } + | \\delta _ { y } \\hat { D } _ { t } | e ^ { - | \\delta _ { y } I _ { t } | }\n$$", + "text_format": "latex", + "bbox": [ + 356, + 515, + 640, + 535 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We also incorporate some of the insights introduced in Godard et al. (2018), namely auto-masking, minimum reprojection error, and inverse depth map upsampling to further improve depth estimation performance in our self-supervised monocular setting. ", + "bbox": [ + 174, + 536, + 825, + 579 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.2 DEPTH AND POSE NETWORKS ", + "text_level": 1, + "bbox": [ + 176, + 594, + 423, + 609 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Our baseline depth and pose networks are based on the PackNet architecture introduced by Guizilini et al. (2019), which proposes novel packing and unpacking blocks to respectively downsample and upsample feature maps during the encoding and decoding stages. This network was selected due to its state-of-the-art performance in the task of self-supervised monocular depth estimation, so we can analyze if our proposed architecture is capable of further improving the current state-of-the-art. However, there are no restrictions as to which models our proposed semantically-guided architecture can be applied to, and in Section 5.4 we study its application to different depth networks. ", + "bbox": [ + 173, + 619, + 826, + 719 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "4 SEMANTICALLY-GUIDED GEOMETRIC REPRESENTATION LEARNING ", + "text_level": 1, + "bbox": [ + 171, + 737, + 769, + 755 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In this section, we describe our method to inject semantic information into a self-supervised depth network via its augmentation with semantic-aware convolutions. Our proposed architecture is depicted in Figure 2 and is composed of two networks: a primary one, responsible for the generation of depth predictions $\\hat { D } = f _ { D } ( I ( p ) )$ ; and a secondary one, capable of producing semantic predictions. Only the first network is optimized during self-supervised learning; the semantic network is initialized from pretrained weights and is not further optimized. This is in contrast to the common practice of supervised (ImageNet) pretraining of depth encoders (Godard et al., 2018; Casser et al., 2019; Zou et al., 2018): here instead of fine-tuning from pre-trained weights, we preserve these secondary weights to guide the feature learning process of the primary depth network. Our approach also differs from learning without forgetting (Li & Hoiem, 2017) by leveraging fixed intermediate feature representations as a way to maintain consistent semantic guidance throughout training. ", + "bbox": [ + 173, + 767, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "image", + "img_path": "images/768e7a4db114cab117418b58a69ddf5a06d6900d9c4ab615ba74d01856d69ab0.jpg", + "image_caption": [ + "Figure 2: Diagram of our proposed architecture for self-supervised monocular depth estimation with semantically-guided feature learning. The semantic network is fixed and initialized from pretrained weights, while the depth network is trained end-to-end in a self-supervised way, including pixel-adaptive convolutions (Guidance) on its decoder to learn semantic-dependent geometric features. " + ], + "image_footnote": [], + "bbox": [ + 205, + 92, + 790, + 251 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4.1 SEMANTICALLY-GUIDED DEPTH FEATURES ", + "text_level": 1, + "bbox": [ + 174, + 347, + 517, + 361 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We leverage the information from the pretrained semantic network in the depth network through the use of pixel-adaptive convolutions (Su et al., 2019). They were recently proposed to address some limitations inherent to the standard convolution operation, namely its translation invariance making it content-agnostic. While this significantly reduces the number of parameters of the resulting network, this might also lead to sub-optimal solutions under certain conditions important for geometric representation learning. For example, spatially-shared filters globally average the loss gradients over the entire image, forcing the network to learn weights that cannot leverage location-specific information beyond their limited receptive fields. Content-agnostic filters are unable to distinguish between different pixels that are visually similar (i.e. dark areas due to shadows or black objects) or generalize to similar objects that are visually different (i.e. cars with varying colors). In this work, we use pixel-adaptive convolutions to produce semantic-aware depth features, where the fixed information encoded in the semantic network is used to disambiguate geometric representations for the generation of multi-level depth features. ", + "bbox": [ + 174, + 372, + 825, + 553 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "As shown in Figure 2, we extract multi-level feature maps from the semantic network. For each feature map, we apply a $3 \\times 3$ and a $1 \\times 1$ convolutional layer followed by Group Normalization (Wu & He, 2018) and ELU non-linearities (Clevert et al., 2016). These processed semantic feature maps are then used as guidance on their respective pixel-adaptive convolutional layers, following the formulation proposed in $\\mathrm { S u }$ et al. (2019): ", + "bbox": [ + 173, + 559, + 825, + 630 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/f3fef7cb20207b1c3ef03f527c9aea2361576831a29f017ee6708df9c24376ac.jpg", + "text": "$$\n\\mathbf { v } _ { i } ^ { \\prime } = \\sum _ { j \\in \\Omega ( i ) } K ( \\mathbf { f } _ { i } , \\mathbf { f } _ { j } ) \\mathbf { W } [ \\mathbf { p } _ { i } - \\mathbf { p } _ { j } ] \\mathbf { v } _ { j } + \\mathbf { b }\n$$", + "text_format": "latex", + "bbox": [ + 369, + 633, + 629, + 670 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In the above equation, $\\mathbf { f } \\in \\mathcal { R } ^ { D }$ are processed features from the semantic network that will serve to guide the pixel-adaptive convolutions from the depth network, $\\mathbf { p } = ( x , y ) ^ { T }$ are pixel coordinates, with $[ { \\bf p } _ { i } - { \\bf p } _ { j } ]$ denoting 2D spatial offsets between pixels, $\\mathbf { W } _ { k \\times k }$ are convolutional weights with kernel size $k , \\check { \\Omega } _ { i }$ defines a $k \\times k$ convolutional window around $i$ , $\\mathbf { v }$ is the input signal to be convolved, and $\\mathbf { b } \\in \\mathcal { R } ^ { 1 }$ is a bias term. $K$ is the kernel used to calculate the correlation between guiding features, here chosen to be the standard Gaussian kernel: ", + "bbox": [ + 173, + 674, + 825, + 758 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/342bdf167552c4191233cf0175ff696f26e046329d7bb2de0a3adfc72f586e04.jpg", + "text": "$$\nK ( \\mathbf { f } _ { i } , \\mathbf { f } _ { j } ) = \\exp \\left( - \\frac { 1 } { 2 } ( \\mathbf { f } _ { i } - \\mathbf { f } _ { j } ) ^ { T } \\Sigma _ { i j } ^ { - 1 } ( \\mathbf { f } _ { i } - \\mathbf { f } _ { j } ) \\right)\n$$", + "text_format": "latex", + "bbox": [ + 343, + 760, + 653, + 795 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $\\Sigma _ { i j }$ is the covariance matrix between features $\\mathbf { f } _ { i }$ and $\\mathbf { f } _ { j }$ , here chosen to be a diagonal matrix $\\sigma ^ { 2 } \\cdot I _ { D }$ , with $\\sigma$ as an extra learnable parameter for each convolutional filter. These kernel evaluations can be seen as a secondary set of weights applied to the standard convolutional weights, changing their impact on the resulting depth features depending on the content stored in the guiding semantic features. For example, the information contained in depth features pertaining to the sky should not be used to generate depth features describing a pedestrian, and this behavior is now captured as a larger distance between their corresponding semantic features, which in turn produces smaller weights for that particular convolutional filter. Note that the standard convolution can be considered a special case of the pixel-adaptive convolution, where $\\forall ~ i j , K ( \\mathbf { f } _ { i } , \\mathbf { f } _ { j } ) ~ = ~ 1$ . ", + "bbox": [ + 173, + 796, + 825, + 925 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/c1133bd34f68068e6cc07f5e3946ece1ab608146cce40ed0d3a8c96d349ad49c.jpg", + "image_caption": [ + "Figure 3: Qualitative results of our proposed two-stage training to address the infinite depth problem. Top images were obtained evaluating the first-stage depth network, and bottom images were obtained using the second-stage depth network, trained with a filtered dataset. " + ], + "image_footnote": [], + "bbox": [ + 186, + 95, + 812, + 193 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.2 SEMANTIC GUIDANCE NETWORK ", + "text_level": 1, + "bbox": [ + 178, + 266, + 446, + 280 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "As the secondary network used to provide semantic guidance for the generation of depth features, we use a Feature Pyramid Network (FPN) with ResNet backbone (Lin et al., 2017). This architecture has been shown to be efficient for both semantic and instance-level predictions towards panoptic segmentation (Kirillov et al., 2019; Li et al., 2018; Xiong et al., 2019; Porzi et al., 2019). While our proposed semantically-guided architecture is not restricted to any particular network, we chose this particular implementation to facilitate the future exploration of different sources for guidance information. Architectural details follow the protocols described in Li et al. (2018), and unless mentioned otherwise the same pretrained model was used in all reported experiments. The semantic network is assumed fixed, pretrained on a held out dataset different than the raw data used for selfsupervised learning, i.e. we do not require any semantic ground truth on the target dataset. ", + "bbox": [ + 174, + 292, + 825, + 431 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.3 TWO-STAGE TRAINING ", + "text_level": 1, + "bbox": [ + 176, + 449, + 377, + 463 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "One well-known limitation of the self-supervised photometric loss is its inability to model dynamic objects, due to a static world assumption that only accounts for camera ego-motion (Godard et al., 2018; Casser et al., 2019). A resulting common failure mode is the infinite depth problem, which is caused by the presence of objects moving at the same speed as the camera. This typically causes distinct holes in the predicted depth maps, with arbitrarily large values where these objects should be. This severely hinders the applicability of such models in real-world applications, particularly for automated driving, where the ability to detect and properly model dynamic objects is crucial. Moreover, this limitation may be further accentuated in our proposed semantically-guided architecture, as the infinite depth problem occurs mostly on dynamic categories (i.e. cars and motorcycles) and the semantic-aware features may reinforce this bias. ", + "bbox": [ + 173, + 476, + 825, + 614 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We propose a simple and efficient two-stage training method to detect and remove this bias from the training set. In the first stage, we learn a standard depth network on all available training data. This network, exhibiting the infinite depth problem, is then used to resample the dataset by automatically filtering out sequences with infinite depth predictions that violate a basic geometric prior. We indeed find that depth predictions for pixels corresponding to the nearby ground plane are generally robust. This enables getting a coarse estimate of the ground plane using RANSAC and detecting the number of pixels whose predicted depth projects them significantly below the ground. If that number is above a threshold, then the corresponding image is subsequently ignored (we found a conservative threshold of 10 to work well in all our experiments, filtering out roughly $5 \\%$ of the KITTI training dataset). During the second stage, we retrain the network on the subsampled dataset (from scratch to avoid the previous local optimum). As this subsampled dataset is de-biased, the network learns better depth estimates on dynamic objects. This process can be repeated, but we find that two stages are enough to remove any traces of infinite depth in our experiments, as shown in Figure 3. ", + "bbox": [ + 174, + 622, + 825, + 803 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "5 EXPERIMENTAL RESULTS ", + "text_level": 1, + "bbox": [ + 176, + 824, + 418, + 839 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "5.1 DATASETS ", + "text_level": 1, + "bbox": [ + 174, + 854, + 287, + 869 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We use the standard KITTI benchmark (Geiger et al., 2013) for self-supervised training and evaluation. More specifically, we adopt the training, validation and test splits used in Eigen et al. (2014) with the pre-processing from Zhou et al. (2017) to remove static frames, which is more suitable for ", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 4 + }, + { + "type": "table", + "img_path": "images/fadcee4f355440bacfe89f4e2c7a0a5a4bb1ad8ded3e322dc5351cda42632e1c.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
MethodSuperv.Lower is BetterHigher is Better
Abs RelSq RelRMSERMSEtogδ<1.25δ<1.25²δ<1.253
Garg et al. (2016)M0.1521.2265.8490.2460.7840.9210.967
Zou et al. (2018)M0.1501.1245.5070.2230.8060.9330.973
Godard et al. (2017)M0.1411.1865.6770.2380.8090.9280.969
Zhan et al. (2018)M0.1351.1325.5850.2290.8200.9330.971
Godard et al. (2018) (R18)M0.1150.9034.8630.1930.8770.9590.981
Godard et al. (2018) (R50)M0.1120.8514.7540.1900.8810.9600.981
Guizilini et al. (2019) (MR)M0.1080.7274.4260.1840.8850.9630.983
Guizilini et al. (2019) (HR)M0.1040.7584.3860.1820.8950.9640.982
Casser et al. (2019)S+Inst0.1411.0255.2900.2150.8160.9450.979
Chen et al. (2019)S+Sem0.1180.9055.0960.2110.8390.9450.977
Ochs et al. (2019)D+Sem0.1160.9454.9160.2080.8610.9520.968
Ours (MR)M+Sem0.1020.6984.3810.1780.8960.9640.984
Ours (HR)M+Sem0.1000.7614.2700.1750.9020.9650.982
", + "bbox": [ + 173, + 83, + 826, + 294 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Table 1: Quantitative performance comparison of our proposed architecture on KITTI for depths up to $8 0 \\mathrm { m }$ . $M$ refers to methods that train using monocular images, S refers to methods that train using stereo pairs, $D$ refers to methods that use ground-truth depth supervision, Sem refers to methods that include semantic information, and Inst refers to methods that include semantic and instance information. $M R$ indicates $6 4 0 \\times 1 9 2$ input images, and $H R$ indicates $1 2 8 0 \\mathrm { ~ x ~ } 3 8 4$ input images. Our proposed architecture is able to further improve the current state of the art in self-supervised monocular depth estimation, and outperforms other methods that exploit semantic information (including ground truth labels) by a substantial margin. ", + "bbox": [ + 173, + 306, + 825, + 417 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "monocular self-supervised learning. This results in 39810 images for training, 4424 for validation, and 697 for evaluation. Following common practice, we pretrain our depth and pose networks on the CityScapes dataset (Cordts et al., 2016), consisting of 88250 unlabeled images. Unless noted otherwise, input images are downsampled to $6 4 0 \\times 1 9 2$ resolution and output inverse depth maps are upsampled to full resolution using bilinear interpolation. Our fixed semantic segmentation network is pretrained on Cityscapes, achieving a mIoU of $7 5 \\%$ on the validation set. ", + "bbox": [ + 174, + 435, + 825, + 520 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5.2 IMPLEMENTATION DETAILS ", + "text_level": 1, + "bbox": [ + 176, + 537, + 405, + 553 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We implement our models with PyTorch (Paszke et al., 2017) and follow the same training protocols of Guizilini et al. (2019) when optimizing our depth and pose networks. The initial training stage is conducted on the CityScapes dataset for 50 epochs, with a batch size of 4 per GPU and initial depth and pose learning rates of $2 \\cdot 1 0 ^ { - 4 }$ and $5 \\cdot { \\bar { 1 } } 0 ^ { - 4 }$ respectively, that are halved every 20 epochs. Afterwards, the depth and pose networks are fine-tuned on KITTI for 30 epochs, with the same parameters and halving the learning rates after every 12 epochs. This fine-tuning stage includes the proposed architecture, where information from the fixed semantic network, pretrained separately, is used to directly guide the generation of depth features. There is no direct supervision at any stage during depth training, all semantic information is derived from the fixed secondary network. ", + "bbox": [ + 174, + 564, + 825, + 690 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "When pretraining the semantic segmentation network, we use a ResNet-50 backbone with Imagenet (Deng et al., 2009) pretrained weights and optimize the network for $4 8 k$ iterations on the CityScapes dataset with a learning rate of 0.01, momentum of 0.9, weight decay of $1 0 ^ { - 4 }$ , and a batch size of 1 per GPU. Random scaling between (0.7, 1.3), random horizontal flipping, and a crop size of $1 0 0 0 \\times 2 0 0 0$ are used for data augmentation. We decay the learning rate by a factor of 10 at iterations $3 6 k$ and $4 4 k$ . Once training is complete, the semantic segmentation network is fixed and becomes the only source of semantic information when fine-tuning the depth and pose networks on KITTI. ", + "bbox": [ + 174, + 696, + 825, + 795 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5.3 DEPTH ESTIMATION PERFORMANCE ", + "text_level": 1, + "bbox": [ + 176, + 813, + 465, + 828 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Our depth estimation results are summarized in Table 1, where we compare our proposed architecture with other published works. From these results we can see that the introduction of semanticallyguided geometric representation learning further improves upon the current state of the art in selfsupervised monocular depth estimation from Guizilini et al. (2019), which served as our baseline. Our approach also outperforms other methods that leverage semantic information by a substantial margin, even those using ground-truth KITTI semantic segmentation and depth labels during train", + "bbox": [ + 174, + 839, + 823, + 924 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/b3112d78d10a26174e02c3bc30a24a88918102e8b993042d38659c646c8ad47a.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
NetworkSEMTSTLower is BetterHigher is Better δ <1.25 δ<1.252 δ< 1.253Class-Avg. Abs Rel
Abs RelSq Rel RMSE RMSElog
ResNet-180.120 0.1170.896 0.8544.869 4.7140.198 0.1910.868 0.957 0.8730.981 0.963 0.9810.149 0.139
ResNet-500.117 0.1130.900 0.8314.826 4.6630.196 0.1890.873 0.967 0.878 0.9710.980 0.9830.144 0.136
PackNet0.108 0.103 0.1020.727 0.710 0.6984.426 4.301 4.3810.184 0.179 0.1780.885 0.963 0.895 0.964 0.896 0.9630.983 0.984 0.9840.132 0.121 0.117
", + "bbox": [ + 176, + 101, + 818, + 243 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Table 2: Ablative analysis of our semantic guidance (SEM) and two-stage-training (TST) contributions. The last column indicates class-average Abs. Rel. obtained by averaging all class-specific depth errors in Figure 4, while other columns indicate pixel-average metrics. ", + "bbox": [ + 176, + 253, + 821, + 296 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "ing (Ochs et al., 2019). Furthermore, in Figure 5 we also present qualitative results showing the improvements in depth estimation generated by our proposed framework, compared to our baseline. Note how our semantically-guided architecture produces sharper boundaries and better object delineation, especially in structures further away or not clearly distinguishable in the input image. ", + "bbox": [ + 174, + 306, + 825, + 363 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.4 ABLATIVE ANALYSIS ", + "text_level": 1, + "bbox": [ + 176, + 381, + 362, + 395 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.4.1 DIFFERENT DEPTH NETWORKS ", + "text_level": 1, + "bbox": [ + 174, + 407, + 444, + 422 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "To better evaluate our main contribution, we provide an ablative analysis showing how it generalizes to different depth networks. To this end, we consider two variations of the widely used ResNet architecture as the encoder for our depth network: ResNet-18 and ResNet-50 (the same pretrained semantic network was used in all experiments). Depth estimation results considering these variations are shown in Table 2, where we can see that our proposed semantically-guided architecture is able to consistently improve the performance of different depth networks, for all considered metrics. ", + "bbox": [ + 174, + 431, + 825, + 516 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.4.2 CLASS-SPECIFIC DEPTH PERFORMANCE", + "text_level": 1, + "bbox": [ + 174, + 532, + 509, + 547 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "To further showcase the benefits of our semantically-guided architecture, we also provide classspecific evaluation metrics, as shown in Figure 4. As we do not have ground-truth semantic segmentation for these images, we use the prediction of the semantic network to bin pixels per predicted category, and evaluate only on those pixels. From these results we can see that our proposed architecture consistently improves depth performance for pixels across all predicted classes, especially those containing fine-grained structures and sharp boundaries, e.g. poles and traffic signs. ", + "bbox": [ + 173, + 558, + 825, + 642 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/029bba1944c05b59fd31cd1b470c4d6e1b61b263ba0128d9dbf7c9034beaab1f.jpg", + "image_caption": [ + "Figure 4: Class-specific depth evaluation for our proposed architecture (blue), relative to our baseline (red). The rightmost column indicates class-average depth metrics, obtained by averaging all individual classes. The introduction of semantically-guided features, in conjunction with our proposed two-stage training methodology to address the infinite depth problem, consistently improved depth results for all considered classes (lower is better). " + ], + "image_footnote": [], + "bbox": [ + 183, + 656, + 813, + 833 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/8b4a389f1dbad0e331cbee9e393af3ad825e78c305d86b9334b90a768bca6149.jpg", + "image_caption": [ + "Figure 5: Qualitative results of our proposed architecture. The left, middle, and right columns show respectively input images, baseline predicted depth maps (Guizilini et al., 2019), and the depths maps obtained using our proposed architecture. Our semantic-aware depth network predicts sharper boundaries and fine-grained details on distant objects. The dotted lines indicate class-average errors, obtained by averaging all the class-specific depth errors. " + ], + "image_footnote": [], + "bbox": [ + 176, + 114, + 820, + 460 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We also measure the impact of our two-stage training process, which is expected to address the infinite depth problem in dynamic objects. Although we find the pixel-average difference in performance to not be significant (see Table 2), there is a significant improvement in class-average depth estimation, from 0.121 to 0.117 Abs-Rel. This is because the number of pixels affected by the infinite depth problem is vastly smaller than the total number of pixels. However, when considering class-average depth evaluation, the improvement over classes such as cars (0.200 to 0.177 Abs-Rel) and motorcycles (0.091 to 0.069) becomes statistically significant. This further exemplifies the importance of fine-grained metrics in depth evaluation, so these underlying behaviors can be properly observed and accounted for in the development of new techniques. ", + "bbox": [ + 174, + 569, + 825, + 694 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "6 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 714, + 318, + 731 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "This paper introduces a novel architecture for self-supervised monocular depth estimation that leverages semantic information from a fixed pretrained network to guide the generation of multi-level depth features via pixel-adaptive convolutions. Our monodepth network learns semantic-aware geometric representations that can disambiguate photometric ambiguities in a self-supervised learning structure-from-motion context. Furthermore, we introduce a two-stage training process that resamples training data to overcome a common bias on dynamic objects resulting in predicting them at infinite depths. Our experiments on challenging real-world data shows that our proposed architecture consistently improves the performance of different monodepth architectures, thus establishing a new state of the art in self-supervised monocular depth estimation. Future directions of research include leveraging other sources of guidance (i.e. instance masks, optical flow, surface normals), as well as avenues for self-supervised fine-tuning of the semantic network. ", + "bbox": [ + 174, + 746, + 825, + 898 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 102, + 287, + 118 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Min Bai, Wenjie Luo, Kaustav Kundu, and Raquel Urtasun. Exploiting semantic information and deep matching for optical flow. In ECCV, 2016. 2 ", + "bbox": [ + 171, + 126, + 825, + 155 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Holger Caesar, Varun Bankiti, Alex H. Lang, Sourabh Vora, Venice Erin Liong, Qiang Xu, Anush Krishnan, Yu Pan, Giancarlo Baldan, and Oscar Beijbom. nuscenes: A multimodal dataset for autonomous driving. CoRR, 2019. 13, 14 ", + "bbox": [ + 173, + 164, + 821, + 207 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Vincent Casser, Soeren Pirk, Reza Mahjourian, and Anelia Angelova. Depth prediction without the sensors: Leveraging structure for unsupervised learning from monocular videos. AAAI, 2019. 2, 3, 5, 6 ", + "bbox": [ + 173, + 217, + 823, + 258 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Po-Yi Chen, Alexander H. Liu, Yen-Cheng Liu, and Yu-Chiang Frank Wang. Towards scene understanding: Unsupervised monocular depth estimation with semantic-aware representation. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR), June 2019. 1, 2, 6 ", + "bbox": [ + 173, + 268, + 826, + 313 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Djork-Arne Clevert, Thomas Unterthiner, and Sepp Hochreiter. Fast and accurate deep network ´ learning by exponential linear units (elus). In ICLR, 2016. 4 ", + "bbox": [ + 173, + 320, + 821, + 351 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Marius Cordts, Mohamed Omran, Sebastian Ramos, Timo Rehfeld, Markus Enzweiler, Rodrigo Benenson, Uwe Franke, Stefan Roth, and Bernt Schiele. The cityscapes dataset for semantic urban scene understanding. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 3213–3223, 2016. 6, 12 ", + "bbox": [ + 173, + 359, + 826, + 417 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Jia Deng, Wei Dong, Richard Socher, Li jia Li, Kai Li, and Li Fei-fei. Imagenet: A large-scale hierarchical image database. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, 2009. 6, 12 ", + "bbox": [ + 173, + 426, + 823, + 469 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "David Eigen, Christian Puhrsch, and Rob Fergus. Depth map prediction from a single image using a multi-scale deep network. In Advances in neural information processing systems, 2014. 1, 2, 5 ", + "bbox": [ + 171, + 478, + 823, + 508 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Huan Fu, Mingming Gong, Chaohui Wang, Kayhan Batmanghelich, and Dacheng Tao. Deep ordinal regression network for monocular depth estimation. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 2002–2011, 2018. 2 ", + "bbox": [ + 173, + 517, + 823, + 560 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Ravi Garg, Vijay Kumar BG, Gustavo Carneiro, and Ian Reid. Unsupervised cnn for single view depth estimation: Geometry to the rescue. In European Conference on Computer Vision, pp. 740–756. Springer, 2016. 2, 6 ", + "bbox": [ + 173, + 569, + 825, + 613 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Andreas Geiger, Philip Lenz, Christoph Stiller, and Raquel Urtasun. Vision meets robotics: The kitti dataset. The International Journal of Robotics Research, 32(11):1231–1237, 2013. 1, 5 ", + "bbox": [ + 171, + 622, + 825, + 651 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Clement Godard, Oisin Mac Aodha, and Gabriel J Brostow. Unsupervised monocular depth estima- ´ tion with left-right consistency. In CVPR, volume 2, pp. 7, 2017. 2, 3, 6 ", + "bbox": [ + 173, + 660, + 823, + 690 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Clement Godard, Oisin Mac Aodha, Michael Firman, and Gabriel J. Brostow. Digging into self-´ supervised monocular depth prediction. arXiv:1806.01260, 2018. 3, 5, 6, 14 ", + "bbox": [ + 173, + 699, + 823, + 728 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Vitor Guizilini, Sudeep Pillai, Rares Ambrus, and Adrien Gaidon. Packnet-sfm: 3d packing for self-supervised monocular depth estimation. arXiv preprint arXiv:1905.02693, 2019. 1, 2, 3, 6, 8, 14 ", + "bbox": [ + 173, + 738, + 825, + 780 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Fatma Guney and Andreas Geiger. Displets: Resolving stereo ambiguities using object knowledge.¨ In Conference on Computer Vision and Pattern Recognition (CVPR), 2015. 2 ", + "bbox": [ + 168, + 790, + 821, + 820 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Xiaoyang Guo, Hongsheng Li, Shuai Yi, Jimmy Ren, and Xiaogang Wang. Learning monocular depth by distilling cross-domain stereo networks. In Proceedings of the European Conference on Computer Vision (ECCV), pp. 484–500, 2018. 1 ", + "bbox": [ + 176, + 829, + 821, + 872 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 770–778, 2016. 2 ", + "bbox": [ + 176, + 881, + 823, + 922 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Max Jaderberg, Karen Simonyan, Andrew Zisserman, et al. Spatial transformer networks. In Advances in neural information processing systems, pp. 2017–2025, 2015. 2 ", + "bbox": [ + 171, + 103, + 823, + 133 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alex Kendall, Yarin Gal, and Roberto Cipolla. Multi-task learning using uncertainty to weigh losses for scene geometry and semantics. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 7482–7491, 2018. 1 ", + "bbox": [ + 174, + 140, + 823, + 183 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alexander Kirillov, Ross Girshick, Kaiming He, and Piotr Dollar. Panoptic feature pyramid net- ´ works. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 6399–6408, 2019. 5 ", + "bbox": [ + 174, + 190, + 823, + 233 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Maria Klodt and Andrea Vedaldi. Supervising the new with the old: Learning sfm from sfm. In European Conference on Computer Vision, pp. 713–728. Springer, 2018. 2 ", + "bbox": [ + 171, + 241, + 823, + 271 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jae-Han Lee, Minhyeok Heo, Kyung-Rae Kim, and Chang-Su Kim. Single-image depth estimation based on fourier domain analysis. In International Conference on Computer Vision and Pattern Recognition (CVPR), pp. 330–339, 2018. 2 ", + "bbox": [ + 176, + 277, + 823, + 321 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kuan-Hui Lee, German Ros, Jie Li, and Adrien Gaidon. Spigan: Privileged adversarial learning from simulation. In ICLR, 2019. 1 ", + "bbox": [ + 173, + 328, + 825, + 358 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Bo Li, Chunhua Shen, Yuchao Dai, Anton Van, and Mingyi He. Depth and surface normal estimation from monocular images using regression on deep features and hierarchical crfs. In International Conference on Computer Vision and Pattern Recognition (CVPR), pp. 1119–1127, 2015. 2 ", + "bbox": [ + 174, + 364, + 823, + 409 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jie Li, Allan Raventos, Arjun Bhargava, Takaaki Tagawa, and Adrien Gaidon. Learning to fuse things and stuff. arXiv preprint arXiv:1812.01192, 2018. 5 ", + "bbox": [ + 169, + 416, + 823, + 445 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Zhizhong Li and Derek Hoiem. Learning without forgetting. IEEE TPAMI, 40(12):2935–2947, 2017. 3 ", + "bbox": [ + 171, + 453, + 823, + 483 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Tsung-Yi Lin, Piotr Dollar, Ross Girshick, Kaiming He, Bharath Hariharan, and Serge Belongie.´ Feature pyramid networks for object detection. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 2117–2125, 2017. 5 ", + "bbox": [ + 174, + 489, + 823, + 534 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Reza Mahjourian, Martin Wicke, and Anelia Angelova. Unsupervised learning of depth and egomotion from monocular video using 3d geometric constraints. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 5667–5675, 2018. 2 ", + "bbox": [ + 174, + 540, + 821, + 584 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Fabian Manhardt, Wadim Kehl, and Adrien Gaidon. Roi-10d: Monocular lifting of 2d detection to 6d pose and metric shape. International Conference on Computer Vision and Pattern Recognition (CVPR), 2019. 1 ", + "bbox": [ + 173, + 590, + 823, + 633 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jeff Michels, Ashutosh Saxena, and Andrew Y Ng. High speed obstacle avoidance using monocular vision and reinforcement learning. In Proceedings of the 22nd international conference on Machine learning, pp. 593–600. ACM, 2005. 1 ", + "bbox": [ + 173, + 641, + 823, + 685 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Matthias Ochs, Adrian Kretz, and Rudolf Mester. Sdnet: Semantically guided depth estimation network. In arXiv:1907.10659, 2019. 1, 2, 6, 7 ", + "bbox": [ + 169, + 691, + 823, + 722 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Adam Paszke, Sam Gross, Soumith Chintala, Gregory Chanan, Edward Yang, Zachary DeVito, Zeming Lin, Alban Desmaison, Luca Antiga, and Adam Lerer. Automatic differentiation in pytorch. In NIPS-W, 2017. 6 ", + "bbox": [ + 174, + 728, + 825, + 772 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sudeep Pillai, Rares Ambrus, and Adrien Gaidon. Superdepth: Self-supervised, super-resolved monocular depth estimation. In Proceedings of the IEEE International Conference on Robotics and Automation (ICRA), 2019. 1 ", + "bbox": [ + 173, + 780, + 823, + 823 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Lorenzo Porzi, Samuel Rota Bulo, Aleksander Colovic, and Peter Kontschieder. Seamless scene segmentation. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 8277–8286, 2019. 5 ", + "bbox": [ + 173, + 830, + 823, + 873 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Xiaojuan Qi, Renjie Liao, Zhengzhe Liu, Raquel Urtasun, and Jiaya Jia. Geonet: Geometric neural network for joint depth and surface normal estimation. In International Conference on Computer Vision and Pattern Recognition (CVPR), pp. 283–291, 2018. 2 ", + "bbox": [ + 174, + 882, + 825, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Hang Su, Varun Jampani, Deqing Sun, Orazio Gallo, Erik Learned-Miller, and Jan Kautz. Pixeladaptive convolutional neural networks. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2019. 1, 2, 4 ", + "bbox": [ + 176, + 103, + 821, + 146 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Benjamin Ummenhofer, Huizhong Zhou, Jonas Uhrig, Nikolaus Mayer, Eddy Ilg, Alexey Dosovitskiy, and Thomas Brox. Demon: Depth and motion network for learning monocular stereo. In IEEE Conference on computer vision and pattern recognition (CVPR), volume 5, pp. 6, 2017. 2 ", + "bbox": [ + 176, + 155, + 823, + 198 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Chaoyang Wang, Jose Miguel Buenaposada, Rui Zhu, and Simon Lucey. Learning depth from ´ monocular videos using direct methods. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 2022–2030, 2018. 2 ", + "bbox": [ + 174, + 205, + 821, + 250 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Zhou Wang, Alan C Bovik, Hamid R Sheikh, and Eero P Simoncelli. Image quality assessment: from error visibility to structural similarity. IEEE transactions on image processing, 2004. 2, 3 ", + "bbox": [ + 171, + 257, + 820, + 287 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yuxin Wu and Kaiming He. Group normalization. In Proceedings of the 15th European Conference on Computer Vision (ECCV), pp. 3–19, 2018. 4 ", + "bbox": [ + 173, + 295, + 821, + 325 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yuwen Xiong, Renjie Liao, Hengshuang Zhao, Rui Hu, Min Bai, Ersin Yumer, and Raquel Urtasun. Upsnet: A unified panoptic segmentation network. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 8818–8826, 2019. 5 ", + "bbox": [ + 176, + 333, + 823, + 376 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Nan Yang, Rui Wang, Jorg St ¨ uckler, and Daniel Cremers. Deep virtual stereo odometry: Leveraging ¨ deep depth prediction for monocular direct sparse odometry. arXiv:1807.02570, 2018. 2 ", + "bbox": [ + 173, + 385, + 825, + 414 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Zhenheng Yang, Peng Wang, Wei Xu, Liang Zhao, and Ramakant Nevatia. Unsupervised learning of geometry with edge-aware depth-normal consistency. arXiv preprint arXiv:1711.03665, 2017. 1 ", + "bbox": [ + 174, + 422, + 825, + 464 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Zhichao Yin and Jianping Shi. Geonet: Unsupervised learning of dense depth, optical flow and camera pose. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), volume 2, 2018. 2 ", + "bbox": [ + 173, + 473, + 825, + 517 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Huangying Zhan, Ravi Garg, Chamara Saroj Weerasekera, Kejie Li, Harsh Agarwal, and Ian Reid. Unsupervised learning of monocular depth estimation and visual odometry with deep feature reconstruction. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 340–349, 2018. 6 ", + "bbox": [ + 173, + 525, + 823, + 582 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Tinghui Zhou, Matthew Brown, Noah Snavely, and David G Lowe. Unsupervised learning of depth and ego-motion from video. In CVPR, volume 2, pp. 7, 2017. 2, 3, 5 ", + "bbox": [ + 171, + 590, + 823, + 621 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yuliang Zou, Zelun Luo, and Jia-Bin Huang. Df-net: Unsupervised joint learning of depth and flow using cross-task consistency. In European Conference on Computer Vision, 2018. 1, 2, 3, 6 ", + "bbox": [ + 171, + 628, + 823, + 659 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "A PRE-TRAINING THE SEMANTIC SEGMENTATION NETWORK ", + "text_level": 1, + "bbox": [ + 174, + 102, + 702, + 118 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "The introduction of a semantic segmentation network to the depth estimation task increases the depth estimation performance, however it also increases model complexity (e.g. number of trainable parameters). To investigate that the increased performance for the depth estimation task is indeed due to the semantic features encoded in the secondary network, we perform an in-depth analysis (summarized in Table 3) where we explore the impact of pre-training the semantic segmentation network before it is used to guide the generation of depth features. From these results we can see that the presence of semantic information encoded in the secondary network indeed leads to an increase in performance, and that fine-tuning this secondary network for the speficic task of depth estimation actually decreases performance. ", + "bbox": [ + 174, + 132, + 825, + 258 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "In the first two rows an untrained semantic network is utilized, with only its encoder initialized from ImageNet (Deng et al., 2009) weights. Two different scenarios are explored: in the first one (D) only the depth network is fine-tuned in a self-supervised fashion, while in $\\mathbf { D + S }$ both networks are fine-tuned together in the same way. As expected, using untrained features as guidance leads to significantly worse results, since there is no structure encoded in the secondary network and the primary network needs to learn to filter out all this spurious information. When both networks are fine-tuned simultaneously, results improve because now the added complexity from the secondary network can be leveraged for the task of depth estimation, however there is still no improvement over the baseline. ", + "bbox": [ + 174, + 265, + 825, + 390 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Next, the semantic network was pre-trained on only half of the CityScapes (Cordts et al., 2016) dataset (samples chosen randomly), leading to a worse semantic segmentation performance (validation mIoU of around $7 0 \\%$ vs. $\\dot { 7 } 5 \\%$ for the fully trained one). This partial pre-training stage was enough to enable the transfer of useful information between networks, leading to improvements over the baseline. Interestingly, fine-tuning both networks for the task of depth estimation actually hurt performance this time, which we attribute to forgetting the information contained in the secondary network, as both networks are optimized for the depth task. When the semantic network is pretrained with all of CityScapes (last two rows), these effects are magnified, with fine-tuning only the depth network leading to our best reported performance (Table 1) and fine-tuning both networks again leading to results similar to the baseline. ", + "bbox": [ + 174, + 397, + 825, + 536 + ], + "page_idx": 11 + }, + { + "type": "table", + "img_path": "images/39674a6eb79324a71abaab952b2fa2a5c0e792c6121c26ae828662acaccea15b.jpg", + "table_caption": [ + "Table 3: Analysis of the impact of pre-training the semantic segmentation network. On the PreTrain column, $I$ indicates ImageNet (Deng et al., 2009) pretraining and CS indicates CityScapes (Cordts et al., 2016) pretraining, with $1 / 2$ indicating the use of only half the dataset (samples chosen randomly). In the Fine-Tune column, $D$ indicates fine-tuning the depth network and $s$ indicates finetuning the semantic network (note that this is a self-supervised fine-tuning for the depth task, using the objective described in Section 3.1). " + ], + "table_footnote": [], + "table_body": "
MethodPre-TrainFine-TuneLower is BetterHigher is Better
Abs RelSq RelRMSERMSElogδ <1.25 δ<1.252δ<1.253
BaselineD0.1080.7274.4260.1840.8850.9630.983
ProposedID+S0.1160.8474.7510.1920.8790.9600.981
ID0.1971.3236.1140.2650.7760.9180.966
CS (1/2)D+S0.1090.7374.3890.1850.8840.9620.982
CS (1/2)D0.1040.7164.3220.1800.8930.9640.984
CsD+S0.1070.7414.4070.1830.8830.9630.983
CsD0.1020.6984.3810.1780.8960.9640.984
", + "bbox": [ + 186, + 549, + 808, + 685 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "B UNCERTAINTY AND GENERALIZATION TO DIFFERENT OBJECTS ", + "text_level": 1, + "bbox": [ + 176, + 809, + 740, + 825 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "In a self-supervised setting, increasing the number of unlabeled videos used for depth training is expected to lead to an increasing specialization away from the domain in which the semantic network was pre-trained. This might result in harmful guidance if our method is not robust to this gap. However, our approach does not use semantic predictions directly, but rather the decoded features of the semantic network themselves, which represent general appearance information that should be more robust to this domain gap. To validate our hypothesis, we further explore the impact of erroneous semantic information in the performance of our proposed semantically-guided depth framework. In Figure 6 we present qualitative results highlighting situations in which our pretrained semantic network failed to generate correct semantic predictions for certain objects in the scene, and yet our proposed framework was still able to properly recover depth values for that portion of the environment. These exemplify possible scenarios for erroneous semantic prediction. ", + "bbox": [ + 174, + 840, + 825, + 924 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "", + "bbox": [ + 176, + 103, + 825, + 174 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "• Imprecise boundaries: in the first row, we can see that the semantic segmentation network does not correctly detect the traffic sign, yet the semantically-guided depth network predicts its shape and depth accurately. \n• Wrong classification: in the second row, the truck was mistakenly classified as partially “road” and “building”, however our semantically-guided depth network was still able to properly recover its overall shape with sharp delineation that was not available from its semantic contour. A similar scenario happens in the same image, with “fence” being partially labeled as “bicycle”. \n• Missing ontology: there is no “trash can” class on the CityScapes ontology, however in the third row our semantically-guided depth network was able to correctly reconstruct such object even though it was classified as “fence”, similarly to its surroundings. \n• Object Hallucination: in the fourth row, the contour of a “person” was erroneously introduced in the image and correctly removed by our semantically-guided framework. ", + "bbox": [ + 217, + 184, + 825, + 377 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "These examples are evidence that our proposed framework is able to reason over the uncertainty inherent to semantic classification, leveraging this information when accurate to achieve the results reported in this paper, but also discarding it if necessary to generate a better reconstruction according to the self-supervised photometric loss. ", + "bbox": [ + 176, + 388, + 825, + 444 + ], + "page_idx": 12 + }, + { + "type": "image", + "img_path": "images/1571107d15766292cb50733ff1a095273dd604cd102c3c0235ac0a84b6b5dd4e.jpg", + "image_caption": [ + "Figure 6: Examples of erroneous semantic predictions that still led to accurate depth predictions using our proposed semantically-guided depth framework. " + ], + "image_footnote": [], + "bbox": [ + 178, + 469, + 820, + 699 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "C GENERALIZATION TO DIFFERENT DATASETS ", + "text_level": 1, + "bbox": [ + 174, + 753, + 578, + 770 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "In the previous sections, we show that our proposed framework is robust to a degraded semantic network, both by pretraining the semantic network with fewer annotated labels (Appendix A) and also by providing evidence that the depth network is able to reason over erroneous predictions to still generate accurate reconstructions (Appendix B). We now go one step further and analyze how our proposed semantically-guided framework generalizes to a dataset that was used neither during pre-training nor for fine-tuning. To this end, we evaluate our KITTI depth model on the recently released NuScenes dataset (Caesar et al., 2019). The official NuScenes validation split is used, containing 6019 images from the front camera with ground-truth depth maps generated by LiDAR reprojection. Results presented in Table 4 provide additional evidence that our method indeed results in generalization improvements, even on significantly different data from different platforms ", + "bbox": [ + 173, + 785, + 825, + 924 + ], + "page_idx": 12 + }, + { + "type": "table", + "img_path": "images/bec1078c5287f03bdd3c650a6e65b61fa474c55eb675fac2632764ab582173d1.jpg", + "table_caption": [ + "and environments (Karlsruhe, Germany for KITTI vs Boston, USA and Singapore for NuScenes), outperforming the state of the art methods and our baseline (Guizilini et al., 2019). ", + "Table 4: Generalization capability of different networks, trained on both KITTI and CityScapes datasets and evaluated on the NuScenes (Caesar et al., 2019) dataset. Our proposed semanticallyguided architecture is able to further improve upon the baseline from Guizilini et al. (2019), which only used unlabeled image sequences for self-supervised depth training. " + ], + "table_footnote": [], + "table_body": "
MethodAbs RelSq RelRMSERMSElogδ<1.25δ<1.25²δ<1.253
Godard et al. (2018) (R18)0.2121.9187.9580.3230.6740.8980.954
Godard et al. (2018) (R50)0.2102.0178.1110.3280.6970.9030.960
Guizilini et al. (2019) (MR)0.1871.8527.6360.2890.7420.9170.961
Ours (MR)0.1811.5057.2370.2710.7650.9310.969
", + "bbox": [ + 196, + 145, + 795, + 226 + ], + "page_idx": 13 + } +] \ No newline at end of file diff --git a/parse/train/ByxT7TNFvH/ByxT7TNFvH_middle.json b/parse/train/ByxT7TNFvH/ByxT7TNFvH_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..516a7d427ec2e7158f2b996b92d138b153ec3f0c --- /dev/null +++ b/parse/train/ByxT7TNFvH/ByxT7TNFvH_middle.json @@ -0,0 +1,32415 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 502, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 504, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 504, + 97 + ], + "score": 1.0, + "content": "SEMANTICALLY-GUIDED REPRESENTATION LEARN-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 99, + 471, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 471, + 118 + ], + "score": 1.0, + "content": "ING FOR SELF-SUPERVISED MONOCULAR DEPTH", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 148, + 133, + 465, + 147 + ], + "lines": [ + { + "bbox": [ + 144, + 131, + 468, + 151 + ], + "spans": [ + { + "bbox": [ + 144, + 131, + 468, + 151 + ], + "score": 1.0, + "content": "Vitor Guizilini1 Rui Hou1,2 Jie Li1 Rares, Ambrus, 1 Adrien Gaidon1", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 159, + 150, + 289, + 173 + ], + "lines": [ + { + "bbox": [ + 156, + 149, + 290, + 163 + ], + "spans": [ + { + "bbox": [ + 156, + 149, + 290, + 163 + ], + "score": 1.0, + "content": "1Toyota Research Institute (TRI)", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 164, + 162, + 288, + 174 + ], + "spans": [ + { + "bbox": [ + 164, + 162, + 288, + 174 + ], + "score": 1.0, + "content": "{first.last}@tri.global", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.0 + }, + { + "type": "text", + "bbox": [ + 338, + 150, + 436, + 172 + ], + "lines": [ + { + "bbox": [ + 336, + 148, + 438, + 164 + ], + "spans": [ + { + "bbox": [ + 336, + 148, + 438, + 164 + ], + "score": 1.0, + "content": "2University of Michigan", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 344, + 162, + 433, + 173 + ], + "spans": [ + { + "bbox": [ + 344, + 162, + 433, + 173 + ], + "score": 1.0, + "content": "rayhou@umich.edu", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.0 + }, + { + "type": "title", + "bbox": [ + 277, + 193, + 333, + 205 + ], + "lines": [ + { + "bbox": [ + 276, + 193, + 335, + 206 + ], + "spans": [ + { + "bbox": [ + 276, + 193, + 335, + 206 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 143, + 217, + 468, + 360 + ], + "lines": [ + { + "bbox": [ + 141, + 217, + 469, + 230 + ], + "spans": [ + { + "bbox": [ + 141, + 217, + 469, + 230 + ], + "score": 1.0, + "content": "Self-supervised learning is showing great promise for monocular depth estima-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 228, + 469, + 241 + ], + "spans": [ + { + "bbox": [ + 141, + 228, + 469, + 241 + ], + "score": 1.0, + "content": "tion, using geometry as the only source of supervision. Depth networks are indeed", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 240, + 469, + 252 + ], + "spans": [ + { + "bbox": [ + 141, + 240, + 469, + 252 + ], + "score": 1.0, + "content": "capable of learning representations that relate visual appearance to 3D properties", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 250, + 469, + 263 + ], + "spans": [ + { + "bbox": [ + 141, + 250, + 469, + 263 + ], + "score": 1.0, + "content": "by implicitly leveraging category-level patterns. In this work we investigate how", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 261, + 469, + 274 + ], + "spans": [ + { + "bbox": [ + 141, + 261, + 469, + 274 + ], + "score": 1.0, + "content": "to leverage more directly this semantic structure to guide geometric representa-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 271, + 470, + 285 + ], + "spans": [ + { + "bbox": [ + 141, + 271, + 470, + 285 + ], + "score": 1.0, + "content": "tion learning, while remaining in the self-supervised regime. Instead of using", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 284, + 469, + 295 + ], + "spans": [ + { + "bbox": [ + 141, + 284, + 469, + 295 + ], + "score": 1.0, + "content": "semantic labels and proxy losses in a multi-task approach, we propose a new ar-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 294, + 470, + 307 + ], + "spans": [ + { + "bbox": [ + 141, + 294, + 470, + 307 + ], + "score": 1.0, + "content": "chitecture leveraging fixed pretrained semantic segmentation networks to guide", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 305, + 470, + 318 + ], + "spans": [ + { + "bbox": [ + 141, + 305, + 470, + 318 + ], + "score": 1.0, + "content": "self-supervised representation learning via pixel-adaptive convolutions. Further-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 317, + 469, + 328 + ], + "spans": [ + { + "bbox": [ + 141, + 317, + 469, + 328 + ], + "score": 1.0, + "content": "more, we propose a two-stage training process to overcome a common semantic", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 327, + 470, + 340 + ], + "spans": [ + { + "bbox": [ + 141, + 327, + 470, + 340 + ], + "score": 1.0, + "content": "bias on dynamic objects via resampling. Our method improves upon the state of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 337, + 469, + 350 + ], + "spans": [ + { + "bbox": [ + 141, + 337, + 469, + 350 + ], + "score": 1.0, + "content": "the art for self-supervised monocular depth prediction over all pixels, fine-grained", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 349, + 292, + 361 + ], + "spans": [ + { + "bbox": [ + 141, + 349, + 292, + 361 + ], + "score": 1.0, + "content": "details, and per semantic categories.†", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 108, + 370, + 206, + 382 + ], + "lines": [ + { + "bbox": [ + 105, + 369, + 208, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 208, + 385 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 394, + 505, + 482 + ], + "lines": [ + { + "bbox": [ + 106, + 394, + 504, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 504, + 406 + ], + "score": 1.0, + "content": "Accurate depth estimation is a key problem in computer vision and robotics, as it is instrumental", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 405, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 505, + 417 + ], + "score": 1.0, + "content": "for perception, navigation, and planning. Although perceiving depth typically requires dedicated", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 417, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 429 + ], + "score": 1.0, + "content": "sensors (e.g., stereo rigs, LiDAR), learning to predict depth from monocular imagery can provide", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 427, + 504, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 504, + 439 + ], + "score": 1.0, + "content": "useful cues for a wide array of tasks (Michels et al., 2005; Kendall et al., 2018; Manhardt et al.,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 438, + 504, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 504, + 450 + ], + "score": 1.0, + "content": "2019; Lee et al., 2019). Going beyond supervised learning from direct measurements (Eigen et al.,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 448, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 506, + 462 + ], + "score": 1.0, + "content": "2014), self-supervised methods exploit geometry as supervision (Guo et al., 2018; Pillai et al., 2019;", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 459, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 506, + 472 + ], + "score": 1.0, + "content": "Zou et al., 2018; Yang et al., 2017), therefore having the potential to leverage large scale datasets of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 471, + 385, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 385, + 483 + ], + "score": 1.0, + "content": "raw videos to outperform supervised methods (Guizilini et al., 2019).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 488, + 505, + 587 + ], + "lines": [ + { + "bbox": [ + 105, + 487, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 505, + 501 + ], + "score": 1.0, + "content": "Although depth from a single image is an ill-posed inverse problem, monocular depth networks are", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 498, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 512 + ], + "score": 1.0, + "content": "able to make accurate predictions by learning representations connecting the appearance of scenes", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 510, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 505, + 523 + ], + "score": 1.0, + "content": "and objects with their geometry in Euclidean 3D space. Due to perspective, there is indeed an", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 520, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 104, + 520, + 506, + 534 + ], + "score": 1.0, + "content": "equivariance relationship between the visual appearance of an object in 2D and its depth, when con-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 545 + ], + "score": 1.0, + "content": "ditioned on the object’s category. For instance, a car 25 meters away appears smaller (on the image", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "score": 1.0, + "content": "plane) than a car only 5 meters away but bigger than a truck 50 meters away. Current depth estima-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 553, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 505, + 567 + ], + "score": 1.0, + "content": "tion methods either do not leverage this structure explicitly or rely on strong semantic supervision", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 564, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 577 + ], + "score": 1.0, + "content": "to jointly optimize geometric consistency and a semantic proxy task in a multi-task objective (Ochs", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 575, + 433, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 433, + 589 + ], + "score": 1.0, + "content": "et al., 2019; Chen et al., 2019), thus departing from the self-supervised paradigm.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 593, + 505, + 714 + ], + "lines": [ + { + "bbox": [ + 105, + 593, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 505, + 605 + ], + "score": 1.0, + "content": "In this paper, we explore how we can leverage semantic information to improve monocular depth", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 604, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 616 + ], + "score": 1.0, + "content": "prediction in a self-supervised way. Our main contribution is a novel architecture that uses a fixed", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 614, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 505, + 627 + ], + "score": 1.0, + "content": "pre-trained semantic segmentation network to guide geometric representation learning in a self-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "supervised monocular depth network. In contrast to standard convolutional layers, our architecture", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 636, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 506, + 650 + ], + "score": 1.0, + "content": "uses pixel-adaptive convolutions (Su et al., 2019) to learn semantic-dependent representations that", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 648, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 661 + ], + "score": 1.0, + "content": "can better capture the aforementioned equivariance property. Leveraging semantics may nonetheless", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 659, + 504, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 504, + 671 + ], + "score": 1.0, + "content": "introduce category-specific biases. Our second contribution is a two-stage training process where", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 670, + 504, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 670, + 504, + 682 + ], + "score": 1.0, + "content": "we automatically detect the presence of a common bias on dynamic objects (projections at infinity)", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 680, + 504, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 504, + 693 + ], + "score": 1.0, + "content": "and resample the training set to de-bias it. Our method improves upon the state of the art in self-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 692, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 692, + 505, + 704 + ], + "score": 1.0, + "content": "supervised monocular depth estimation on the standard KITTI benchmark (Geiger et al., 2013), both", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 703, + 417, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 703, + 417, + 715 + ], + "score": 1.0, + "content": "on average over pixels, over classes, and for dynamic categories in particular.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 44 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 122, + 721, + 461, + 732 + ], + "lines": [ + { + "bbox": [ + 123, + 720, + 462, + 733 + ], + "spans": [ + { + "bbox": [ + 123, + 720, + 462, + 733 + ], + "score": 1.0, + "content": "†Source code and pretrained models are available on https://github.com/TRI-ML/packnet-sfm", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 294, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 502, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 504, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 504, + 97 + ], + "score": 1.0, + "content": "SEMANTICALLY-GUIDED REPRESENTATION LEARN-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 99, + 471, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 471, + 118 + ], + "score": 1.0, + "content": "ING FOR SELF-SUPERVISED MONOCULAR DEPTH", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 148, + 133, + 465, + 147 + ], + "lines": [ + { + "bbox": [ + 144, + 131, + 468, + 151 + ], + "spans": [ + { + "bbox": [ + 144, + 131, + 468, + 151 + ], + "score": 1.0, + "content": "Vitor Guizilini1 Rui Hou1,2 Jie Li1 Rares, Ambrus, 1 Adrien Gaidon1", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 144, + 131, + 468, + 151 + ] + }, + { + "type": "text", + "bbox": [ + 159, + 150, + 289, + 173 + ], + "lines": [ + { + "bbox": [ + 156, + 149, + 290, + 163 + ], + "spans": [ + { + "bbox": [ + 156, + 149, + 290, + 163 + ], + "score": 1.0, + "content": "1Toyota Research Institute (TRI)", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 164, + 162, + 288, + 174 + ], + "spans": [ + { + "bbox": [ + 164, + 162, + 288, + 174 + ], + "score": 1.0, + "content": "{first.last}@tri.global", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.0, + "bbox_fs": [ + 156, + 149, + 290, + 174 + ] + }, + { + "type": "text", + "bbox": [ + 338, + 150, + 436, + 172 + ], + "lines": [ + { + "bbox": [ + 336, + 148, + 438, + 164 + ], + "spans": [ + { + "bbox": [ + 336, + 148, + 438, + 164 + ], + "score": 1.0, + "content": "2University of Michigan", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 344, + 162, + 433, + 173 + ], + "spans": [ + { + "bbox": [ + 344, + 162, + 433, + 173 + ], + "score": 1.0, + "content": "rayhou@umich.edu", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.0, + "bbox_fs": [ + 336, + 148, + 438, + 173 + ] + }, + { + "type": "title", + "bbox": [ + 277, + 193, + 333, + 205 + ], + "lines": [ + { + "bbox": [ + 276, + 193, + 335, + 206 + ], + "spans": [ + { + "bbox": [ + 276, + 193, + 335, + 206 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 143, + 217, + 468, + 360 + ], + "lines": [ + { + "bbox": [ + 141, + 217, + 469, + 230 + ], + "spans": [ + { + "bbox": [ + 141, + 217, + 469, + 230 + ], + "score": 1.0, + "content": "Self-supervised learning is showing great promise for monocular depth estima-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 228, + 469, + 241 + ], + "spans": [ + { + "bbox": [ + 141, + 228, + 469, + 241 + ], + "score": 1.0, + "content": "tion, using geometry as the only source of supervision. Depth networks are indeed", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 240, + 469, + 252 + ], + "spans": [ + { + "bbox": [ + 141, + 240, + 469, + 252 + ], + "score": 1.0, + "content": "capable of learning representations that relate visual appearance to 3D properties", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 250, + 469, + 263 + ], + "spans": [ + { + "bbox": [ + 141, + 250, + 469, + 263 + ], + "score": 1.0, + "content": "by implicitly leveraging category-level patterns. In this work we investigate how", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 261, + 469, + 274 + ], + "spans": [ + { + "bbox": [ + 141, + 261, + 469, + 274 + ], + "score": 1.0, + "content": "to leverage more directly this semantic structure to guide geometric representa-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 271, + 470, + 285 + ], + "spans": [ + { + "bbox": [ + 141, + 271, + 470, + 285 + ], + "score": 1.0, + "content": "tion learning, while remaining in the self-supervised regime. Instead of using", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 284, + 469, + 295 + ], + "spans": [ + { + "bbox": [ + 141, + 284, + 469, + 295 + ], + "score": 1.0, + "content": "semantic labels and proxy losses in a multi-task approach, we propose a new ar-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 294, + 470, + 307 + ], + "spans": [ + { + "bbox": [ + 141, + 294, + 470, + 307 + ], + "score": 1.0, + "content": "chitecture leveraging fixed pretrained semantic segmentation networks to guide", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 305, + 470, + 318 + ], + "spans": [ + { + "bbox": [ + 141, + 305, + 470, + 318 + ], + "score": 1.0, + "content": "self-supervised representation learning via pixel-adaptive convolutions. Further-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 317, + 469, + 328 + ], + "spans": [ + { + "bbox": [ + 141, + 317, + 469, + 328 + ], + "score": 1.0, + "content": "more, we propose a two-stage training process to overcome a common semantic", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 327, + 470, + 340 + ], + "spans": [ + { + "bbox": [ + 141, + 327, + 470, + 340 + ], + "score": 1.0, + "content": "bias on dynamic objects via resampling. Our method improves upon the state of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 337, + 469, + 350 + ], + "spans": [ + { + "bbox": [ + 141, + 337, + 469, + 350 + ], + "score": 1.0, + "content": "the art for self-supervised monocular depth prediction over all pixels, fine-grained", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 349, + 292, + 361 + ], + "spans": [ + { + "bbox": [ + 141, + 349, + 292, + 361 + ], + "score": 1.0, + "content": "details, and per semantic categories.†", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 14, + "bbox_fs": [ + 141, + 217, + 470, + 361 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 370, + 206, + 382 + ], + "lines": [ + { + "bbox": [ + 105, + 369, + 208, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 208, + 385 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 394, + 505, + 482 + ], + "lines": [ + { + "bbox": [ + 106, + 394, + 504, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 504, + 406 + ], + "score": 1.0, + "content": "Accurate depth estimation is a key problem in computer vision and robotics, as it is instrumental", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 405, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 505, + 417 + ], + "score": 1.0, + "content": "for perception, navigation, and planning. Although perceiving depth typically requires dedicated", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 417, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 429 + ], + "score": 1.0, + "content": "sensors (e.g., stereo rigs, LiDAR), learning to predict depth from monocular imagery can provide", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 427, + 504, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 504, + 439 + ], + "score": 1.0, + "content": "useful cues for a wide array of tasks (Michels et al., 2005; Kendall et al., 2018; Manhardt et al.,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 438, + 504, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 504, + 450 + ], + "score": 1.0, + "content": "2019; Lee et al., 2019). Going beyond supervised learning from direct measurements (Eigen et al.,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 448, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 506, + 462 + ], + "score": 1.0, + "content": "2014), self-supervised methods exploit geometry as supervision (Guo et al., 2018; Pillai et al., 2019;", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 459, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 506, + 472 + ], + "score": 1.0, + "content": "Zou et al., 2018; Yang et al., 2017), therefore having the potential to leverage large scale datasets of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 471, + 385, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 385, + 483 + ], + "score": 1.0, + "content": "raw videos to outperform supervised methods (Guizilini et al., 2019).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 394, + 506, + 483 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 488, + 505, + 587 + ], + "lines": [ + { + "bbox": [ + 105, + 487, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 505, + 501 + ], + "score": 1.0, + "content": "Although depth from a single image is an ill-posed inverse problem, monocular depth networks are", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 498, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 512 + ], + "score": 1.0, + "content": "able to make accurate predictions by learning representations connecting the appearance of scenes", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 510, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 505, + 523 + ], + "score": 1.0, + "content": "and objects with their geometry in Euclidean 3D space. Due to perspective, there is indeed an", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 520, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 104, + 520, + 506, + 534 + ], + "score": 1.0, + "content": "equivariance relationship between the visual appearance of an object in 2D and its depth, when con-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 545 + ], + "score": 1.0, + "content": "ditioned on the object’s category. For instance, a car 25 meters away appears smaller (on the image", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "score": 1.0, + "content": "plane) than a car only 5 meters away but bigger than a truck 50 meters away. Current depth estima-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 553, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 505, + 567 + ], + "score": 1.0, + "content": "tion methods either do not leverage this structure explicitly or rely on strong semantic supervision", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 564, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 577 + ], + "score": 1.0, + "content": "to jointly optimize geometric consistency and a semantic proxy task in a multi-task objective (Ochs", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 575, + 433, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 433, + 589 + ], + "score": 1.0, + "content": "et al., 2019; Chen et al., 2019), thus departing from the self-supervised paradigm.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34, + "bbox_fs": [ + 104, + 487, + 506, + 589 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 593, + 505, + 714 + ], + "lines": [ + { + "bbox": [ + 105, + 593, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 505, + 605 + ], + "score": 1.0, + "content": "In this paper, we explore how we can leverage semantic information to improve monocular depth", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 604, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 616 + ], + "score": 1.0, + "content": "prediction in a self-supervised way. Our main contribution is a novel architecture that uses a fixed", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 614, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 505, + 627 + ], + "score": 1.0, + "content": "pre-trained semantic segmentation network to guide geometric representation learning in a self-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "supervised monocular depth network. In contrast to standard convolutional layers, our architecture", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 636, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 506, + 650 + ], + "score": 1.0, + "content": "uses pixel-adaptive convolutions (Su et al., 2019) to learn semantic-dependent representations that", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 648, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 661 + ], + "score": 1.0, + "content": "can better capture the aforementioned equivariance property. Leveraging semantics may nonetheless", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 659, + 504, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 504, + 671 + ], + "score": 1.0, + "content": "introduce category-specific biases. Our second contribution is a two-stage training process where", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 670, + 504, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 670, + 504, + 682 + ], + "score": 1.0, + "content": "we automatically detect the presence of a common bias on dynamic objects (projections at infinity)", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 680, + 504, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 504, + 693 + ], + "score": 1.0, + "content": "and resample the training set to de-bias it. Our method improves upon the state of the art in self-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 692, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 692, + 505, + 704 + ], + "score": 1.0, + "content": "supervised monocular depth estimation on the standard KITTI benchmark (Geiger et al., 2013), both", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 703, + 417, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 703, + 417, + 715 + ], + "score": 1.0, + "content": "on average over pixels, over classes, and for dynamic categories in particular.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 593, + 506, + 715 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 79, + 502, + 189 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 79, + 502, + 189 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 79, + 502, + 189 + ], + "spans": [ + { + "bbox": [ + 109, + 79, + 502, + 189 + ], + "score": 0.973, + "type": "image", + "image_path": "b09c90637e486163bce4d7333340755790cf27ff41a391d503abe5d3014d643d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 79, + 502, + 115.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 115.66666666666666, + 502, + 152.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 152.33333333333331, + 502, + 188.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 198, + 502, + 221 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 198, + 504, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 504, + 210 + ], + "score": 1.0, + "content": "Figure 1: Example of a pointcloud generated using our proposed semantically-guided architec-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 209, + 491, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 491, + 222 + ], + "score": 1.0, + "content": "ture, colored by RGB values from the input image and corresponding predicted semantic labels.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "title", + "bbox": [ + 108, + 243, + 211, + 256 + ], + "lines": [ + { + "bbox": [ + 105, + 242, + 213, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 213, + 258 + ], + "score": 1.0, + "content": "2 RELATED WORK", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 269, + 505, + 468 + ], + "lines": [ + { + "bbox": [ + 106, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "Since the seminal work of Eigen et al. (2014), substantial progress has been done to improve the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 281, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 505, + 293 + ], + "score": 1.0, + "content": "accuracy of supervised depth estimation from monocular images, including the use of Conditional", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 291, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 505, + 304 + ], + "score": 1.0, + "content": "Random Fields (CRFs) (Li et al., 2015), joint optimization of surface normals (Qi et al., 2018),", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 303, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 505, + 315 + ], + "score": 1.0, + "content": "fusion of multiple depth maps (Lee et al., 2018), and ordinal classification (Fu et al., 2018). Con-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "sequently, as supervised techniques for depth estimation advanced rapidly, the availability of large-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 325, + 506, + 337 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 506, + 337 + ], + "score": 1.0, + "content": "scale depth labels became a bottleneck, especially for outdoor applications. Garg et al. (2016) and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 335, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 505, + 348 + ], + "score": 1.0, + "content": "Godard et al. (2017) provided an alternative self-supervised strategy involving stereo cameras, where", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 347, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 505, + 360 + ], + "score": 1.0, + "content": "Spatial Transformer Networks (Jaderberg et al., 2015) can be used to geometrically warp, in a dif-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "ferentiable way, the right image into a synthesized left image, using the predicted depth from the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 505, + 381 + ], + "score": 1.0, + "content": "left image. The photometric consistency loss between the resulting synthesized and original left", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 378, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 393 + ], + "score": 1.0, + "content": "images can then be minimized in an end-to-end manner using a Structural Similarity term (Wang", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 390, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 505, + 403 + ], + "score": 1.0, + "content": "et al., 2004) and additional depth regularization terms. Following Godard et al. (2017) and Um-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 402, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 505, + 414 + ], + "score": 1.0, + "content": "menhofer et al. (2017), Zhou et al. (2017) generalized this to the purely monocular setting, where", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 412, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 505, + 424 + ], + "score": 1.0, + "content": "a depth and a pose networks are simultaneously learned from unlabeled monocular videos. Rapid", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 424, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 436 + ], + "score": 1.0, + "content": "progress in terms of architectures and objective functions (Yin & Shi, 2018; Mahjourian et al., 2018;", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 433, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 506, + 447 + ], + "score": 1.0, + "content": "Casser et al., 2019; Zou et al., 2018; Klodt & Vedaldi, 2018; Wang et al., 2018; Yang et al., 2018)", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 445, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 506, + 457 + ], + "score": 1.0, + "content": "have since then turned monocular depth estimation into one of the most successful applications of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 456, + 463, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 463, + 469 + ], + "score": 1.0, + "content": "self-supervised learning, even outperforming supervised methods (Guizilini et al., 2019).", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 473, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 472, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 505, + 486 + ], + "score": 1.0, + "content": "The introduction of semantic information to improve depth estimates has been explored in prior", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "works, and can be broadly divided into two categories. The first one uses semantic (or instance) in-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "score": 1.0, + "content": "formation to mask out or properly model dynamic portions of the image, which are not accounted for", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "in the photometric loss calculation. Guney & Geiger ¨ (2015) leveraged object knowledge in a Markov", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 517, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 506, + 529 + ], + "score": 1.0, + "content": "Random Field (MRF) to resolve stereo ambiguities, while Bai et al. (2016) used a conjunction of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 529, + 504, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 504, + 540 + ], + "score": 1.0, + "content": "instance-level segmentation and epipolar constraints to reduce uncertainty in optical flow estimation.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 538, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 505, + 552 + ], + "score": 1.0, + "content": "Casser et al. (2019) used instance-level masks to estimate motion models for different objects in the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "environment, and account for their external motion in the resulting warped image. The second cat-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "egory attempts to learn both tasks in a single framework, and uses consistency losses to ensure that", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 572, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 584 + ], + "score": 1.0, + "content": "both are optimized simultaneously and regularize each other, so the information contained in one", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "task can be transferred to improve the other. For instance, Ochs et al. (2019) estimated depth with", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "an ordinal classification loss similar to the standard semantic classification loss, and used empirical", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 605, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 617 + ], + "score": 1.0, + "content": "weighting to combine them into a single loss for optimization. Similarly, Chen et al. (2019) used a", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "unified conditional decoder that can generate either semantic or depth estimates, and both outputs", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "are used to generate a series of losses also combined using empirical weighting to generate the final", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 638, + 191, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 191, + 650 + ], + "score": 1.0, + "content": "loss to be optimized.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "score": 1.0, + "content": "Our approach focuses instead on representation learning, exploiting semantic features into the self-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 666, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 679 + ], + "score": 1.0, + "content": "supervised depth network by using a pretrained semantic segmentation network to guide the gen-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "eration of depth features. This is done using pixel-adaptive convolutions, recently proposed in Su", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "et al. (2019) and applied to tasks such as depth upsampling using RGB images for feature guidance.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "We show that different depth networks can be readily modified to leverage this semantic feature", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 721 + ], + "score": 1.0, + "content": "guidance, ranging from widely used ResNets (He et al., 2016) to the current state-of-the-art PackNet", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 719, + 459, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 719, + 459, + 734 + ], + "score": 1.0, + "content": "(Guizilini et al., 2019), with a consistent gain in performance across these architectures.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 79, + 502, + 189 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 79, + 502, + 189 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 79, + 502, + 189 + ], + "spans": [ + { + "bbox": [ + 109, + 79, + 502, + 189 + ], + "score": 0.973, + "type": "image", + "image_path": "b09c90637e486163bce4d7333340755790cf27ff41a391d503abe5d3014d643d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 79, + 502, + 115.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 115.66666666666666, + 502, + 152.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 152.33333333333331, + 502, + 188.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 198, + 502, + 221 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 198, + 504, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 504, + 210 + ], + "score": 1.0, + "content": "Figure 1: Example of a pointcloud generated using our proposed semantically-guided architec-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 209, + 491, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 491, + 222 + ], + "score": 1.0, + "content": "ture, colored by RGB values from the input image and corresponding predicted semantic labels.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "title", + "bbox": [ + 108, + 243, + 211, + 256 + ], + "lines": [ + { + "bbox": [ + 105, + 242, + 213, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 213, + 258 + ], + "score": 1.0, + "content": "2 RELATED WORK", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 269, + 505, + 468 + ], + "lines": [ + { + "bbox": [ + 106, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "Since the seminal work of Eigen et al. (2014), substantial progress has been done to improve the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 281, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 505, + 293 + ], + "score": 1.0, + "content": "accuracy of supervised depth estimation from monocular images, including the use of Conditional", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 291, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 505, + 304 + ], + "score": 1.0, + "content": "Random Fields (CRFs) (Li et al., 2015), joint optimization of surface normals (Qi et al., 2018),", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 303, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 505, + 315 + ], + "score": 1.0, + "content": "fusion of multiple depth maps (Lee et al., 2018), and ordinal classification (Fu et al., 2018). Con-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "sequently, as supervised techniques for depth estimation advanced rapidly, the availability of large-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 325, + 506, + 337 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 506, + 337 + ], + "score": 1.0, + "content": "scale depth labels became a bottleneck, especially for outdoor applications. Garg et al. (2016) and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 335, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 505, + 348 + ], + "score": 1.0, + "content": "Godard et al. (2017) provided an alternative self-supervised strategy involving stereo cameras, where", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 347, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 505, + 360 + ], + "score": 1.0, + "content": "Spatial Transformer Networks (Jaderberg et al., 2015) can be used to geometrically warp, in a dif-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "ferentiable way, the right image into a synthesized left image, using the predicted depth from the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 505, + 381 + ], + "score": 1.0, + "content": "left image. The photometric consistency loss between the resulting synthesized and original left", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 378, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 393 + ], + "score": 1.0, + "content": "images can then be minimized in an end-to-end manner using a Structural Similarity term (Wang", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 390, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 505, + 403 + ], + "score": 1.0, + "content": "et al., 2004) and additional depth regularization terms. Following Godard et al. (2017) and Um-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 402, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 505, + 414 + ], + "score": 1.0, + "content": "menhofer et al. (2017), Zhou et al. (2017) generalized this to the purely monocular setting, where", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 412, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 505, + 424 + ], + "score": 1.0, + "content": "a depth and a pose networks are simultaneously learned from unlabeled monocular videos. Rapid", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 424, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 436 + ], + "score": 1.0, + "content": "progress in terms of architectures and objective functions (Yin & Shi, 2018; Mahjourian et al., 2018;", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 433, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 506, + 447 + ], + "score": 1.0, + "content": "Casser et al., 2019; Zou et al., 2018; Klodt & Vedaldi, 2018; Wang et al., 2018; Yang et al., 2018)", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 445, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 506, + 457 + ], + "score": 1.0, + "content": "have since then turned monocular depth estimation into one of the most successful applications of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 456, + 463, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 463, + 469 + ], + "score": 1.0, + "content": "self-supervised learning, even outperforming supervised methods (Guizilini et al., 2019).", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 270, + 506, + 469 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 473, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 472, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 505, + 486 + ], + "score": 1.0, + "content": "The introduction of semantic information to improve depth estimates has been explored in prior", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "works, and can be broadly divided into two categories. The first one uses semantic (or instance) in-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "score": 1.0, + "content": "formation to mask out or properly model dynamic portions of the image, which are not accounted for", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "in the photometric loss calculation. Guney & Geiger ¨ (2015) leveraged object knowledge in a Markov", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 517, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 506, + 529 + ], + "score": 1.0, + "content": "Random Field (MRF) to resolve stereo ambiguities, while Bai et al. (2016) used a conjunction of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 529, + 504, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 504, + 540 + ], + "score": 1.0, + "content": "instance-level segmentation and epipolar constraints to reduce uncertainty in optical flow estimation.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 538, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 505, + 552 + ], + "score": 1.0, + "content": "Casser et al. (2019) used instance-level masks to estimate motion models for different objects in the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "environment, and account for their external motion in the resulting warped image. The second cat-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "egory attempts to learn both tasks in a single framework, and uses consistency losses to ensure that", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 572, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 584 + ], + "score": 1.0, + "content": "both are optimized simultaneously and regularize each other, so the information contained in one", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "task can be transferred to improve the other. For instance, Ochs et al. (2019) estimated depth with", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "an ordinal classification loss similar to the standard semantic classification loss, and used empirical", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 605, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 617 + ], + "score": 1.0, + "content": "weighting to combine them into a single loss for optimization. Similarly, Chen et al. (2019) used a", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "unified conditional decoder that can generate either semantic or depth estimates, and both outputs", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "are used to generate a series of losses also combined using empirical weighting to generate the final", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 638, + 191, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 191, + 650 + ], + "score": 1.0, + "content": "loss to be optimized.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 472, + 506, + 650 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "score": 1.0, + "content": "Our approach focuses instead on representation learning, exploiting semantic features into the self-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 666, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 679 + ], + "score": 1.0, + "content": "supervised depth network by using a pretrained semantic segmentation network to guide the gen-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "eration of depth features. This is done using pixel-adaptive convolutions, recently proposed in Su", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "et al. (2019) and applied to tasks such as depth upsampling using RGB images for feature guidance.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "We show that different depth networks can be readily modified to leverage this semantic feature", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 721 + ], + "score": 1.0, + "content": "guidance, ranging from widely used ResNets (He et al., 2016) to the current state-of-the-art PackNet", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 719, + 459, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 719, + 459, + 734 + ], + "score": 1.0, + "content": "(Guizilini et al., 2019), with a consistent gain in performance across these architectures.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 654, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 370, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 371, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 371, + 96 + ], + "score": 1.0, + "content": "3 SELF-SUPERVISED STRUCTURE-FROM-MOTION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 105, + 505, + 185 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "Our semantically-guided architecture is developed within a self-supervised monocular depth esti-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 505, + 129 + ], + "score": 1.0, + "content": "mation setting, commonly known as structure-from-motion (SfM). Learning in a self-supervised", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 429, + 140 + ], + "score": 1.0, + "content": "structure-from-motion setting requires two networks: a monocular depth model", + "type": "text" + }, + { + "bbox": [ + 430, + 128, + 483, + 139 + ], + "score": 0.92, + "content": "f _ { D } : I D", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 128, + 505, + 140 + ], + "score": 1.0, + "content": ", that", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 138, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 106, + 140, + 214, + 153 + ], + "score": 1.0, + "content": "outputs a depth prediction", + "type": "text" + }, + { + "bbox": [ + 214, + 138, + 276, + 152 + ], + "score": 0.93, + "content": "\\hat { D } = f _ { D } ( I ( p ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 140, + 338, + 153 + ], + "score": 1.0, + "content": "for every pixel", + "type": "text" + }, + { + "bbox": [ + 339, + 142, + 345, + 151 + ], + "score": 0.79, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 140, + 424, + 153 + ], + "score": 1.0, + "content": "in the target image", + "type": "text" + }, + { + "bbox": [ + 425, + 141, + 431, + 150 + ], + "score": 0.71, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 140, + 505, + 153 + ], + "score": 1.0, + "content": "; and a monocular", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 150, + 504, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 195, + 164 + ], + "score": 1.0, + "content": "ego-motion estimator", + "type": "text" + }, + { + "bbox": [ + 196, + 151, + 285, + 163 + ], + "score": 0.89, + "content": "f _ { \\mathbf { x } } : ( I _ { t } , I _ { S } ) \\to \\mathbf { x } _ { t \\to S }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 150, + 356, + 164 + ], + "score": 1.0, + "content": ", that predicts the", + "type": "text" + }, + { + "bbox": [ + 357, + 151, + 384, + 161 + ], + "score": 0.26, + "content": "6 \\mathrm { D o F }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 150, + 478, + 164 + ], + "score": 1.0, + "content": "transformations for all", + "type": "text" + }, + { + "bbox": [ + 478, + 151, + 504, + 162 + ], + "score": 0.9, + "content": "s \\in S", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 159, + 507, + 179 + ], + "spans": [ + { + "bbox": [ + 104, + 159, + 144, + 179 + ], + "score": 1.0, + "content": "given by", + "type": "text" + }, + { + "bbox": [ + 144, + 162, + 242, + 174 + ], + "score": 0.88, + "content": "\\mathbf { x } _ { t s } = ( \\mathbf { \\Sigma } _ { \\mathbf { 0 } } ^ { \\mathbf { R } \\textbf { t } } ) \\in \\mathbf { S } \\mathbf { E } ( 3 )", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 159, + 346, + 179 + ], + "score": 1.0, + "content": "between the target image", + "type": "text" + }, + { + "bbox": [ + 347, + 163, + 356, + 173 + ], + "score": 0.86, + "content": "I _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 159, + 507, + 179 + ], + "score": 1.0, + "content": "and a set of temporal context source", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 173, + 444, + 186 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 137, + 186 + ], + "score": 1.0, + "content": "images", + "type": "text" + }, + { + "bbox": [ + 137, + 174, + 169, + 184 + ], + "score": 0.91, + "content": "I _ { s } \\in I _ { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 173, + 313, + 186 + ], + "score": 1.0, + "content": ". In all reported experiments we use", + "type": "text" + }, + { + "bbox": [ + 313, + 173, + 333, + 185 + ], + "score": 0.91, + "content": "I _ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 173, + 351, + 186 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 351, + 174, + 370, + 185 + ], + "score": 0.91, + "content": "I _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 173, + 444, + 186 + ], + "score": 1.0, + "content": "as source images.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4 + }, + { + "type": "title", + "bbox": [ + 106, + 197, + 308, + 209 + ], + "lines": [ + { + "bbox": [ + 105, + 196, + 308, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 196, + 308, + 210 + ], + "score": 1.0, + "content": "3.1 THE SELF-SUPERVISED OBJECTIVE LOSS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 217, + 505, + 277 + ], + "lines": [ + { + "bbox": [ + 106, + 218, + 504, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 504, + 230 + ], + "score": 1.0, + "content": "We train the depth and pose networks simultaneously, using the same protocols and losses as de-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 229, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 229, + 505, + 241 + ], + "score": 1.0, + "content": "scribed in Guizilini et al. (2019). Our self-supervised objective loss consists of an appearance match-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 240, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 104, + 241, + 143, + 254 + ], + "score": 1.0, + "content": "ing term", + "type": "text" + }, + { + "bbox": [ + 144, + 241, + 156, + 254 + ], + "score": 0.89, + "content": "{ \\mathcal { L } } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 241, + 323, + 254 + ], + "score": 1.0, + "content": "that is imposed between the synthesized", + "type": "text" + }, + { + "bbox": [ + 323, + 240, + 332, + 253 + ], + "score": 0.89, + "content": "\\bar { \\hat { I } } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 241, + 385, + 254 + ], + "score": 1.0, + "content": "and original", + "type": "text" + }, + { + "bbox": [ + 385, + 241, + 394, + 253 + ], + "score": 0.87, + "content": "I _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 241, + 505, + 254 + ], + "score": 1.0, + "content": "target images, and a depth", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 253, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 104, + 254, + 187, + 267 + ], + "score": 1.0, + "content": "regularization term", + "type": "text" + }, + { + "bbox": [ + 187, + 255, + 200, + 266 + ], + "score": 0.88, + "content": "\\mathcal { L } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 254, + 444, + 267 + ], + "score": 1.0, + "content": "that ensures edge-aware smoothing in the depth estimates", + "type": "text" + }, + { + "bbox": [ + 444, + 253, + 457, + 266 + ], + "score": 0.9, + "content": "\\hat { D } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 254, + 505, + 267 + ], + "score": 1.0, + "content": ". The final", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 266, + 450, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 450, + 278 + ], + "score": 1.0, + "content": "objective loss is averaged per pixel, pyramid scale and image batch, and is defined as:", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 232, + 279, + 379, + 294 + ], + "lines": [ + { + "bbox": [ + 232, + 279, + 379, + 294 + ], + "spans": [ + { + "bbox": [ + 232, + 279, + 379, + 294 + ], + "score": 0.93, + "content": "\\mathcal { L } ( I _ { t } , \\hat { I } _ { t } ) = \\mathcal { L } _ { p } ( I _ { t } , \\hat { I } _ { t } ) + \\lambda _ { 1 } \\mathcal { L } _ { s } ( \\hat { D } _ { t } )", + "type": "interline_equation", + "image_path": "761f2abe68dfa81b034447e742baf1132ea0810702d321c69fdb07bf013cb13a.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 232, + 279, + 379, + 294 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 296, + 505, + 343 + ], + "lines": [ + { + "bbox": [ + 105, + 295, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 133, + 309 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 297, + 144, + 307 + ], + "score": 0.87, + "content": "\\lambda _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 295, + 345, + 309 + ], + "score": 1.0, + "content": "is a weighting coefficient between the photometric", + "type": "text" + }, + { + "bbox": [ + 345, + 297, + 357, + 309 + ], + "score": 0.9, + "content": "{ \\mathcal { L } } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 295, + 447, + 309 + ], + "score": 1.0, + "content": "and depth smoothness", + "type": "text" + }, + { + "bbox": [ + 448, + 297, + 459, + 307 + ], + "score": 0.88, + "content": "\\mathcal { L } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 295, + 505, + 309 + ], + "score": 1.0, + "content": "loss terms.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 308, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 477, + 321 + ], + "score": 1.0, + "content": "Following Godard et al. (2017) and Zhou et al. (2017), the similarity between synthesized", + "type": "text" + }, + { + "bbox": [ + 477, + 308, + 486, + 321 + ], + "score": 0.88, + "content": "\\hat { I } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 308, + 505, + 321 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 321, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 140, + 333 + ], + "score": 1.0, + "content": "original", + "type": "text" + }, + { + "bbox": [ + 140, + 322, + 149, + 332 + ], + "score": 0.85, + "content": "I _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 321, + 505, + 333 + ], + "score": 1.0, + "content": "target images is estimated using a Structural Similarity (SSIM) term (Wang et al., 2004)", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 332, + 430, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 430, + 344 + ], + "score": 1.0, + "content": "combined with an L1 loss term, inducing the following overall photometric loss:", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 345, + 415, + 371 + ], + "lines": [ + { + "bbox": [ + 196, + 345, + 415, + 371 + ], + "spans": [ + { + "bbox": [ + 196, + 345, + 415, + 371 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { p } ( I _ { t } , \\hat { I } _ { t } ) = \\alpha \\frac { 1 - \\mathrm { S S I M } ( I _ { t } , \\hat { I } _ { t } ) } { 2 } + ( 1 - \\alpha ) \\parallel I _ { t } - \\hat { I } _ { t } \\parallel", + "type": "interline_equation", + "image_path": "f2a66c686ee12d86d751182aa0618de9112625ef825ac1c804f306732f83ea01.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 196, + 345, + 415, + 371 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 372, + 505, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 371, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 506, + 385 + ], + "score": 1.0, + "content": "In order to regularize the depth in low gradient regions, we incorporate an edge-aware term similar", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 384, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 506, + 396 + ], + "score": 1.0, + "content": "to Godard et al. (2017). This loss is weighted for each of the pyramid levels, decaying by a factor of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 393, + 421, + 407 + ], + "spans": [ + { + "bbox": [ + 104, + 393, + 347, + 407 + ], + "score": 1.0, + "content": "2 on each downsampling, starting with a weight of 1 for the", + "type": "text" + }, + { + "bbox": [ + 347, + 394, + 359, + 405 + ], + "score": 0.86, + "content": "0 ^ { \\mathrm { { i } \\mathrm { { \\bar { h } } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 393, + 421, + 407 + ], + "score": 1.0, + "content": "pyramid level.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 408, + 392, + 424 + ], + "lines": [ + { + "bbox": [ + 218, + 408, + 392, + 424 + ], + "spans": [ + { + "bbox": [ + 218, + 408, + 392, + 424 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { s } ( \\hat { D } _ { t } ) = | \\delta _ { x } \\hat { D } _ { t } | e ^ { - | \\delta _ { x } I _ { t } | } + | \\delta _ { y } \\hat { D } _ { t } | e ^ { - | \\delta _ { y } I _ { t } | }", + "type": "interline_equation", + "image_path": "bdd6a57a38eb218b5f7baba4a91ebe102970a1a99333a6272f6df20bd96d94e2.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 218, + 408, + 392, + 424 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 425, + 505, + 459 + ], + "lines": [ + { + "bbox": [ + 105, + 424, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 439 + ], + "score": 1.0, + "content": "We also incorporate some of the insights introduced in Godard et al. (2018), namely auto-masking,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 436, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 505, + 449 + ], + "score": 1.0, + "content": "minimum reprojection error, and inverse depth map upsampling to further improve depth estimation", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 447, + 325, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 325, + 461 + ], + "score": 1.0, + "content": "performance in our self-supervised monocular setting.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 108, + 471, + 259, + 483 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 261, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 261, + 484 + ], + "score": 1.0, + "content": "3.2 DEPTH AND POSE NETWORKS", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 491, + 506, + 570 + ], + "lines": [ + { + "bbox": [ + 106, + 492, + 504, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 504, + 504 + ], + "score": 1.0, + "content": "Our baseline depth and pose networks are based on the PackNet architecture introduced by Guizilini", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "score": 1.0, + "content": "et al. (2019), which proposes novel packing and unpacking blocks to respectively downsample and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "upsample feature maps during the encoding and decoding stages. This network was selected due", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "score": 1.0, + "content": "to its state-of-the-art performance in the task of self-supervised monocular depth estimation, so we", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "score": 1.0, + "content": "can analyze if our proposed architecture is capable of further improving the current state-of-the-art.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 547, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 506, + 560 + ], + "score": 1.0, + "content": "However, there are no restrictions as to which models our proposed semantically-guided architecture", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 559, + 462, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 462, + 570 + ], + "score": 1.0, + "content": "can be applied to, and in Section 5.4 we study its application to different depth networks.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31 + }, + { + "type": "title", + "bbox": [ + 105, + 584, + 471, + 598 + ], + "lines": [ + { + "bbox": [ + 105, + 584, + 473, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 473, + 599 + ], + "score": 1.0, + "content": "4 SEMANTICALLY-GUIDED GEOMETRIC REPRESENTATION LEARNING", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 608, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "In this section, we describe our method to inject semantic information into a self-supervised depth", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 621, + 504, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 504, + 632 + ], + "score": 1.0, + "content": "network via its augmentation with semantic-aware convolutions. Our proposed architecture is de-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "score": 1.0, + "content": "picted in Figure 2 and is composed of two networks: a primary one, responsible for the generation", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 642, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 190, + 657 + ], + "score": 1.0, + "content": "of depth predictions", + "type": "text" + }, + { + "bbox": [ + 191, + 642, + 253, + 656 + ], + "score": 0.93, + "content": "\\hat { D } = f _ { D } ( I ( p ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 642, + 505, + 657 + ], + "score": 1.0, + "content": "; and a secondary one, capable of producing semantic predic-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "tions. Only the first network is optimized during self-supervised learning; the semantic network is", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "initialized from pretrained weights and is not further optimized. This is in contrast to the common", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 677, + 504, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 504, + 689 + ], + "score": 1.0, + "content": "practice of supervised (ImageNet) pretraining of depth encoders (Godard et al., 2018; Casser et al.,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "2019; Zou et al., 2018): here instead of fine-tuning from pre-trained weights, we preserve these sec-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "ondary weights to guide the feature learning process of the primary depth network. Our approach", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "also differs from learning without forgetting (Li & Hoiem, 2017) by leveraging fixed intermediate", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 484, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 484, + 734 + ], + "score": 1.0, + "content": "feature representations as a way to maintain consistent semantic guidance throughout training.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 41 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 294, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 370, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 371, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 371, + 96 + ], + "score": 1.0, + "content": "3 SELF-SUPERVISED STRUCTURE-FROM-MOTION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 105, + 505, + 185 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "Our semantically-guided architecture is developed within a self-supervised monocular depth esti-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 505, + 129 + ], + "score": 1.0, + "content": "mation setting, commonly known as structure-from-motion (SfM). Learning in a self-supervised", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 429, + 140 + ], + "score": 1.0, + "content": "structure-from-motion setting requires two networks: a monocular depth model", + "type": "text" + }, + { + "bbox": [ + 430, + 128, + 483, + 139 + ], + "score": 0.92, + "content": "f _ { D } : I D", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 128, + 505, + 140 + ], + "score": 1.0, + "content": ", that", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 138, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 106, + 140, + 214, + 153 + ], + "score": 1.0, + "content": "outputs a depth prediction", + "type": "text" + }, + { + "bbox": [ + 214, + 138, + 276, + 152 + ], + "score": 0.93, + "content": "\\hat { D } = f _ { D } ( I ( p ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 140, + 338, + 153 + ], + "score": 1.0, + "content": "for every pixel", + "type": "text" + }, + { + "bbox": [ + 339, + 142, + 345, + 151 + ], + "score": 0.79, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 140, + 424, + 153 + ], + "score": 1.0, + "content": "in the target image", + "type": "text" + }, + { + "bbox": [ + 425, + 141, + 431, + 150 + ], + "score": 0.71, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 140, + 505, + 153 + ], + "score": 1.0, + "content": "; and a monocular", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 150, + 504, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 195, + 164 + ], + "score": 1.0, + "content": "ego-motion estimator", + "type": "text" + }, + { + "bbox": [ + 196, + 151, + 285, + 163 + ], + "score": 0.89, + "content": "f _ { \\mathbf { x } } : ( I _ { t } , I _ { S } ) \\to \\mathbf { x } _ { t \\to S }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 150, + 356, + 164 + ], + "score": 1.0, + "content": ", that predicts the", + "type": "text" + }, + { + "bbox": [ + 357, + 151, + 384, + 161 + ], + "score": 0.26, + "content": "6 \\mathrm { D o F }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 150, + 478, + 164 + ], + "score": 1.0, + "content": "transformations for all", + "type": "text" + }, + { + "bbox": [ + 478, + 151, + 504, + 162 + ], + "score": 0.9, + "content": "s \\in S", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 159, + 507, + 179 + ], + "spans": [ + { + "bbox": [ + 104, + 159, + 144, + 179 + ], + "score": 1.0, + "content": "given by", + "type": "text" + }, + { + "bbox": [ + 144, + 162, + 242, + 174 + ], + "score": 0.88, + "content": "\\mathbf { x } _ { t s } = ( \\mathbf { \\Sigma } _ { \\mathbf { 0 } } ^ { \\mathbf { R } \\textbf { t } } ) \\in \\mathbf { S } \\mathbf { E } ( 3 )", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 159, + 346, + 179 + ], + "score": 1.0, + "content": "between the target image", + "type": "text" + }, + { + "bbox": [ + 347, + 163, + 356, + 173 + ], + "score": 0.86, + "content": "I _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 159, + 507, + 179 + ], + "score": 1.0, + "content": "and a set of temporal context source", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 173, + 444, + 186 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 137, + 186 + ], + "score": 1.0, + "content": "images", + "type": "text" + }, + { + "bbox": [ + 137, + 174, + 169, + 184 + ], + "score": 0.91, + "content": "I _ { s } \\in I _ { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 173, + 313, + 186 + ], + "score": 1.0, + "content": ". In all reported experiments we use", + "type": "text" + }, + { + "bbox": [ + 313, + 173, + 333, + 185 + ], + "score": 0.91, + "content": "I _ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 173, + 351, + 186 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 351, + 174, + 370, + 185 + ], + "score": 0.91, + "content": "I _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 173, + 444, + 186 + ], + "score": 1.0, + "content": "as source images.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4, + "bbox_fs": [ + 104, + 105, + 507, + 186 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 197, + 308, + 209 + ], + "lines": [ + { + "bbox": [ + 105, + 196, + 308, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 196, + 308, + 210 + ], + "score": 1.0, + "content": "3.1 THE SELF-SUPERVISED OBJECTIVE LOSS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 217, + 505, + 277 + ], + "lines": [ + { + "bbox": [ + 106, + 218, + 504, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 504, + 230 + ], + "score": 1.0, + "content": "We train the depth and pose networks simultaneously, using the same protocols and losses as de-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 229, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 229, + 505, + 241 + ], + "score": 1.0, + "content": "scribed in Guizilini et al. (2019). Our self-supervised objective loss consists of an appearance match-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 240, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 104, + 241, + 143, + 254 + ], + "score": 1.0, + "content": "ing term", + "type": "text" + }, + { + "bbox": [ + 144, + 241, + 156, + 254 + ], + "score": 0.89, + "content": "{ \\mathcal { L } } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 241, + 323, + 254 + ], + "score": 1.0, + "content": "that is imposed between the synthesized", + "type": "text" + }, + { + "bbox": [ + 323, + 240, + 332, + 253 + ], + "score": 0.89, + "content": "\\bar { \\hat { I } } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 241, + 385, + 254 + ], + "score": 1.0, + "content": "and original", + "type": "text" + }, + { + "bbox": [ + 385, + 241, + 394, + 253 + ], + "score": 0.87, + "content": "I _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 241, + 505, + 254 + ], + "score": 1.0, + "content": "target images, and a depth", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 253, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 104, + 254, + 187, + 267 + ], + "score": 1.0, + "content": "regularization term", + "type": "text" + }, + { + "bbox": [ + 187, + 255, + 200, + 266 + ], + "score": 0.88, + "content": "\\mathcal { L } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 254, + 444, + 267 + ], + "score": 1.0, + "content": "that ensures edge-aware smoothing in the depth estimates", + "type": "text" + }, + { + "bbox": [ + 444, + 253, + 457, + 266 + ], + "score": 0.9, + "content": "\\hat { D } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 254, + 505, + 267 + ], + "score": 1.0, + "content": ". The final", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 266, + 450, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 450, + 278 + ], + "score": 1.0, + "content": "objective loss is averaged per pixel, pyramid scale and image batch, and is defined as:", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11, + "bbox_fs": [ + 104, + 218, + 505, + 278 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 232, + 279, + 379, + 294 + ], + "lines": [ + { + "bbox": [ + 232, + 279, + 379, + 294 + ], + "spans": [ + { + "bbox": [ + 232, + 279, + 379, + 294 + ], + "score": 0.93, + "content": "\\mathcal { L } ( I _ { t } , \\hat { I } _ { t } ) = \\mathcal { L } _ { p } ( I _ { t } , \\hat { I } _ { t } ) + \\lambda _ { 1 } \\mathcal { L } _ { s } ( \\hat { D } _ { t } )", + "type": "interline_equation", + "image_path": "761f2abe68dfa81b034447e742baf1132ea0810702d321c69fdb07bf013cb13a.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 232, + 279, + 379, + 294 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 296, + 505, + 343 + ], + "lines": [ + { + "bbox": [ + 105, + 295, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 133, + 309 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 297, + 144, + 307 + ], + "score": 0.87, + "content": "\\lambda _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 295, + 345, + 309 + ], + "score": 1.0, + "content": "is a weighting coefficient between the photometric", + "type": "text" + }, + { + "bbox": [ + 345, + 297, + 357, + 309 + ], + "score": 0.9, + "content": "{ \\mathcal { L } } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 295, + 447, + 309 + ], + "score": 1.0, + "content": "and depth smoothness", + "type": "text" + }, + { + "bbox": [ + 448, + 297, + 459, + 307 + ], + "score": 0.88, + "content": "\\mathcal { L } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 295, + 505, + 309 + ], + "score": 1.0, + "content": "loss terms.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 308, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 477, + 321 + ], + "score": 1.0, + "content": "Following Godard et al. (2017) and Zhou et al. (2017), the similarity between synthesized", + "type": "text" + }, + { + "bbox": [ + 477, + 308, + 486, + 321 + ], + "score": 0.88, + "content": "\\hat { I } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 308, + 505, + 321 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 321, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 140, + 333 + ], + "score": 1.0, + "content": "original", + "type": "text" + }, + { + "bbox": [ + 140, + 322, + 149, + 332 + ], + "score": 0.85, + "content": "I _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 321, + 505, + 333 + ], + "score": 1.0, + "content": "target images is estimated using a Structural Similarity (SSIM) term (Wang et al., 2004)", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 332, + 430, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 430, + 344 + ], + "score": 1.0, + "content": "combined with an L1 loss term, inducing the following overall photometric loss:", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 295, + 505, + 344 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 345, + 415, + 371 + ], + "lines": [ + { + "bbox": [ + 196, + 345, + 415, + 371 + ], + "spans": [ + { + "bbox": [ + 196, + 345, + 415, + 371 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { p } ( I _ { t } , \\hat { I } _ { t } ) = \\alpha \\frac { 1 - \\mathrm { S S I M } ( I _ { t } , \\hat { I } _ { t } ) } { 2 } + ( 1 - \\alpha ) \\parallel I _ { t } - \\hat { I } _ { t } \\parallel", + "type": "interline_equation", + "image_path": "f2a66c686ee12d86d751182aa0618de9112625ef825ac1c804f306732f83ea01.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 196, + 345, + 415, + 371 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 372, + 505, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 371, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 506, + 385 + ], + "score": 1.0, + "content": "In order to regularize the depth in low gradient regions, we incorporate an edge-aware term similar", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 384, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 506, + 396 + ], + "score": 1.0, + "content": "to Godard et al. (2017). This loss is weighted for each of the pyramid levels, decaying by a factor of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 393, + 421, + 407 + ], + "spans": [ + { + "bbox": [ + 104, + 393, + 347, + 407 + ], + "score": 1.0, + "content": "2 on each downsampling, starting with a weight of 1 for the", + "type": "text" + }, + { + "bbox": [ + 347, + 394, + 359, + 405 + ], + "score": 0.86, + "content": "0 ^ { \\mathrm { { i } \\mathrm { { \\bar { h } } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 393, + 421, + 407 + ], + "score": 1.0, + "content": "pyramid level.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 104, + 371, + 506, + 407 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 408, + 392, + 424 + ], + "lines": [ + { + "bbox": [ + 218, + 408, + 392, + 424 + ], + "spans": [ + { + "bbox": [ + 218, + 408, + 392, + 424 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { s } ( \\hat { D } _ { t } ) = | \\delta _ { x } \\hat { D } _ { t } | e ^ { - | \\delta _ { x } I _ { t } | } + | \\delta _ { y } \\hat { D } _ { t } | e ^ { - | \\delta _ { y } I _ { t } | }", + "type": "interline_equation", + "image_path": "bdd6a57a38eb218b5f7baba4a91ebe102970a1a99333a6272f6df20bd96d94e2.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 218, + 408, + 392, + 424 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 425, + 505, + 459 + ], + "lines": [ + { + "bbox": [ + 105, + 424, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 439 + ], + "score": 1.0, + "content": "We also incorporate some of the insights introduced in Godard et al. (2018), namely auto-masking,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 436, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 505, + 449 + ], + "score": 1.0, + "content": "minimum reprojection error, and inverse depth map upsampling to further improve depth estimation", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 447, + 325, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 325, + 461 + ], + "score": 1.0, + "content": "performance in our self-supervised monocular setting.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 424, + 505, + 461 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 471, + 259, + 483 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 261, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 261, + 484 + ], + "score": 1.0, + "content": "3.2 DEPTH AND POSE NETWORKS", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 491, + 506, + 570 + ], + "lines": [ + { + "bbox": [ + 106, + 492, + 504, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 504, + 504 + ], + "score": 1.0, + "content": "Our baseline depth and pose networks are based on the PackNet architecture introduced by Guizilini", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "score": 1.0, + "content": "et al. (2019), which proposes novel packing and unpacking blocks to respectively downsample and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "upsample feature maps during the encoding and decoding stages. This network was selected due", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "score": 1.0, + "content": "to its state-of-the-art performance in the task of self-supervised monocular depth estimation, so we", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "score": 1.0, + "content": "can analyze if our proposed architecture is capable of further improving the current state-of-the-art.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 547, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 506, + 560 + ], + "score": 1.0, + "content": "However, there are no restrictions as to which models our proposed semantically-guided architecture", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 559, + 462, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 462, + 570 + ], + "score": 1.0, + "content": "can be applied to, and in Section 5.4 we study its application to different depth networks.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 492, + 506, + 570 + ] + }, + { + "type": "title", + "bbox": [ + 105, + 584, + 471, + 598 + ], + "lines": [ + { + "bbox": [ + 105, + 584, + 473, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 473, + 599 + ], + "score": 1.0, + "content": "4 SEMANTICALLY-GUIDED GEOMETRIC REPRESENTATION LEARNING", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 608, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "In this section, we describe our method to inject semantic information into a self-supervised depth", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 621, + 504, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 504, + 632 + ], + "score": 1.0, + "content": "network via its augmentation with semantic-aware convolutions. Our proposed architecture is de-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "score": 1.0, + "content": "picted in Figure 2 and is composed of two networks: a primary one, responsible for the generation", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 642, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 190, + 657 + ], + "score": 1.0, + "content": "of depth predictions", + "type": "text" + }, + { + "bbox": [ + 191, + 642, + 253, + 656 + ], + "score": 0.93, + "content": "\\hat { D } = f _ { D } ( I ( p ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 642, + 505, + 657 + ], + "score": 1.0, + "content": "; and a secondary one, capable of producing semantic predic-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "tions. Only the first network is optimized during self-supervised learning; the semantic network is", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "initialized from pretrained weights and is not further optimized. This is in contrast to the common", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 677, + 504, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 504, + 689 + ], + "score": 1.0, + "content": "practice of supervised (ImageNet) pretraining of depth encoders (Godard et al., 2018; Casser et al.,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "2019; Zou et al., 2018): here instead of fine-tuning from pre-trained weights, we preserve these sec-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "ondary weights to guide the feature learning process of the primary depth network. Our approach", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "also differs from learning without forgetting (Li & Hoiem, 2017) by leveraging fixed intermediate", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 484, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 484, + 734 + ], + "score": 1.0, + "content": "feature representations as a way to maintain consistent semantic guidance throughout training.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 609, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 126, + 73, + 484, + 199 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 126, + 73, + 484, + 199 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 126, + 73, + 484, + 199 + ], + "spans": [ + { + "bbox": [ + 126, + 73, + 484, + 199 + ], + "score": 0.976, + "type": "image", + "image_path": "768e7a4db114cab117418b58a69ddf5a06d6900d9c4ab615ba74d01856d69ab0.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 126, + 73, + 484, + 115.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 126, + 115.0, + 484, + 157.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 126, + 157.0, + 484, + 199.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 208, + 505, + 263 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 209, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 505, + 221 + ], + "score": 1.0, + "content": "Figure 2: Diagram of our proposed architecture for self-supervised monocular depth estimation", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 218, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 505, + 232 + ], + "score": 1.0, + "content": "with semantically-guided feature learning. The semantic network is fixed and initialized from pre-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 228, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 104, + 228, + 506, + 245 + ], + "score": 1.0, + "content": "trained weights, while the depth network is trained end-to-end in a self-supervised way, including", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 240, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 505, + 255 + ], + "score": 1.0, + "content": "pixel-adaptive convolutions (Guidance) on its decoder to learn semantic-dependent geometric fea-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 252, + 131, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 131, + 265 + ], + "score": 1.0, + "content": "tures.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "title", + "bbox": [ + 107, + 275, + 317, + 286 + ], + "lines": [ + { + "bbox": [ + 106, + 275, + 318, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 318, + 287 + ], + "score": 1.0, + "content": "4.1 SEMANTICALLY-GUIDED DEPTH FEATURES", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 295, + 505, + 438 + ], + "lines": [ + { + "bbox": [ + 106, + 295, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 505, + 308 + ], + "score": 1.0, + "content": "We leverage the information from the pretrained semantic network in the depth network through the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 305, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 505, + 320 + ], + "score": 1.0, + "content": "use of pixel-adaptive convolutions (Su et al., 2019). They were recently proposed to address some", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 317, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 505, + 331 + ], + "score": 1.0, + "content": "limitations inherent to the standard convolution operation, namely its translation invariance making", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 329, + 504, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 504, + 340 + ], + "score": 1.0, + "content": "it content-agnostic. While this significantly reduces the number of parameters of the resulting net-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 339, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 505, + 353 + ], + "score": 1.0, + "content": "work, this might also lead to sub-optimal solutions under certain conditions important for geometric", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 505, + 363 + ], + "score": 1.0, + "content": "representation learning. For example, spatially-shared filters globally average the loss gradients", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 361, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 505, + 374 + ], + "score": 1.0, + "content": "over the entire image, forcing the network to learn weights that cannot leverage location-specific", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 372, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 505, + 385 + ], + "score": 1.0, + "content": "information beyond their limited receptive fields. Content-agnostic filters are unable to distinguish", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "between different pixels that are visually similar (i.e. dark areas due to shadows or black objects) or", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 394, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 505, + 407 + ], + "score": 1.0, + "content": "generalize to similar objects that are visually different (i.e. cars with varying colors). In this work,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 406, + 504, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 504, + 417 + ], + "score": 1.0, + "content": "we use pixel-adaptive convolutions to produce semantic-aware depth features, where the fixed in-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "score": 1.0, + "content": "formation encoded in the semantic network is used to disambiguate geometric representations for", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 427, + 284, + 440 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 284, + 440 + ], + "score": 1.0, + "content": "the generation of multi-level depth features.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 443, + 505, + 499 + ], + "lines": [ + { + "bbox": [ + 106, + 443, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 505, + 455 + ], + "score": 1.0, + "content": "As shown in Figure 2, we extract multi-level feature maps from the semantic network. For each", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 455, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 207, + 468 + ], + "score": 1.0, + "content": "feature map, we apply a", + "type": "text" + }, + { + "bbox": [ + 208, + 456, + 232, + 466 + ], + "score": 0.9, + "content": "3 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 455, + 258, + 468 + ], + "score": 1.0, + "content": "and a", + "type": "text" + }, + { + "bbox": [ + 259, + 455, + 283, + 466 + ], + "score": 0.9, + "content": "1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 455, + 505, + 468 + ], + "score": 1.0, + "content": "convolutional layer followed by Group Normalization", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "(Wu & He, 2018) and ELU non-linearities (Clevert et al., 2016). These processed semantic feature", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 475, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 104, + 475, + 506, + 491 + ], + "score": 1.0, + "content": "maps are then used as guidance on their respective pixel-adaptive convolutional layers, following", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 487, + 286, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 219, + 501 + ], + "score": 1.0, + "content": "the formulation proposed in", + "type": "text" + }, + { + "bbox": [ + 220, + 488, + 232, + 498 + ], + "score": 0.37, + "content": "\\mathrm { S u }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 487, + 286, + 501 + ], + "score": 1.0, + "content": "et al. (2019):", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24 + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 502, + 385, + 531 + ], + "lines": [ + { + "bbox": [ + 226, + 502, + 385, + 531 + ], + "spans": [ + { + "bbox": [ + 226, + 502, + 385, + 531 + ], + "score": 0.94, + "content": "\\mathbf { v } _ { i } ^ { \\prime } = \\sum _ { j \\in \\Omega ( i ) } K ( \\mathbf { f } _ { i } , \\mathbf { f } _ { j } ) \\mathbf { W } [ \\mathbf { p } _ { i } - \\mathbf { p } _ { j } ] \\mathbf { v } _ { j } + \\mathbf { b }", + "type": "interline_equation", + "image_path": "f3fef7cb20207b1c3ef03f527c9aea2361576831a29f017ee6708df9c24376ac.jpg" + } + ] + } + ], + "index": 27.5, + "virtual_lines": [ + { + "bbox": [ + 226, + 502, + 385, + 516.5 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 226, + 516.5, + 385, + 531.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 534, + 505, + 601 + ], + "lines": [ + { + "bbox": [ + 105, + 534, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 198, + 547 + ], + "score": 1.0, + "content": "In the above equation,", + "type": "text" + }, + { + "bbox": [ + 198, + 534, + 231, + 546 + ], + "score": 0.91, + "content": "\\mathbf { f } \\in \\mathcal { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 534, + 506, + 547 + ], + "score": 1.0, + "content": "are processed features from the semantic network that will serve to", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 545, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 362, + 560 + ], + "score": 1.0, + "content": "guide the pixel-adaptive convolutions from the depth network,", + "type": "text" + }, + { + "bbox": [ + 362, + 545, + 414, + 558 + ], + "score": 0.94, + "content": "\\mathbf { p } = ( x , y ) ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 545, + 506, + 560 + ], + "score": 1.0, + "content": "are pixel coordinates,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 557, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 128, + 570 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 128, + 557, + 167, + 569 + ], + "score": 0.9, + "content": "[ { \\bf p } _ { i } - { \\bf p } _ { j } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 557, + 348, + 570 + ], + "score": 1.0, + "content": "denoting 2D spatial offsets between pixels,", + "type": "text" + }, + { + "bbox": [ + 348, + 558, + 375, + 568 + ], + "score": 0.9, + "content": "\\mathbf { W } _ { k \\times k }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 557, + 505, + 570 + ], + "score": 1.0, + "content": "are convolutional weights with", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 567, + 504, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 151, + 580 + ], + "score": 1.0, + "content": "kernel size", + "type": "text" + }, + { + "bbox": [ + 151, + 569, + 172, + 579 + ], + "score": 0.54, + "content": "k , \\check { \\Omega } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 567, + 210, + 580 + ], + "score": 1.0, + "content": "defines a", + "type": "text" + }, + { + "bbox": [ + 210, + 568, + 231, + 578 + ], + "score": 0.9, + "content": "k \\times k", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 567, + 352, + 580 + ], + "score": 1.0, + "content": "convolutional window around", + "type": "text" + }, + { + "bbox": [ + 352, + 569, + 356, + 578 + ], + "score": 0.71, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 567, + 360, + 580 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 360, + 570, + 366, + 578 + ], + "score": 0.56, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 567, + 504, + 580 + ], + "score": 1.0, + "content": "is the input signal to be convolved,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 577, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 123, + 593 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 579, + 154, + 589 + ], + "score": 0.91, + "content": "\\mathbf { b } \\in \\mathcal { R } ^ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 577, + 212, + 593 + ], + "score": 1.0, + "content": "is a bias term.", + "type": "text" + }, + { + "bbox": [ + 213, + 579, + 223, + 589 + ], + "score": 0.83, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 577, + 506, + 593 + ], + "score": 1.0, + "content": "is the kernel used to calculate the correlation between guiding features,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 590, + 298, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 298, + 601 + ], + "score": 1.0, + "content": "here chosen to be the standard Gaussian kernel:", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5 + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 602, + 400, + 630 + ], + "lines": [ + { + "bbox": [ + 210, + 602, + 400, + 630 + ], + "spans": [ + { + "bbox": [ + 210, + 602, + 400, + 630 + ], + "score": 0.95, + "content": "K ( \\mathbf { f } _ { i } , \\mathbf { f } _ { j } ) = \\exp \\left( - \\frac { 1 } { 2 } ( \\mathbf { f } _ { i } - \\mathbf { f } _ { j } ) ^ { T } \\Sigma _ { i j } ^ { - 1 } ( \\mathbf { f } _ { i } - \\mathbf { f } _ { j } ) \\right)", + "type": "interline_equation", + "image_path": "342bdf167552c4191233cf0175ff696f26e046329d7bb2de0a3adfc72f586e04.jpg" + } + ] + } + ], + "index": 35.5, + "virtual_lines": [ + { + "bbox": [ + 210, + 602, + 400, + 616.0 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 210, + 616.0, + 400, + 630.0 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 631, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 106, + 632, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 133, + 644 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 632, + 149, + 644 + ], + "score": 0.9, + "content": "\\Sigma _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 632, + 319, + 644 + ], + "score": 1.0, + "content": "is the covariance matrix between features", + "type": "text" + }, + { + "bbox": [ + 319, + 632, + 327, + 643 + ], + "score": 0.87, + "content": "\\mathbf { f } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 632, + 345, + 644 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 346, + 632, + 355, + 644 + ], + "score": 0.88, + "content": "\\mathbf { f } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 632, + 505, + 644 + ], + "score": 1.0, + "content": ", here chosen to be a diagonal matrix", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 642, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 643, + 134, + 655 + ], + "score": 0.94, + "content": "\\sigma ^ { 2 } \\cdot I _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 642, + 158, + 657 + ], + "score": 1.0, + "content": ", with", + "type": "text" + }, + { + "bbox": [ + 158, + 646, + 165, + 654 + ], + "score": 0.77, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 642, + 506, + 657 + ], + "score": 1.0, + "content": "as an extra learnable parameter for each convolutional filter. These kernel evaluations", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 654, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 104, + 654, + 505, + 669 + ], + "score": 1.0, + "content": "can be seen as a secondary set of weights applied to the standard convolutional weights, changing", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 665, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 104, + 665, + 505, + 679 + ], + "score": 1.0, + "content": "their impact on the resulting depth features depending on the content stored in the guiding semantic", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "features. For example, the information contained in depth features pertaining to the sky should", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 689, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 700 + ], + "score": 1.0, + "content": "not be used to generate depth features describing a pedestrian, and this behavior is now captured", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "as a larger distance between their corresponding semantic features, which in turn produces smaller", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "weights for that particular convolutional filter. Note that the standard convolution can be considered", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 720, + 411, + 734 + ], + "spans": [ + { + "bbox": [ + 104, + 720, + 326, + 734 + ], + "score": 1.0, + "content": "a special case of the pixel-adaptive convolution, where", + "type": "text" + }, + { + "bbox": [ + 326, + 720, + 406, + 733 + ], + "score": 0.92, + "content": "\\forall ~ i j , K ( \\mathbf { f } _ { i } , \\mathbf { f } _ { j } ) ~ = ~ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 720, + 411, + 734 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 41 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 126, + 73, + 484, + 199 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 126, + 73, + 484, + 199 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 126, + 73, + 484, + 199 + ], + "spans": [ + { + "bbox": [ + 126, + 73, + 484, + 199 + ], + "score": 0.976, + "type": "image", + "image_path": "768e7a4db114cab117418b58a69ddf5a06d6900d9c4ab615ba74d01856d69ab0.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 126, + 73, + 484, + 115.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 126, + 115.0, + 484, + 157.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 126, + 157.0, + 484, + 199.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 208, + 505, + 263 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 209, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 505, + 221 + ], + "score": 1.0, + "content": "Figure 2: Diagram of our proposed architecture for self-supervised monocular depth estimation", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 218, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 505, + 232 + ], + "score": 1.0, + "content": "with semantically-guided feature learning. The semantic network is fixed and initialized from pre-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 228, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 104, + 228, + 506, + 245 + ], + "score": 1.0, + "content": "trained weights, while the depth network is trained end-to-end in a self-supervised way, including", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 240, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 505, + 255 + ], + "score": 1.0, + "content": "pixel-adaptive convolutions (Guidance) on its decoder to learn semantic-dependent geometric fea-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 252, + 131, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 131, + 265 + ], + "score": 1.0, + "content": "tures.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "title", + "bbox": [ + 107, + 275, + 317, + 286 + ], + "lines": [ + { + "bbox": [ + 106, + 275, + 318, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 318, + 287 + ], + "score": 1.0, + "content": "4.1 SEMANTICALLY-GUIDED DEPTH FEATURES", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 295, + 505, + 438 + ], + "lines": [ + { + "bbox": [ + 106, + 295, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 505, + 308 + ], + "score": 1.0, + "content": "We leverage the information from the pretrained semantic network in the depth network through the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 305, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 505, + 320 + ], + "score": 1.0, + "content": "use of pixel-adaptive convolutions (Su et al., 2019). They were recently proposed to address some", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 317, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 505, + 331 + ], + "score": 1.0, + "content": "limitations inherent to the standard convolution operation, namely its translation invariance making", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 329, + 504, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 504, + 340 + ], + "score": 1.0, + "content": "it content-agnostic. While this significantly reduces the number of parameters of the resulting net-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 339, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 505, + 353 + ], + "score": 1.0, + "content": "work, this might also lead to sub-optimal solutions under certain conditions important for geometric", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 505, + 363 + ], + "score": 1.0, + "content": "representation learning. For example, spatially-shared filters globally average the loss gradients", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 361, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 505, + 374 + ], + "score": 1.0, + "content": "over the entire image, forcing the network to learn weights that cannot leverage location-specific", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 372, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 505, + 385 + ], + "score": 1.0, + "content": "information beyond their limited receptive fields. Content-agnostic filters are unable to distinguish", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "between different pixels that are visually similar (i.e. dark areas due to shadows or black objects) or", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 394, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 505, + 407 + ], + "score": 1.0, + "content": "generalize to similar objects that are visually different (i.e. cars with varying colors). In this work,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 406, + 504, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 504, + 417 + ], + "score": 1.0, + "content": "we use pixel-adaptive convolutions to produce semantic-aware depth features, where the fixed in-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "score": 1.0, + "content": "formation encoded in the semantic network is used to disambiguate geometric representations for", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 427, + 284, + 440 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 284, + 440 + ], + "score": 1.0, + "content": "the generation of multi-level depth features.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 295, + 506, + 440 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 443, + 505, + 499 + ], + "lines": [ + { + "bbox": [ + 106, + 443, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 505, + 455 + ], + "score": 1.0, + "content": "As shown in Figure 2, we extract multi-level feature maps from the semantic network. For each", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 455, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 207, + 468 + ], + "score": 1.0, + "content": "feature map, we apply a", + "type": "text" + }, + { + "bbox": [ + 208, + 456, + 232, + 466 + ], + "score": 0.9, + "content": "3 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 455, + 258, + 468 + ], + "score": 1.0, + "content": "and a", + "type": "text" + }, + { + "bbox": [ + 259, + 455, + 283, + 466 + ], + "score": 0.9, + "content": "1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 455, + 505, + 468 + ], + "score": 1.0, + "content": "convolutional layer followed by Group Normalization", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "(Wu & He, 2018) and ELU non-linearities (Clevert et al., 2016). These processed semantic feature", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 475, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 104, + 475, + 506, + 491 + ], + "score": 1.0, + "content": "maps are then used as guidance on their respective pixel-adaptive convolutional layers, following", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 487, + 286, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 219, + 501 + ], + "score": 1.0, + "content": "the formulation proposed in", + "type": "text" + }, + { + "bbox": [ + 220, + 488, + 232, + 498 + ], + "score": 0.37, + "content": "\\mathrm { S u }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 487, + 286, + 501 + ], + "score": 1.0, + "content": "et al. (2019):", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24, + "bbox_fs": [ + 104, + 443, + 506, + 501 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 502, + 385, + 531 + ], + "lines": [ + { + "bbox": [ + 226, + 502, + 385, + 531 + ], + "spans": [ + { + "bbox": [ + 226, + 502, + 385, + 531 + ], + "score": 0.94, + "content": "\\mathbf { v } _ { i } ^ { \\prime } = \\sum _ { j \\in \\Omega ( i ) } K ( \\mathbf { f } _ { i } , \\mathbf { f } _ { j } ) \\mathbf { W } [ \\mathbf { p } _ { i } - \\mathbf { p } _ { j } ] \\mathbf { v } _ { j } + \\mathbf { b }", + "type": "interline_equation", + "image_path": "f3fef7cb20207b1c3ef03f527c9aea2361576831a29f017ee6708df9c24376ac.jpg" + } + ] + } + ], + "index": 27.5, + "virtual_lines": [ + { + "bbox": [ + 226, + 502, + 385, + 516.5 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 226, + 516.5, + 385, + 531.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 534, + 505, + 601 + ], + "lines": [ + { + "bbox": [ + 105, + 534, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 198, + 547 + ], + "score": 1.0, + "content": "In the above equation,", + "type": "text" + }, + { + "bbox": [ + 198, + 534, + 231, + 546 + ], + "score": 0.91, + "content": "\\mathbf { f } \\in \\mathcal { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 534, + 506, + 547 + ], + "score": 1.0, + "content": "are processed features from the semantic network that will serve to", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 545, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 362, + 560 + ], + "score": 1.0, + "content": "guide the pixel-adaptive convolutions from the depth network,", + "type": "text" + }, + { + "bbox": [ + 362, + 545, + 414, + 558 + ], + "score": 0.94, + "content": "\\mathbf { p } = ( x , y ) ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 545, + 506, + 560 + ], + "score": 1.0, + "content": "are pixel coordinates,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 557, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 128, + 570 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 128, + 557, + 167, + 569 + ], + "score": 0.9, + "content": "[ { \\bf p } _ { i } - { \\bf p } _ { j } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 557, + 348, + 570 + ], + "score": 1.0, + "content": "denoting 2D spatial offsets between pixels,", + "type": "text" + }, + { + "bbox": [ + 348, + 558, + 375, + 568 + ], + "score": 0.9, + "content": "\\mathbf { W } _ { k \\times k }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 557, + 505, + 570 + ], + "score": 1.0, + "content": "are convolutional weights with", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 567, + 504, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 151, + 580 + ], + "score": 1.0, + "content": "kernel size", + "type": "text" + }, + { + "bbox": [ + 151, + 569, + 172, + 579 + ], + "score": 0.54, + "content": "k , \\check { \\Omega } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 567, + 210, + 580 + ], + "score": 1.0, + "content": "defines a", + "type": "text" + }, + { + "bbox": [ + 210, + 568, + 231, + 578 + ], + "score": 0.9, + "content": "k \\times k", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 567, + 352, + 580 + ], + "score": 1.0, + "content": "convolutional window around", + "type": "text" + }, + { + "bbox": [ + 352, + 569, + 356, + 578 + ], + "score": 0.71, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 567, + 360, + 580 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 360, + 570, + 366, + 578 + ], + "score": 0.56, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 567, + 504, + 580 + ], + "score": 1.0, + "content": "is the input signal to be convolved,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 577, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 123, + 593 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 579, + 154, + 589 + ], + "score": 0.91, + "content": "\\mathbf { b } \\in \\mathcal { R } ^ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 577, + 212, + 593 + ], + "score": 1.0, + "content": "is a bias term.", + "type": "text" + }, + { + "bbox": [ + 213, + 579, + 223, + 589 + ], + "score": 0.83, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 577, + 506, + 593 + ], + "score": 1.0, + "content": "is the kernel used to calculate the correlation between guiding features,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 590, + 298, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 298, + 601 + ], + "score": 1.0, + "content": "here chosen to be the standard Gaussian kernel:", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 534, + 506, + 601 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 602, + 400, + 630 + ], + "lines": [ + { + "bbox": [ + 210, + 602, + 400, + 630 + ], + "spans": [ + { + "bbox": [ + 210, + 602, + 400, + 630 + ], + "score": 0.95, + "content": "K ( \\mathbf { f } _ { i } , \\mathbf { f } _ { j } ) = \\exp \\left( - \\frac { 1 } { 2 } ( \\mathbf { f } _ { i } - \\mathbf { f } _ { j } ) ^ { T } \\Sigma _ { i j } ^ { - 1 } ( \\mathbf { f } _ { i } - \\mathbf { f } _ { j } ) \\right)", + "type": "interline_equation", + "image_path": "342bdf167552c4191233cf0175ff696f26e046329d7bb2de0a3adfc72f586e04.jpg" + } + ] + } + ], + "index": 35.5, + "virtual_lines": [ + { + "bbox": [ + 210, + 602, + 400, + 616.0 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 210, + 616.0, + 400, + 630.0 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 631, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 106, + 632, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 133, + 644 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 632, + 149, + 644 + ], + "score": 0.9, + "content": "\\Sigma _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 632, + 319, + 644 + ], + "score": 1.0, + "content": "is the covariance matrix between features", + "type": "text" + }, + { + "bbox": [ + 319, + 632, + 327, + 643 + ], + "score": 0.87, + "content": "\\mathbf { f } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 632, + 345, + 644 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 346, + 632, + 355, + 644 + ], + "score": 0.88, + "content": "\\mathbf { f } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 632, + 505, + 644 + ], + "score": 1.0, + "content": ", here chosen to be a diagonal matrix", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 642, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 643, + 134, + 655 + ], + "score": 0.94, + "content": "\\sigma ^ { 2 } \\cdot I _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 642, + 158, + 657 + ], + "score": 1.0, + "content": ", with", + "type": "text" + }, + { + "bbox": [ + 158, + 646, + 165, + 654 + ], + "score": 0.77, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 642, + 506, + 657 + ], + "score": 1.0, + "content": "as an extra learnable parameter for each convolutional filter. These kernel evaluations", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 654, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 104, + 654, + 505, + 669 + ], + "score": 1.0, + "content": "can be seen as a secondary set of weights applied to the standard convolutional weights, changing", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 665, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 104, + 665, + 505, + 679 + ], + "score": 1.0, + "content": "their impact on the resulting depth features depending on the content stored in the guiding semantic", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "features. For example, the information contained in depth features pertaining to the sky should", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 689, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 700 + ], + "score": 1.0, + "content": "not be used to generate depth features describing a pedestrian, and this behavior is now captured", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "as a larger distance between their corresponding semantic features, which in turn produces smaller", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "weights for that particular convolutional filter. Note that the standard convolution can be considered", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 720, + 411, + 734 + ], + "spans": [ + { + "bbox": [ + 104, + 720, + 326, + 734 + ], + "score": 1.0, + "content": "a special case of the pixel-adaptive convolution, where", + "type": "text" + }, + { + "bbox": [ + 326, + 720, + 406, + 733 + ], + "score": 0.92, + "content": "\\forall ~ i j , K ( \\mathbf { f } _ { i } , \\mathbf { f } _ { j } ) ~ = ~ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 720, + 411, + 734 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 41, + "bbox_fs": [ + 104, + 632, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 114, + 76, + 497, + 153 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 114, + 76, + 497, + 153 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 76, + 497, + 153 + ], + "spans": [ + { + "bbox": [ + 114, + 76, + 497, + 153 + ], + "score": 0.967, + "type": "image", + "image_path": "c1133bd34f68068e6cc07f5e3946ece1ab608146cce40ed0d3a8c96d349ad49c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 114, + 76, + 497, + 101.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 114, + 101.66666666666667, + 497, + 127.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 127.33333333333334, + 497, + 153.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 162, + 503, + 195 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 161, + 505, + 175 + ], + "spans": [ + { + "bbox": [ + 106, + 161, + 505, + 175 + ], + "score": 1.0, + "content": "Figure 3: Qualitative results of our proposed two-stage training to address the infinite depth", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 173, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 505, + 185 + ], + "score": 1.0, + "content": "problem. Top images were obtained evaluating the first-stage depth network, and bottom images", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 183, + 441, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 441, + 196 + ], + "score": 1.0, + "content": "were obtained using the second-stage depth network, trained with a filtered dataset.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 109, + 211, + 273, + 222 + ], + "lines": [ + { + "bbox": [ + 105, + 210, + 276, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 276, + 225 + ], + "score": 1.0, + "content": "4.2 SEMANTIC GUIDANCE NETWORK", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 232, + 505, + 342 + ], + "lines": [ + { + "bbox": [ + 105, + 231, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 245 + ], + "score": 1.0, + "content": "As the secondary network used to provide semantic guidance for the generation of depth features, we", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 243, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 506, + 255 + ], + "score": 1.0, + "content": "use a Feature Pyramid Network (FPN) with ResNet backbone (Lin et al., 2017). This architecture", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 254, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 505, + 266 + ], + "score": 1.0, + "content": "has been shown to be efficient for both semantic and instance-level predictions towards panoptic", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 265, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 506, + 277 + ], + "score": 1.0, + "content": "segmentation (Kirillov et al., 2019; Li et al., 2018; Xiong et al., 2019; Porzi et al., 2019). While", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 276, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 506, + 289 + ], + "score": 1.0, + "content": "our proposed semantically-guided architecture is not restricted to any particular network, we chose", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 288, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 505, + 299 + ], + "score": 1.0, + "content": "this particular implementation to facilitate the future exploration of different sources for guidance", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 298, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 505, + 310 + ], + "score": 1.0, + "content": "information. Architectural details follow the protocols described in Li et al. (2018), and unless", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 308, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 505, + 321 + ], + "score": 1.0, + "content": "mentioned otherwise the same pretrained model was used in all reported experiments. The semantic", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 320, + 504, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 504, + 331 + ], + "score": 1.0, + "content": "network is assumed fixed, pretrained on a held out dataset different than the raw data used for self-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 331, + 468, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 468, + 343 + ], + "score": 1.0, + "content": "supervised learning, i.e. we do not require any semantic ground truth on the target dataset.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 11.5 + }, + { + "type": "title", + "bbox": [ + 108, + 356, + 231, + 367 + ], + "lines": [ + { + "bbox": [ + 105, + 356, + 232, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 232, + 369 + ], + "score": 1.0, + "content": "4.3 TWO-STAGE TRAINING", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 377, + 505, + 487 + ], + "lines": [ + { + "bbox": [ + 106, + 378, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 505, + 389 + ], + "score": 1.0, + "content": "One well-known limitation of the self-supervised photometric loss is its inability to model dynamic", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "objects, due to a static world assumption that only accounts for camera ego-motion (Godard et al.,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "score": 1.0, + "content": "2018; Casser et al., 2019). A resulting common failure mode is the infinite depth problem, which", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "is caused by the presence of objects moving at the same speed as the camera. This typically causes", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 421, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 505, + 434 + ], + "score": 1.0, + "content": "distinct holes in the predicted depth maps, with arbitrarily large values where these objects should", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 432, + 504, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 504, + 445 + ], + "score": 1.0, + "content": "be. This severely hinders the applicability of such models in real-world applications, particularly for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 443, + 504, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 504, + 456 + ], + "score": 1.0, + "content": "automated driving, where the ability to detect and properly model dynamic objects is crucial. More-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 453, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 468 + ], + "score": 1.0, + "content": "over, this limitation may be further accentuated in our proposed semantically-guided architecture,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "score": 1.0, + "content": "as the infinite depth problem occurs mostly on dynamic categories (i.e. cars and motorcycles) and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 477, + 316, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 316, + 488 + ], + "score": 1.0, + "content": "the semantic-aware features may reinforce this bias.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 493, + 505, + 636 + ], + "lines": [ + { + "bbox": [ + 106, + 493, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 505, + 505 + ], + "score": 1.0, + "content": "We propose a simple and efficient two-stage training method to detect and remove this bias from the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 504, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 506, + 516 + ], + "score": 1.0, + "content": "training set. In the first stage, we learn a standard depth network on all available training data. This", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 514, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 528 + ], + "score": 1.0, + "content": "network, exhibiting the infinite depth problem, is then used to resample the dataset by automatically", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "filtering out sequences with infinite depth predictions that violate a basic geometric prior. We indeed", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 535, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 104, + 535, + 505, + 551 + ], + "score": 1.0, + "content": "find that depth predictions for pixels corresponding to the nearby ground plane are generally robust.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 547, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 560 + ], + "score": 1.0, + "content": "This enables getting a coarse estimate of the ground plane using RANSAC and detecting the number", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 559, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 506, + 572 + ], + "score": 1.0, + "content": "of pixels whose predicted depth projects them significantly below the ground. If that number is", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 569, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 582 + ], + "score": 1.0, + "content": "above a threshold, then the corresponding image is subsequently ignored (we found a conservative", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 579, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 400, + 595 + ], + "score": 1.0, + "content": "threshold of 10 to work well in all our experiments, filtering out roughly", + "type": "text" + }, + { + "bbox": [ + 401, + 580, + 415, + 591 + ], + "score": 0.87, + "content": "5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 579, + 506, + 595 + ], + "score": 1.0, + "content": "of the KITTI training", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 591, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 505, + 604 + ], + "score": 1.0, + "content": "dataset). During the second stage, we retrain the network on the subsampled dataset (from scratch", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 603, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 615 + ], + "score": 1.0, + "content": "to avoid the previous local optimum). As this subsampled dataset is de-biased, the network learns", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 613, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 505, + 627 + ], + "score": 1.0, + "content": "better depth estimates on dynamic objects. This process can be repeated, but we find that two stages", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 624, + 471, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 471, + 637 + ], + "score": 1.0, + "content": "are enough to remove any traces of infinite depth in our experiments, as shown in Figure 3.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 34 + }, + { + "type": "title", + "bbox": [ + 108, + 653, + 256, + 665 + ], + "lines": [ + { + "bbox": [ + 105, + 651, + 258, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 258, + 667 + ], + "score": 1.0, + "content": "5 EXPERIMENTAL RESULTS", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "title", + "bbox": [ + 107, + 677, + 176, + 689 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 177, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 177, + 690 + ], + "score": 1.0, + "content": "5.1 DATASETS", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "We use the standard KITTI benchmark (Geiger et al., 2013) for self-supervised training and evalu-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "ation. More specifically, we adopt the training, validation and test splits used in Eigen et al. (2014)", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "with the pre-processing from Zhou et al. (2017) to remove static frames, which is more suitable for", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 114, + 76, + 497, + 153 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 114, + 76, + 497, + 153 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 76, + 497, + 153 + ], + "spans": [ + { + "bbox": [ + 114, + 76, + 497, + 153 + ], + "score": 0.967, + "type": "image", + "image_path": "c1133bd34f68068e6cc07f5e3946ece1ab608146cce40ed0d3a8c96d349ad49c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 114, + 76, + 497, + 101.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 114, + 101.66666666666667, + 497, + 127.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 127.33333333333334, + 497, + 153.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 162, + 503, + 195 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 161, + 505, + 175 + ], + "spans": [ + { + "bbox": [ + 106, + 161, + 505, + 175 + ], + "score": 1.0, + "content": "Figure 3: Qualitative results of our proposed two-stage training to address the infinite depth", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 173, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 505, + 185 + ], + "score": 1.0, + "content": "problem. Top images were obtained evaluating the first-stage depth network, and bottom images", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 183, + 441, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 441, + 196 + ], + "score": 1.0, + "content": "were obtained using the second-stage depth network, trained with a filtered dataset.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 109, + 211, + 273, + 222 + ], + "lines": [ + { + "bbox": [ + 105, + 210, + 276, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 276, + 225 + ], + "score": 1.0, + "content": "4.2 SEMANTIC GUIDANCE NETWORK", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 232, + 505, + 342 + ], + "lines": [ + { + "bbox": [ + 105, + 231, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 245 + ], + "score": 1.0, + "content": "As the secondary network used to provide semantic guidance for the generation of depth features, we", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 243, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 506, + 255 + ], + "score": 1.0, + "content": "use a Feature Pyramid Network (FPN) with ResNet backbone (Lin et al., 2017). This architecture", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 254, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 505, + 266 + ], + "score": 1.0, + "content": "has been shown to be efficient for both semantic and instance-level predictions towards panoptic", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 265, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 506, + 277 + ], + "score": 1.0, + "content": "segmentation (Kirillov et al., 2019; Li et al., 2018; Xiong et al., 2019; Porzi et al., 2019). While", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 276, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 506, + 289 + ], + "score": 1.0, + "content": "our proposed semantically-guided architecture is not restricted to any particular network, we chose", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 288, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 505, + 299 + ], + "score": 1.0, + "content": "this particular implementation to facilitate the future exploration of different sources for guidance", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 298, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 505, + 310 + ], + "score": 1.0, + "content": "information. Architectural details follow the protocols described in Li et al. (2018), and unless", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 308, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 505, + 321 + ], + "score": 1.0, + "content": "mentioned otherwise the same pretrained model was used in all reported experiments. The semantic", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 320, + 504, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 504, + 331 + ], + "score": 1.0, + "content": "network is assumed fixed, pretrained on a held out dataset different than the raw data used for self-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 331, + 468, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 468, + 343 + ], + "score": 1.0, + "content": "supervised learning, i.e. we do not require any semantic ground truth on the target dataset.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 231, + 506, + 343 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 356, + 231, + 367 + ], + "lines": [ + { + "bbox": [ + 105, + 356, + 232, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 232, + 369 + ], + "score": 1.0, + "content": "4.3 TWO-STAGE TRAINING", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 377, + 505, + 487 + ], + "lines": [ + { + "bbox": [ + 106, + 378, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 505, + 389 + ], + "score": 1.0, + "content": "One well-known limitation of the self-supervised photometric loss is its inability to model dynamic", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "objects, due to a static world assumption that only accounts for camera ego-motion (Godard et al.,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "score": 1.0, + "content": "2018; Casser et al., 2019). A resulting common failure mode is the infinite depth problem, which", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "is caused by the presence of objects moving at the same speed as the camera. This typically causes", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 421, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 505, + 434 + ], + "score": 1.0, + "content": "distinct holes in the predicted depth maps, with arbitrarily large values where these objects should", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 432, + 504, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 504, + 445 + ], + "score": 1.0, + "content": "be. This severely hinders the applicability of such models in real-world applications, particularly for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 443, + 504, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 504, + 456 + ], + "score": 1.0, + "content": "automated driving, where the ability to detect and properly model dynamic objects is crucial. More-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 453, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 468 + ], + "score": 1.0, + "content": "over, this limitation may be further accentuated in our proposed semantically-guided architecture,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "score": 1.0, + "content": "as the infinite depth problem occurs mostly on dynamic categories (i.e. cars and motorcycles) and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 477, + 316, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 316, + 488 + ], + "score": 1.0, + "content": "the semantic-aware features may reinforce this bias.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 378, + 506, + 488 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 493, + 505, + 636 + ], + "lines": [ + { + "bbox": [ + 106, + 493, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 505, + 505 + ], + "score": 1.0, + "content": "We propose a simple and efficient two-stage training method to detect and remove this bias from the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 504, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 506, + 516 + ], + "score": 1.0, + "content": "training set. In the first stage, we learn a standard depth network on all available training data. This", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 514, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 528 + ], + "score": 1.0, + "content": "network, exhibiting the infinite depth problem, is then used to resample the dataset by automatically", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "filtering out sequences with infinite depth predictions that violate a basic geometric prior. We indeed", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 535, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 104, + 535, + 505, + 551 + ], + "score": 1.0, + "content": "find that depth predictions for pixels corresponding to the nearby ground plane are generally robust.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 547, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 560 + ], + "score": 1.0, + "content": "This enables getting a coarse estimate of the ground plane using RANSAC and detecting the number", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 559, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 506, + 572 + ], + "score": 1.0, + "content": "of pixels whose predicted depth projects them significantly below the ground. If that number is", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 569, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 582 + ], + "score": 1.0, + "content": "above a threshold, then the corresponding image is subsequently ignored (we found a conservative", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 579, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 400, + 595 + ], + "score": 1.0, + "content": "threshold of 10 to work well in all our experiments, filtering out roughly", + "type": "text" + }, + { + "bbox": [ + 401, + 580, + 415, + 591 + ], + "score": 0.87, + "content": "5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 579, + 506, + 595 + ], + "score": 1.0, + "content": "of the KITTI training", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 591, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 505, + 604 + ], + "score": 1.0, + "content": "dataset). During the second stage, we retrain the network on the subsampled dataset (from scratch", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 603, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 615 + ], + "score": 1.0, + "content": "to avoid the previous local optimum). As this subsampled dataset is de-biased, the network learns", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 613, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 505, + 627 + ], + "score": 1.0, + "content": "better depth estimates on dynamic objects. This process can be repeated, but we find that two stages", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 624, + 471, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 471, + 637 + ], + "score": 1.0, + "content": "are enough to remove any traces of infinite depth in our experiments, as shown in Figure 3.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 34, + "bbox_fs": [ + 104, + 493, + 506, + 637 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 653, + 256, + 665 + ], + "lines": [ + { + "bbox": [ + 105, + 651, + 258, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 258, + 667 + ], + "score": 1.0, + "content": "5 EXPERIMENTAL RESULTS", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "title", + "bbox": [ + 107, + 677, + 176, + 689 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 177, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 177, + 690 + ], + "score": 1.0, + "content": "5.1 DATASETS", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "We use the standard KITTI benchmark (Geiger et al., 2013) for self-supervised training and evalu-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "ation. More specifically, we adopt the training, validation and test splits used in Eigen et al. (2014)", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "with the pre-processing from Zhou et al. (2017) to remove static frames, which is more suitable for", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44, + "bbox_fs": [ + 106, + 698, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 66, + 506, + 233 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 66, + 506, + 233 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 66, + 506, + 233 + ], + "spans": [ + { + "bbox": [ + 106, + 66, + 506, + 233 + ], + "score": 0.984, + "html": "
MethodSuperv.Lower is BetterHigher is Better
Abs RelSq RelRMSERMSEtogδ<1.25δ<1.25²δ<1.253
Garg et al. (2016)M0.1521.2265.8490.2460.7840.9210.967
Zou et al. (2018)M0.1501.1245.5070.2230.8060.9330.973
Godard et al. (2017)M0.1411.1865.6770.2380.8090.9280.969
Zhan et al. (2018)M0.1351.1325.5850.2290.8200.9330.971
Godard et al. (2018) (R18)M0.1150.9034.8630.1930.8770.9590.981
Godard et al. (2018) (R50)M0.1120.8514.7540.1900.8810.9600.981
Guizilini et al. (2019) (MR)M0.1080.7274.4260.1840.8850.9630.983
Guizilini et al. (2019) (HR)M0.1040.7584.3860.1820.8950.9640.982
Casser et al. (2019)S+Inst0.1411.0255.2900.2150.8160.9450.979
Chen et al. (2019)S+Sem0.1180.9055.0960.2110.8390.9450.977
Ochs et al. (2019)D+Sem0.1160.9454.9160.2080.8610.9520.968
Ours (MR)M+Sem0.1020.6984.3810.1780.8960.9640.984
Ours (HR)M+Sem0.1000.7614.2700.1750.9020.9650.982
", + "type": "table", + "image_path": "fadcee4f355440bacfe89f4e2c7a0a5a4bb1ad8ded3e322dc5351cda42632e1c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 66, + 506, + 121.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 121.66666666666666, + 506, + 177.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 177.33333333333331, + 506, + 232.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 243, + 505, + 331 + ], + "lines": [ + { + "bbox": [ + 105, + 243, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 255 + ], + "score": 1.0, + "content": "Table 1: Quantitative performance comparison of our proposed architecture on KITTI for", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 254, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 161, + 266 + ], + "score": 1.0, + "content": "depths up to", + "type": "text" + }, + { + "bbox": [ + 161, + 255, + 180, + 265 + ], + "score": 0.64, + "content": "8 0 \\mathrm { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 254, + 187, + 266 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 187, + 255, + 199, + 264 + ], + "score": 0.38, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 254, + 505, + 266 + ], + "score": 1.0, + "content": "refers to methods that train using monocular images, S refers to methods", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 265, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 265, + 218, + 277 + ], + "score": 1.0, + "content": "that train using stereo pairs,", + "type": "text" + }, + { + "bbox": [ + 218, + 266, + 228, + 275 + ], + "score": 0.7, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 265, + 505, + 277 + ], + "score": 1.0, + "content": "refers to methods that use ground-truth depth supervision, Sem refers", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 277, + 504, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 504, + 288 + ], + "score": 1.0, + "content": "to methods that include semantic information, and Inst refers to methods that include semantic", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 287, + 504, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 217, + 298 + ], + "score": 1.0, + "content": "and instance information.", + "type": "text" + }, + { + "bbox": [ + 217, + 288, + 234, + 297 + ], + "score": 0.26, + "content": "M R", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 288, + 275, + 298 + ], + "score": 1.0, + "content": "indicates", + "type": "text" + }, + { + "bbox": [ + 275, + 287, + 319, + 298 + ], + "score": 0.79, + "content": "6 4 0 \\times 1 9 2", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 288, + 398, + 298 + ], + "score": 1.0, + "content": "input images, and", + "type": "text" + }, + { + "bbox": [ + 398, + 287, + 414, + 298 + ], + "score": 0.26, + "content": "H R", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 288, + 455, + 298 + ], + "score": 1.0, + "content": "indicates", + "type": "text" + }, + { + "bbox": [ + 456, + 287, + 504, + 298 + ], + "score": 0.82, + "content": "1 2 8 0 \\mathrm { ~ x ~ } 3 8 4", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 298, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 505, + 311 + ], + "score": 1.0, + "content": "input images. Our proposed architecture is able to further improve the current state of the art in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 309, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 505, + 321 + ], + "score": 1.0, + "content": "self-supervised monocular depth estimation, and outperforms other methods that exploit semantic", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 320, + 378, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 378, + 333 + ], + "score": 1.0, + "content": "information (including ground truth labels) by a substantial margin.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 107, + 345, + 505, + 412 + ], + "lines": [ + { + "bbox": [ + 105, + 345, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 359 + ], + "score": 1.0, + "content": "monocular self-supervised learning. This results in 39810 images for training, 4424 for validation,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 356, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 505, + 369 + ], + "score": 1.0, + "content": "and 697 for evaluation. Following common practice, we pretrain our depth and pose networks on", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 367, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 505, + 380 + ], + "score": 1.0, + "content": "the CityScapes dataset (Cordts et al., 2016), consisting of 88250 unlabeled images. Unless noted", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 379, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 284, + 392 + ], + "score": 1.0, + "content": "otherwise, input images are downsampled to", + "type": "text" + }, + { + "bbox": [ + 285, + 379, + 325, + 389 + ], + "score": 0.78, + "content": "6 4 0 \\times 1 9 2", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 379, + 505, + 392 + ], + "score": 1.0, + "content": "resolution and output inverse depth maps are", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 389, + 506, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 506, + 402 + ], + "score": 1.0, + "content": "upsampled to full resolution using bilinear interpolation. Our fixed semantic segmentation network", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 401, + 410, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 303, + 413 + ], + "score": 1.0, + "content": "is pretrained on Cityscapes, achieving a mIoU of", + "type": "text" + }, + { + "bbox": [ + 304, + 401, + 323, + 411 + ], + "score": 0.89, + "content": "7 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 401, + 410, + 413 + ], + "score": 1.0, + "content": "on the validation set.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5 + }, + { + "type": "title", + "bbox": [ + 108, + 426, + 248, + 438 + ], + "lines": [ + { + "bbox": [ + 105, + 425, + 250, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 250, + 440 + ], + "score": 1.0, + "content": "5.2 IMPLEMENTATION DETAILS", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 447, + 505, + 547 + ], + "lines": [ + { + "bbox": [ + 106, + 447, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 460 + ], + "score": 1.0, + "content": "We implement our models with PyTorch (Paszke et al., 2017) and follow the same training protocols", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 457, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 104, + 457, + 506, + 473 + ], + "score": 1.0, + "content": "of Guizilini et al. (2019) when optimizing our depth and pose networks. The initial training stage", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 469, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 505, + 482 + ], + "score": 1.0, + "content": "is conducted on the CityScapes dataset for 50 epochs, with a batch size of 4 per GPU and initial", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 479, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 236, + 494 + ], + "score": 1.0, + "content": "depth and pose learning rates of", + "type": "text" + }, + { + "bbox": [ + 236, + 480, + 270, + 491 + ], + "score": 0.91, + "content": "2 \\cdot 1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 479, + 288, + 494 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 288, + 480, + 321, + 491 + ], + "score": 0.9, + "content": "5 \\cdot { \\bar { 1 } } 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 479, + 505, + 494 + ], + "score": 1.0, + "content": "respectively, that are halved every 20 epochs.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 491, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 505 + ], + "score": 1.0, + "content": "Afterwards, the depth and pose networks are fine-tuned on KITTI for 30 epochs, with the same", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "score": 1.0, + "content": "parameters and halving the learning rates after every 12 epochs. This fine-tuning stage includes the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 513, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 506, + 527 + ], + "score": 1.0, + "content": "proposed architecture, where information from the fixed semantic network, pretrained separately, is", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 524, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 505, + 538 + ], + "score": 1.0, + "content": "used to directly guide the generation of depth features. There is no direct supervision at any stage", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 536, + 475, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 475, + 548 + ], + "score": 1.0, + "content": "during depth training, all semantic information is derived from the fixed secondary network.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 552, + 505, + 630 + ], + "lines": [ + { + "bbox": [ + 106, + 552, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 505, + 565 + ], + "score": 1.0, + "content": "When pretraining the semantic segmentation network, we use a ResNet-50 backbone with Imagenet", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 563, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 374, + 577 + ], + "score": 1.0, + "content": "(Deng et al., 2009) pretrained weights and optimize the network for", + "type": "text" + }, + { + "bbox": [ + 375, + 564, + 391, + 574 + ], + "score": 0.86, + "content": "4 8 k", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 563, + 505, + 577 + ], + "score": 1.0, + "content": "iterations on the CityScapes", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 574, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 408, + 587 + ], + "score": 1.0, + "content": "dataset with a learning rate of 0.01, momentum of 0.9, weight decay of", + "type": "text" + }, + { + "bbox": [ + 408, + 574, + 430, + 585 + ], + "score": 0.9, + "content": "1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 574, + 505, + 587 + ], + "score": 1.0, + "content": ", and a batch size", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 586, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 506, + 598 + ], + "score": 1.0, + "content": "of 1 per GPU. Random scaling between (0.7, 1.3), random horizontal flipping, and a crop size of", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 596, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 107, + 597, + 157, + 607 + ], + "score": 0.9, + "content": "1 0 0 0 \\times 2 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 596, + 505, + 609 + ], + "score": 1.0, + "content": "are used for data augmentation. We decay the learning rate by a factor of 10 at iterations", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 607, + 505, + 620 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 123, + 618 + ], + "score": 0.82, + "content": "3 6 k", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 607, + 142, + 620 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 142, + 608, + 159, + 618 + ], + "score": 0.77, + "content": "4 4 k", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 607, + 505, + 620 + ], + "score": 1.0, + "content": ". Once training is complete, the semantic segmentation network is fixed and becomes", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 619, + 498, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 498, + 631 + ], + "score": 1.0, + "content": "the only source of semantic information when fine-tuning the depth and pose networks on KITTI.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30 + }, + { + "type": "title", + "bbox": [ + 108, + 644, + 285, + 656 + ], + "lines": [ + { + "bbox": [ + 106, + 644, + 287, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 287, + 657 + ], + "score": 1.0, + "content": "5.3 DEPTH ESTIMATION PERFORMANCE", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 665, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "Our depth estimation results are summarized in Table 1, where we compare our proposed architec-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "ture with other published works. From these results we can see that the introduction of semantically-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 688, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 699 + ], + "score": 1.0, + "content": "guided geometric representation learning further improves upon the current state of the art in self-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "supervised monocular depth estimation from Guizilini et al. (2019), which served as our baseline.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Our approach also outperforms other methods that leverage semantic information by a substantial", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "margin, even those using ground-truth KITTI semantic segmentation and depth labels during train-", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 66, + 506, + 233 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 66, + 506, + 233 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 66, + 506, + 233 + ], + "spans": [ + { + "bbox": [ + 106, + 66, + 506, + 233 + ], + "score": 0.984, + "html": "
MethodSuperv.Lower is BetterHigher is Better
Abs RelSq RelRMSERMSEtogδ<1.25δ<1.25²δ<1.253
Garg et al. (2016)M0.1521.2265.8490.2460.7840.9210.967
Zou et al. (2018)M0.1501.1245.5070.2230.8060.9330.973
Godard et al. (2017)M0.1411.1865.6770.2380.8090.9280.969
Zhan et al. (2018)M0.1351.1325.5850.2290.8200.9330.971
Godard et al. (2018) (R18)M0.1150.9034.8630.1930.8770.9590.981
Godard et al. (2018) (R50)M0.1120.8514.7540.1900.8810.9600.981
Guizilini et al. (2019) (MR)M0.1080.7274.4260.1840.8850.9630.983
Guizilini et al. (2019) (HR)M0.1040.7584.3860.1820.8950.9640.982
Casser et al. (2019)S+Inst0.1411.0255.2900.2150.8160.9450.979
Chen et al. (2019)S+Sem0.1180.9055.0960.2110.8390.9450.977
Ochs et al. (2019)D+Sem0.1160.9454.9160.2080.8610.9520.968
Ours (MR)M+Sem0.1020.6984.3810.1780.8960.9640.984
Ours (HR)M+Sem0.1000.7614.2700.1750.9020.9650.982
", + "type": "table", + "image_path": "fadcee4f355440bacfe89f4e2c7a0a5a4bb1ad8ded3e322dc5351cda42632e1c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 66, + 506, + 121.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 121.66666666666666, + 506, + 177.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 177.33333333333331, + 506, + 232.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 243, + 505, + 331 + ], + "lines": [ + { + "bbox": [ + 105, + 243, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 255 + ], + "score": 1.0, + "content": "Table 1: Quantitative performance comparison of our proposed architecture on KITTI for", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 254, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 161, + 266 + ], + "score": 1.0, + "content": "depths up to", + "type": "text" + }, + { + "bbox": [ + 161, + 255, + 180, + 265 + ], + "score": 0.64, + "content": "8 0 \\mathrm { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 254, + 187, + 266 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 187, + 255, + 199, + 264 + ], + "score": 0.38, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 254, + 505, + 266 + ], + "score": 1.0, + "content": "refers to methods that train using monocular images, S refers to methods", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 265, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 265, + 218, + 277 + ], + "score": 1.0, + "content": "that train using stereo pairs,", + "type": "text" + }, + { + "bbox": [ + 218, + 266, + 228, + 275 + ], + "score": 0.7, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 265, + 505, + 277 + ], + "score": 1.0, + "content": "refers to methods that use ground-truth depth supervision, Sem refers", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 277, + 504, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 504, + 288 + ], + "score": 1.0, + "content": "to methods that include semantic information, and Inst refers to methods that include semantic", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 287, + 504, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 217, + 298 + ], + "score": 1.0, + "content": "and instance information.", + "type": "text" + }, + { + "bbox": [ + 217, + 288, + 234, + 297 + ], + "score": 0.26, + "content": "M R", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 288, + 275, + 298 + ], + "score": 1.0, + "content": "indicates", + "type": "text" + }, + { + "bbox": [ + 275, + 287, + 319, + 298 + ], + "score": 0.79, + "content": "6 4 0 \\times 1 9 2", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 288, + 398, + 298 + ], + "score": 1.0, + "content": "input images, and", + "type": "text" + }, + { + "bbox": [ + 398, + 287, + 414, + 298 + ], + "score": 0.26, + "content": "H R", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 288, + 455, + 298 + ], + "score": 1.0, + "content": "indicates", + "type": "text" + }, + { + "bbox": [ + 456, + 287, + 504, + 298 + ], + "score": 0.82, + "content": "1 2 8 0 \\mathrm { ~ x ~ } 3 8 4", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 298, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 505, + 311 + ], + "score": 1.0, + "content": "input images. Our proposed architecture is able to further improve the current state of the art in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 309, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 505, + 321 + ], + "score": 1.0, + "content": "self-supervised monocular depth estimation, and outperforms other methods that exploit semantic", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 320, + 378, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 378, + 333 + ], + "score": 1.0, + "content": "information (including ground truth labels) by a substantial margin.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 243, + 505, + 333 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 345, + 505, + 412 + ], + "lines": [ + { + "bbox": [ + 105, + 345, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 359 + ], + "score": 1.0, + "content": "monocular self-supervised learning. This results in 39810 images for training, 4424 for validation,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 356, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 505, + 369 + ], + "score": 1.0, + "content": "and 697 for evaluation. Following common practice, we pretrain our depth and pose networks on", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 367, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 505, + 380 + ], + "score": 1.0, + "content": "the CityScapes dataset (Cordts et al., 2016), consisting of 88250 unlabeled images. Unless noted", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 379, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 284, + 392 + ], + "score": 1.0, + "content": "otherwise, input images are downsampled to", + "type": "text" + }, + { + "bbox": [ + 285, + 379, + 325, + 389 + ], + "score": 0.78, + "content": "6 4 0 \\times 1 9 2", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 379, + 505, + 392 + ], + "score": 1.0, + "content": "resolution and output inverse depth maps are", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 389, + 506, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 506, + 402 + ], + "score": 1.0, + "content": "upsampled to full resolution using bilinear interpolation. Our fixed semantic segmentation network", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 401, + 410, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 303, + 413 + ], + "score": 1.0, + "content": "is pretrained on Cityscapes, achieving a mIoU of", + "type": "text" + }, + { + "bbox": [ + 304, + 401, + 323, + 411 + ], + "score": 0.89, + "content": "7 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 401, + 410, + 413 + ], + "score": 1.0, + "content": "on the validation set.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 345, + 506, + 413 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 426, + 248, + 438 + ], + "lines": [ + { + "bbox": [ + 105, + 425, + 250, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 250, + 440 + ], + "score": 1.0, + "content": "5.2 IMPLEMENTATION DETAILS", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 447, + 505, + 547 + ], + "lines": [ + { + "bbox": [ + 106, + 447, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 460 + ], + "score": 1.0, + "content": "We implement our models with PyTorch (Paszke et al., 2017) and follow the same training protocols", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 457, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 104, + 457, + 506, + 473 + ], + "score": 1.0, + "content": "of Guizilini et al. (2019) when optimizing our depth and pose networks. The initial training stage", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 469, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 505, + 482 + ], + "score": 1.0, + "content": "is conducted on the CityScapes dataset for 50 epochs, with a batch size of 4 per GPU and initial", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 479, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 236, + 494 + ], + "score": 1.0, + "content": "depth and pose learning rates of", + "type": "text" + }, + { + "bbox": [ + 236, + 480, + 270, + 491 + ], + "score": 0.91, + "content": "2 \\cdot 1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 479, + 288, + 494 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 288, + 480, + 321, + 491 + ], + "score": 0.9, + "content": "5 \\cdot { \\bar { 1 } } 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 479, + 505, + 494 + ], + "score": 1.0, + "content": "respectively, that are halved every 20 epochs.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 491, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 505 + ], + "score": 1.0, + "content": "Afterwards, the depth and pose networks are fine-tuned on KITTI for 30 epochs, with the same", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "score": 1.0, + "content": "parameters and halving the learning rates after every 12 epochs. This fine-tuning stage includes the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 513, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 506, + 527 + ], + "score": 1.0, + "content": "proposed architecture, where information from the fixed semantic network, pretrained separately, is", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 524, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 505, + 538 + ], + "score": 1.0, + "content": "used to directly guide the generation of depth features. There is no direct supervision at any stage", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 536, + 475, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 475, + 548 + ], + "score": 1.0, + "content": "during depth training, all semantic information is derived from the fixed secondary network.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22, + "bbox_fs": [ + 104, + 447, + 506, + 548 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 552, + 505, + 630 + ], + "lines": [ + { + "bbox": [ + 106, + 552, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 505, + 565 + ], + "score": 1.0, + "content": "When pretraining the semantic segmentation network, we use a ResNet-50 backbone with Imagenet", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 563, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 374, + 577 + ], + "score": 1.0, + "content": "(Deng et al., 2009) pretrained weights and optimize the network for", + "type": "text" + }, + { + "bbox": [ + 375, + 564, + 391, + 574 + ], + "score": 0.86, + "content": "4 8 k", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 563, + 505, + 577 + ], + "score": 1.0, + "content": "iterations on the CityScapes", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 574, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 408, + 587 + ], + "score": 1.0, + "content": "dataset with a learning rate of 0.01, momentum of 0.9, weight decay of", + "type": "text" + }, + { + "bbox": [ + 408, + 574, + 430, + 585 + ], + "score": 0.9, + "content": "1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 574, + 505, + 587 + ], + "score": 1.0, + "content": ", and a batch size", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 586, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 506, + 598 + ], + "score": 1.0, + "content": "of 1 per GPU. Random scaling between (0.7, 1.3), random horizontal flipping, and a crop size of", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 596, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 107, + 597, + 157, + 607 + ], + "score": 0.9, + "content": "1 0 0 0 \\times 2 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 596, + 505, + 609 + ], + "score": 1.0, + "content": "are used for data augmentation. We decay the learning rate by a factor of 10 at iterations", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 607, + 505, + 620 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 123, + 618 + ], + "score": 0.82, + "content": "3 6 k", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 607, + 142, + 620 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 142, + 608, + 159, + 618 + ], + "score": 0.77, + "content": "4 4 k", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 607, + 505, + 620 + ], + "score": 1.0, + "content": ". Once training is complete, the semantic segmentation network is fixed and becomes", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 619, + 498, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 498, + 631 + ], + "score": 1.0, + "content": "the only source of semantic information when fine-tuning the depth and pose networks on KITTI.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 552, + 506, + 631 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 644, + 285, + 656 + ], + "lines": [ + { + "bbox": [ + 106, + 644, + 287, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 287, + 657 + ], + "score": 1.0, + "content": "5.3 DEPTH ESTIMATION PERFORMANCE", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 665, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "Our depth estimation results are summarized in Table 1, where we compare our proposed architec-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "ture with other published works. From these results we can see that the introduction of semantically-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 688, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 699 + ], + "score": 1.0, + "content": "guided geometric representation learning further improves upon the current state of the art in self-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "supervised monocular depth estimation from Guizilini et al. (2019), which served as our baseline.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Our approach also outperforms other methods that leverage semantic information by a substantial", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "margin, even those using ground-truth KITTI semantic segmentation and depth labels during train-", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 666, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 108, + 80, + 501, + 193 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 80, + 501, + 193 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 80, + 501, + 193 + ], + "spans": [ + { + "bbox": [ + 108, + 80, + 501, + 193 + ], + "score": 0.982, + "html": "
NetworkSEMTSTLower is BetterHigher is Better δ <1.25 δ<1.252 δ< 1.253Class-Avg. Abs Rel
Abs RelSq Rel RMSE RMSElog
ResNet-180.120 0.1170.896 0.8544.869 4.7140.198 0.1910.868 0.957 0.8730.981 0.963 0.9810.149 0.139
ResNet-500.117 0.1130.900 0.8314.826 4.6630.196 0.1890.873 0.967 0.878 0.9710.980 0.9830.144 0.136
PackNet0.108 0.103 0.1020.727 0.710 0.6984.426 4.301 4.3810.184 0.179 0.1780.885 0.963 0.895 0.964 0.896 0.9630.983 0.984 0.9840.132 0.121 0.117
", + "type": "table", + "image_path": "b3112d78d10a26174e02c3bc30a24a88918102e8b993042d38659c646c8ad47a.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 80, + 501, + 117.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 117.66666666666666, + 501, + 155.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 155.33333333333331, + 501, + 192.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 108, + 201, + 503, + 235 + ], + "lines": [ + { + "bbox": [ + 105, + 200, + 504, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 504, + 215 + ], + "score": 1.0, + "content": "Table 2: Ablative analysis of our semantic guidance (SEM) and two-stage-training (TST) contri-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 212, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 505, + 226 + ], + "score": 1.0, + "content": "butions. The last column indicates class-average Abs. Rel. obtained by averaging all class-specific", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 223, + 414, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 414, + 236 + ], + "score": 1.0, + "content": "depth errors in Figure 4, while other columns indicate pixel-average metrics.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 243, + 505, + 288 + ], + "lines": [ + { + "bbox": [ + 105, + 243, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 256 + ], + "score": 1.0, + "content": "ing (Ochs et al., 2019). Furthermore, in Figure 5 we also present qualitative results showing the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 254, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 505, + 267 + ], + "score": 1.0, + "content": "improvements in depth estimation generated by our proposed framework, compared to our base-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 266, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 277 + ], + "score": 1.0, + "content": "line. Note how our semantically-guided architecture produces sharper boundaries and better object", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 275, + 498, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 498, + 290 + ], + "score": 1.0, + "content": "delineation, especially in structures further away or not clearly distinguishable in the input image.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5 + }, + { + "type": "title", + "bbox": [ + 108, + 302, + 222, + 313 + ], + "lines": [ + { + "bbox": [ + 105, + 301, + 223, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 223, + 315 + ], + "score": 1.0, + "content": "5.4 ABLATIVE ANALYSIS", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "title", + "bbox": [ + 107, + 323, + 272, + 335 + ], + "lines": [ + { + "bbox": [ + 106, + 323, + 274, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 274, + 335 + ], + "score": 1.0, + "content": "5.4.1 DIFFERENT DEPTH NETWORKS", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 342, + 505, + 409 + ], + "lines": [ + { + "bbox": [ + 106, + 343, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 505, + 354 + ], + "score": 1.0, + "content": "To better evaluate our main contribution, we provide an ablative analysis showing how it generalizes", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 353, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 506, + 366 + ], + "score": 1.0, + "content": "to different depth networks. To this end, we consider two variations of the widely used ResNet", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 365, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 505, + 377 + ], + "score": 1.0, + "content": "architecture as the encoder for our depth network: ResNet-18 and ResNet-50 (the same pretrained", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 376, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 505, + 388 + ], + "score": 1.0, + "content": "semantic network was used in all experiments). Depth estimation results considering these variations", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 387, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 505, + 399 + ], + "score": 1.0, + "content": "are shown in Table 2, where we can see that our proposed semantically-guided architecture is able", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 397, + 489, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 489, + 410 + ], + "score": 1.0, + "content": "to consistently improve the performance of different depth networks, for all considered metrics.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5 + }, + { + "type": "title", + "bbox": [ + 107, + 422, + 312, + 434 + ], + "lines": [ + { + "bbox": [ + 106, + 421, + 312, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 312, + 435 + ], + "score": 1.0, + "content": "5.4.2 CLASS-SPECIFIC DEPTH PERFORMANCE", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 442, + 505, + 509 + ], + "lines": [ + { + "bbox": [ + 106, + 442, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 505, + 454 + ], + "score": 1.0, + "content": "To further showcase the benefits of our semantically-guided architecture, we also provide class-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 453, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 465 + ], + "score": 1.0, + "content": "specific evaluation metrics, as shown in Figure 4. As we do not have ground-truth semantic segmen-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 464, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 505, + 475 + ], + "score": 1.0, + "content": "tation for these images, we use the prediction of the semantic network to bin pixels per predicted", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 475, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 505, + 487 + ], + "score": 1.0, + "content": "category, and evaluate only on those pixels. From these results we can see that our proposed archi-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 486, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 505, + 498 + ], + "score": 1.0, + "content": "tecture consistently improves depth performance for pixels across all predicted classes, especially", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 496, + 465, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 465, + 510 + ], + "score": 1.0, + "content": "those containing fine-grained structures and sharp boundaries, e.g. poles and traffic signs.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5 + }, + { + "type": "image", + "bbox": [ + 112, + 520, + 498, + 660 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 520, + 498, + 660 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 520, + 498, + 660 + ], + "spans": [ + { + "bbox": [ + 112, + 520, + 498, + 660 + ], + "score": 0.972, + "type": "image", + "image_path": "029bba1944c05b59fd31cd1b470c4d6e1b61b263ba0128d9dbf7c9034beaab1f.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 112, + 520, + 498, + 566.6666666666666 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 112, + 566.6666666666666, + 498, + 613.3333333333333 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 112, + 613.3333333333333, + 498, + 659.9999999999999 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 673, + 505, + 729 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 673, + 505, + 686 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 505, + 686 + ], + "score": 1.0, + "content": "Figure 4: Class-specific depth evaluation for our proposed architecture (blue), relative to our base-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 684, + 505, + 697 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 505, + 697 + ], + "score": 1.0, + "content": "line (red). The rightmost column indicates class-average depth metrics, obtained by averaging all", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 694, + 505, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 505, + 708 + ], + "score": 1.0, + "content": "individual classes. The introduction of semantically-guided features, in conjunction with our pro-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 705, + 506, + 720 + ], + "spans": [ + { + "bbox": [ + 105, + 705, + 506, + 720 + ], + "score": 1.0, + "content": "posed two-stage training methodology to address the infinite depth problem, consistently improved", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 717, + 329, + 729 + ], + "spans": [ + { + "bbox": [ + 106, + 717, + 329, + 729 + ], + "score": 1.0, + "content": "depth results for all considered classes (lower is better).", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30 + } + ], + "index": 28.0 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 108, + 80, + 501, + 193 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 80, + 501, + 193 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 80, + 501, + 193 + ], + "spans": [ + { + "bbox": [ + 108, + 80, + 501, + 193 + ], + "score": 0.982, + "html": "
NetworkSEMTSTLower is BetterHigher is Better δ <1.25 δ<1.252 δ< 1.253Class-Avg. Abs Rel
Abs RelSq Rel RMSE RMSElog
ResNet-180.120 0.1170.896 0.8544.869 4.7140.198 0.1910.868 0.957 0.8730.981 0.963 0.9810.149 0.139
ResNet-500.117 0.1130.900 0.8314.826 4.6630.196 0.1890.873 0.967 0.878 0.9710.980 0.9830.144 0.136
PackNet0.108 0.103 0.1020.727 0.710 0.6984.426 4.301 4.3810.184 0.179 0.1780.885 0.963 0.895 0.964 0.896 0.9630.983 0.984 0.9840.132 0.121 0.117
", + "type": "table", + "image_path": "b3112d78d10a26174e02c3bc30a24a88918102e8b993042d38659c646c8ad47a.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 80, + 501, + 117.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 117.66666666666666, + 501, + 155.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 155.33333333333331, + 501, + 192.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 108, + 201, + 503, + 235 + ], + "lines": [ + { + "bbox": [ + 105, + 200, + 504, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 504, + 215 + ], + "score": 1.0, + "content": "Table 2: Ablative analysis of our semantic guidance (SEM) and two-stage-training (TST) contri-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 212, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 505, + 226 + ], + "score": 1.0, + "content": "butions. The last column indicates class-average Abs. Rel. obtained by averaging all class-specific", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 223, + 414, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 414, + 236 + ], + "score": 1.0, + "content": "depth errors in Figure 4, while other columns indicate pixel-average metrics.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 200, + 505, + 236 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 243, + 505, + 288 + ], + "lines": [ + { + "bbox": [ + 105, + 243, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 256 + ], + "score": 1.0, + "content": "ing (Ochs et al., 2019). Furthermore, in Figure 5 we also present qualitative results showing the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 254, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 505, + 267 + ], + "score": 1.0, + "content": "improvements in depth estimation generated by our proposed framework, compared to our base-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 266, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 277 + ], + "score": 1.0, + "content": "line. Note how our semantically-guided architecture produces sharper boundaries and better object", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 275, + 498, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 498, + 290 + ], + "score": 1.0, + "content": "delineation, especially in structures further away or not clearly distinguishable in the input image.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 243, + 505, + 290 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 302, + 222, + 313 + ], + "lines": [ + { + "bbox": [ + 105, + 301, + 223, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 223, + 315 + ], + "score": 1.0, + "content": "5.4 ABLATIVE ANALYSIS", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "title", + "bbox": [ + 107, + 323, + 272, + 335 + ], + "lines": [ + { + "bbox": [ + 106, + 323, + 274, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 274, + 335 + ], + "score": 1.0, + "content": "5.4.1 DIFFERENT DEPTH NETWORKS", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 342, + 505, + 409 + ], + "lines": [ + { + "bbox": [ + 106, + 343, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 505, + 354 + ], + "score": 1.0, + "content": "To better evaluate our main contribution, we provide an ablative analysis showing how it generalizes", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 353, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 506, + 366 + ], + "score": 1.0, + "content": "to different depth networks. To this end, we consider two variations of the widely used ResNet", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 365, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 505, + 377 + ], + "score": 1.0, + "content": "architecture as the encoder for our depth network: ResNet-18 and ResNet-50 (the same pretrained", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 376, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 505, + 388 + ], + "score": 1.0, + "content": "semantic network was used in all experiments). Depth estimation results considering these variations", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 387, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 505, + 399 + ], + "score": 1.0, + "content": "are shown in Table 2, where we can see that our proposed semantically-guided architecture is able", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 397, + 489, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 489, + 410 + ], + "score": 1.0, + "content": "to consistently improve the performance of different depth networks, for all considered metrics.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 343, + 506, + 410 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 422, + 312, + 434 + ], + "lines": [ + { + "bbox": [ + 106, + 421, + 312, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 312, + 435 + ], + "score": 1.0, + "content": "5.4.2 CLASS-SPECIFIC DEPTH PERFORMANCE", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 442, + 505, + 509 + ], + "lines": [ + { + "bbox": [ + 106, + 442, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 505, + 454 + ], + "score": 1.0, + "content": "To further showcase the benefits of our semantically-guided architecture, we also provide class-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 453, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 465 + ], + "score": 1.0, + "content": "specific evaluation metrics, as shown in Figure 4. As we do not have ground-truth semantic segmen-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 464, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 505, + 475 + ], + "score": 1.0, + "content": "tation for these images, we use the prediction of the semantic network to bin pixels per predicted", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 475, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 505, + 487 + ], + "score": 1.0, + "content": "category, and evaluate only on those pixels. From these results we can see that our proposed archi-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 486, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 505, + 498 + ], + "score": 1.0, + "content": "tecture consistently improves depth performance for pixels across all predicted classes, especially", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 496, + 465, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 465, + 510 + ], + "score": 1.0, + "content": "those containing fine-grained structures and sharp boundaries, e.g. poles and traffic signs.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 442, + 505, + 510 + ] + }, + { + "type": "image", + "bbox": [ + 112, + 520, + 498, + 660 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 520, + 498, + 660 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 520, + 498, + 660 + ], + "spans": [ + { + "bbox": [ + 112, + 520, + 498, + 660 + ], + "score": 0.972, + "type": "image", + "image_path": "029bba1944c05b59fd31cd1b470c4d6e1b61b263ba0128d9dbf7c9034beaab1f.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 112, + 520, + 498, + 566.6666666666666 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 112, + 566.6666666666666, + 498, + 613.3333333333333 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 112, + 613.3333333333333, + 498, + 659.9999999999999 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 673, + 505, + 729 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 673, + 505, + 686 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 505, + 686 + ], + "score": 1.0, + "content": "Figure 4: Class-specific depth evaluation for our proposed architecture (blue), relative to our base-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 684, + 505, + 697 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 505, + 697 + ], + "score": 1.0, + "content": "line (red). The rightmost column indicates class-average depth metrics, obtained by averaging all", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 694, + 505, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 505, + 708 + ], + "score": 1.0, + "content": "individual classes. The introduction of semantically-guided features, in conjunction with our pro-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 705, + 506, + 720 + ], + "spans": [ + { + "bbox": [ + 105, + 705, + 506, + 720 + ], + "score": 1.0, + "content": "posed two-stage training methodology to address the infinite depth problem, consistently improved", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 717, + 329, + 729 + ], + "spans": [ + { + "bbox": [ + 106, + 717, + 329, + 729 + ], + "score": 1.0, + "content": "depth results for all considered classes (lower is better).", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30 + } + ], + "index": 28.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 91, + 502, + 365 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 91, + 502, + 365 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 91, + 502, + 365 + ], + "spans": [ + { + "bbox": [ + 108, + 91, + 502, + 365 + ], + "score": 0.973, + "type": "image", + "image_path": "8b4a389f1dbad0e331cbee9e393af3ad825e78c305d86b9334b90a768bca6149.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 91, + 502, + 182.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 182.33333333333331, + 502, + 273.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 273.66666666666663, + 502, + 364.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 374, + 505, + 429 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 374, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 505, + 387 + ], + "score": 1.0, + "content": "Figure 5: Qualitative results of our proposed architecture. The left, middle, and right columns", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 384, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 505, + 397 + ], + "score": 1.0, + "content": "show respectively input images, baseline predicted depth maps (Guizilini et al., 2019), and the depths", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 396, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 505, + 409 + ], + "score": 1.0, + "content": "maps obtained using our proposed architecture. Our semantic-aware depth network predicts sharper", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 406, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 505, + 420 + ], + "score": 1.0, + "content": "boundaries and fine-grained details on distant objects. The dotted lines indicate class-average errors,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 418, + 333, + 431 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 333, + 431 + ], + "score": 1.0, + "content": "obtained by averaging all the class-specific depth errors.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 107, + 451, + 505, + 550 + ], + "lines": [ + { + "bbox": [ + 106, + 451, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 505, + 464 + ], + "score": 1.0, + "content": "We also measure the impact of our two-stage training process, which is expected to address the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 462, + 504, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 504, + 474 + ], + "score": 1.0, + "content": "infinite depth problem in dynamic objects. Although we find the pixel-average difference in perfor-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "mance to not be significant (see Table 2), there is a significant improvement in class-average depth", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 483, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 505, + 497 + ], + "score": 1.0, + "content": "estimation, from 0.121 to 0.117 Abs-Rel. This is because the number of pixels affected by the in-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 494, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 505, + 508 + ], + "score": 1.0, + "content": "finite depth problem is vastly smaller than the total number of pixels. However, when considering", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "score": 1.0, + "content": "class-average depth evaluation, the improvement over classes such as cars (0.200 to 0.177 Abs-Rel)", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 517, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 506, + 530 + ], + "score": 1.0, + "content": "and motorcycles (0.091 to 0.069) becomes statistically significant. This further exemplifies the im-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "portance of fine-grained metrics in depth evaluation, so these underlying behaviors can be properly", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 538, + 373, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 373, + 552 + ], + "score": 1.0, + "content": "observed and accounted for in the development of new techniques.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 108, + 566, + 195, + 579 + ], + "lines": [ + { + "bbox": [ + 104, + 564, + 197, + 582 + ], + "spans": [ + { + "bbox": [ + 104, + 564, + 197, + 582 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 591, + 505, + 712 + ], + "lines": [ + { + "bbox": [ + 106, + 591, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 505, + 604 + ], + "score": 1.0, + "content": "This paper introduces a novel architecture for self-supervised monocular depth estimation that lever-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 602, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 506, + 615 + ], + "score": 1.0, + "content": "ages semantic information from a fixed pretrained network to guide the generation of multi-level", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 612, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 505, + 627 + ], + "score": 1.0, + "content": "depth features via pixel-adaptive convolutions. Our monodepth network learns semantic-aware ge-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 623, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 505, + 639 + ], + "score": 1.0, + "content": "ometric representations that can disambiguate photometric ambiguities in a self-supervised learning", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 635, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 505, + 648 + ], + "score": 1.0, + "content": "structure-from-motion context. Furthermore, we introduce a two-stage training process that resam-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 646, + 506, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 506, + 659 + ], + "score": 1.0, + "content": "ples training data to overcome a common bias on dynamic objects resulting in predicting them at", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 657, + 504, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 504, + 670 + ], + "score": 1.0, + "content": "infinite depths. Our experiments on challenging real-world data shows that our proposed architec-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 667, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 681 + ], + "score": 1.0, + "content": "ture consistently improves the performance of different monodepth architectures, thus establishing", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 680, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 691 + ], + "score": 1.0, + "content": "a new state of the art in self-supervised monocular depth estimation. Future directions of research", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 690, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 505, + 703 + ], + "score": 1.0, + "content": "include leveraging other sources of guidance (i.e. instance masks, optical flow, surface normals), as", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 701, + 396, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 396, + 713 + ], + "score": 1.0, + "content": "well as avenues for self-supervised fine-tuning of the semantic network.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 23 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 11, + "width": 9 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 91, + 502, + 365 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 91, + 502, + 365 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 91, + 502, + 365 + ], + "spans": [ + { + "bbox": [ + 108, + 91, + 502, + 365 + ], + "score": 0.973, + "type": "image", + "image_path": "8b4a389f1dbad0e331cbee9e393af3ad825e78c305d86b9334b90a768bca6149.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 91, + 502, + 182.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 182.33333333333331, + 502, + 273.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 273.66666666666663, + 502, + 364.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 374, + 505, + 429 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 374, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 505, + 387 + ], + "score": 1.0, + "content": "Figure 5: Qualitative results of our proposed architecture. The left, middle, and right columns", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 384, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 505, + 397 + ], + "score": 1.0, + "content": "show respectively input images, baseline predicted depth maps (Guizilini et al., 2019), and the depths", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 396, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 505, + 409 + ], + "score": 1.0, + "content": "maps obtained using our proposed architecture. Our semantic-aware depth network predicts sharper", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 406, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 505, + 420 + ], + "score": 1.0, + "content": "boundaries and fine-grained details on distant objects. The dotted lines indicate class-average errors,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 418, + 333, + 431 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 333, + 431 + ], + "score": 1.0, + "content": "obtained by averaging all the class-specific depth errors.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 107, + 451, + 505, + 550 + ], + "lines": [ + { + "bbox": [ + 106, + 451, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 505, + 464 + ], + "score": 1.0, + "content": "We also measure the impact of our two-stage training process, which is expected to address the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 462, + 504, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 504, + 474 + ], + "score": 1.0, + "content": "infinite depth problem in dynamic objects. Although we find the pixel-average difference in perfor-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "mance to not be significant (see Table 2), there is a significant improvement in class-average depth", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 483, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 505, + 497 + ], + "score": 1.0, + "content": "estimation, from 0.121 to 0.117 Abs-Rel. This is because the number of pixels affected by the in-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 494, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 505, + 508 + ], + "score": 1.0, + "content": "finite depth problem is vastly smaller than the total number of pixels. However, when considering", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "score": 1.0, + "content": "class-average depth evaluation, the improvement over classes such as cars (0.200 to 0.177 Abs-Rel)", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 517, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 506, + 530 + ], + "score": 1.0, + "content": "and motorcycles (0.091 to 0.069) becomes statistically significant. This further exemplifies the im-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "portance of fine-grained metrics in depth evaluation, so these underlying behaviors can be properly", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 538, + 373, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 373, + 552 + ], + "score": 1.0, + "content": "observed and accounted for in the development of new techniques.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 451, + 506, + 552 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 566, + 195, + 579 + ], + "lines": [ + { + "bbox": [ + 104, + 564, + 197, + 582 + ], + "spans": [ + { + "bbox": [ + 104, + 564, + 197, + 582 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 591, + 505, + 712 + ], + "lines": [ + { + "bbox": [ + 106, + 591, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 505, + 604 + ], + "score": 1.0, + "content": "This paper introduces a novel architecture for self-supervised monocular depth estimation that lever-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 602, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 506, + 615 + ], + "score": 1.0, + "content": "ages semantic information from a fixed pretrained network to guide the generation of multi-level", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 612, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 505, + 627 + ], + "score": 1.0, + "content": "depth features via pixel-adaptive convolutions. Our monodepth network learns semantic-aware ge-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 623, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 505, + 639 + ], + "score": 1.0, + "content": "ometric representations that can disambiguate photometric ambiguities in a self-supervised learning", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 635, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 505, + 648 + ], + "score": 1.0, + "content": "structure-from-motion context. Furthermore, we introduce a two-stage training process that resam-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 646, + 506, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 506, + 659 + ], + "score": 1.0, + "content": "ples training data to overcome a common bias on dynamic objects resulting in predicting them at", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 657, + 504, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 504, + 670 + ], + "score": 1.0, + "content": "infinite depths. Our experiments on challenging real-world data shows that our proposed architec-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 667, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 681 + ], + "score": 1.0, + "content": "ture consistently improves the performance of different monodepth architectures, thus establishing", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 680, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 691 + ], + "score": 1.0, + "content": "a new state of the art in self-supervised monocular depth estimation. Future directions of research", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 690, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 505, + 703 + ], + "score": 1.0, + "content": "include leveraging other sources of guidance (i.e. instance masks, optical flow, surface normals), as", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 701, + 396, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 396, + 713 + ], + "score": 1.0, + "content": "well as avenues for self-supervised fine-tuning of the semantic network.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 591, + 506, + 713 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 176, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 105, + 100, + 505, + 123 + ], + "lines": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "score": 1.0, + "content": "Min Bai, Wenjie Luo, Kaustav Kundu, and Raquel Urtasun. Exploiting semantic information and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 111, + 319, + 123 + ], + "spans": [ + { + "bbox": [ + 116, + 111, + 319, + 123 + ], + "score": 1.0, + "content": "deep matching for optical flow. In ECCV, 2016. 2", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 106, + 130, + 503, + 164 + ], + "lines": [ + { + "bbox": [ + 106, + 131, + 505, + 143 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 505, + 143 + ], + "score": 1.0, + "content": "Holger Caesar, Varun Bankiti, Alex H. Lang, Sourabh Vora, Venice Erin Liong, Qiang Xu, Anush", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 141, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 115, + 141, + 505, + 154 + ], + "score": 1.0, + "content": "Krishnan, Yu Pan, Giancarlo Baldan, and Oscar Beijbom. nuscenes: A multimodal dataset for", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 153, + 285, + 165 + ], + "spans": [ + { + "bbox": [ + 115, + 153, + 285, + 165 + ], + "score": 1.0, + "content": "autonomous driving. CoRR, 2019. 13, 14", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 172, + 504, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 172, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 505, + 184 + ], + "score": 1.0, + "content": "Vincent Casser, Soeren Pirk, Reza Mahjourian, and Anelia Angelova. Depth prediction without the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 183, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 115, + 183, + 506, + 196 + ], + "score": 1.0, + "content": "sensors: Leveraging structure for unsupervised learning from monocular videos. AAAI, 2019. 2,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 114, + 193, + 146, + 208 + ], + "spans": [ + { + "bbox": [ + 114, + 193, + 146, + 208 + ], + "score": 1.0, + "content": "3, 5, 6", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 213, + 506, + 248 + ], + "lines": [ + { + "bbox": [ + 105, + 213, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 505, + 227 + ], + "score": 1.0, + "content": "Po-Yi Chen, Alexander H. Liu, Yen-Cheng Liu, and Yu-Chiang Frank Wang. Towards scene under-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 226, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 116, + 226, + 505, + 237 + ], + "score": 1.0, + "content": "standing: Unsupervised monocular depth estimation with semantic-aware representation. In The", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 236, + 482, + 249 + ], + "spans": [ + { + "bbox": [ + 116, + 236, + 482, + 249 + ], + "score": 1.0, + "content": "IEEE Conference on Computer Vision and Pattern Recognition (CVPR), June 2019. 1, 2, 6", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 254, + 503, + 278 + ], + "lines": [ + { + "bbox": [ + 106, + 255, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 505, + 268 + ], + "score": 1.0, + "content": "Djork-Arne Clevert, Thomas Unterthiner, and Sepp Hochreiter. Fast and accurate deep network ´", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 266, + 361, + 279 + ], + "spans": [ + { + "bbox": [ + 115, + 266, + 361, + 279 + ], + "score": 1.0, + "content": "learning by exponential linear units (elus). In ICLR, 2016. 4", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 285, + 506, + 331 + ], + "lines": [ + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "score": 1.0, + "content": "Marius Cordts, Mohamed Omran, Sebastian Ramos, Timo Rehfeld, Markus Enzweiler, Rodrigo", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 297, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 116, + 297, + 505, + 309 + ], + "score": 1.0, + "content": "Benenson, Uwe Franke, Stefan Roth, and Bernt Schiele. The cityscapes dataset for semantic urban", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 308, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 116, + 308, + 505, + 320 + ], + "score": 1.0, + "content": "scene understanding. In Proceedings of the IEEE conference on computer vision and pattern", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 319, + 281, + 331 + ], + "spans": [ + { + "bbox": [ + 115, + 319, + 281, + 331 + ], + "score": 1.0, + "content": "recognition, pp. 3213–3223, 2016. 6, 12", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 338, + 504, + 372 + ], + "lines": [ + { + "bbox": [ + 105, + 337, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 505, + 351 + ], + "score": 1.0, + "content": "Jia Deng, Wei Dong, Richard Socher, Li jia Li, Kai Li, and Li Fei-fei. Imagenet: A large-scale", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 349, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 116, + 349, + 505, + 362 + ], + "score": 1.0, + "content": "hierarchical image database. In Proceedings of the IEEE Conference on Computer Vision and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 360, + 250, + 372 + ], + "spans": [ + { + "bbox": [ + 115, + 360, + 250, + 372 + ], + "score": 1.0, + "content": "Pattern Recognition, 2009. 6, 12", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 105, + 379, + 504, + 403 + ], + "lines": [ + { + "bbox": [ + 105, + 378, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 394 + ], + "score": 1.0, + "content": "David Eigen, Christian Puhrsch, and Rob Fergus. Depth map prediction from a single image using", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 390, + 504, + 403 + ], + "spans": [ + { + "bbox": [ + 115, + 390, + 504, + 403 + ], + "score": 1.0, + "content": "a multi-scale deep network. In Advances in neural information processing systems, 2014. 1, 2, 5", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 410, + 504, + 444 + ], + "lines": [ + { + "bbox": [ + 106, + 410, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 505, + 424 + ], + "score": 1.0, + "content": "Huan Fu, Mingming Gong, Chaohui Wang, Kayhan Batmanghelich, and Dacheng Tao. Deep ordinal", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 421, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 115, + 421, + 505, + 434 + ], + "score": 1.0, + "content": "regression network for monocular depth estimation. In Proceedings of the IEEE Conference on", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 117, + 432, + 388, + 446 + ], + "spans": [ + { + "bbox": [ + 117, + 432, + 388, + 446 + ], + "score": 1.0, + "content": "Computer Vision and Pattern Recognition, pp. 2002–2011, 2018. 2", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 451, + 505, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 451, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 505, + 465 + ], + "score": 1.0, + "content": "Ravi Garg, Vijay Kumar BG, Gustavo Carneiro, and Ian Reid. Unsupervised cnn for single view", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 461, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 115, + 461, + 505, + 478 + ], + "score": 1.0, + "content": "depth estimation: Geometry to the rescue. In European Conference on Computer Vision, pp.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 473, + 240, + 486 + ], + "spans": [ + { + "bbox": [ + 116, + 473, + 240, + 486 + ], + "score": 1.0, + "content": "740–756. Springer, 2016. 2, 6", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 105, + 493, + 505, + 516 + ], + "lines": [ + { + "bbox": [ + 106, + 494, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 505, + 505 + ], + "score": 1.0, + "content": "Andreas Geiger, Philip Lenz, Christoph Stiller, and Raquel Urtasun. Vision meets robotics: The", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 504, + 487, + 516 + ], + "spans": [ + { + "bbox": [ + 116, + 504, + 487, + 516 + ], + "score": 1.0, + "content": "kitti dataset. The International Journal of Robotics Research, 32(11):1231–1237, 2013. 1, 5", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 523, + 504, + 547 + ], + "lines": [ + { + "bbox": [ + 106, + 523, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 505, + 536 + ], + "score": 1.0, + "content": "Clement Godard, Oisin Mac Aodha, and Gabriel J Brostow. Unsupervised monocular depth estima- ´", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 534, + 409, + 547 + ], + "spans": [ + { + "bbox": [ + 115, + 534, + 409, + 547 + ], + "score": 1.0, + "content": "tion with left-right consistency. In CVPR, volume 2, pp. 7, 2017. 2, 3, 6", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 554, + 504, + 577 + ], + "lines": [ + { + "bbox": [ + 106, + 553, + 504, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 504, + 567 + ], + "score": 1.0, + "content": "Clement Godard, Oisin Mac Aodha, Michael Firman, and Gabriel J. Brostow. Digging into self-´", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 566, + 425, + 577 + ], + "spans": [ + { + "bbox": [ + 116, + 566, + 425, + 577 + ], + "score": 1.0, + "content": "supervised monocular depth prediction. arXiv:1806.01260, 2018. 3, 5, 6, 14", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 106, + 585, + 505, + 618 + ], + "lines": [ + { + "bbox": [ + 106, + 583, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 505, + 597 + ], + "score": 1.0, + "content": "Vitor Guizilini, Sudeep Pillai, Rares Ambrus, and Adrien Gaidon. Packnet-sfm: 3d packing for", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 596, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 116, + 596, + 505, + 608 + ], + "score": 1.0, + "content": "self-supervised monocular depth estimation. arXiv preprint arXiv:1905.02693, 2019. 1, 2, 3, 6,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 606, + 141, + 619 + ], + "spans": [ + { + "bbox": [ + 115, + 606, + 141, + 619 + ], + "score": 1.0, + "content": "8, 14", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 103, + 626, + 503, + 650 + ], + "lines": [ + { + "bbox": [ + 105, + 625, + 504, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 504, + 640 + ], + "score": 1.0, + "content": "Fatma Guney and Andreas Geiger. Displets: Resolving stereo ambiguities using object knowledge.¨", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 637, + 428, + 650 + ], + "spans": [ + { + "bbox": [ + 115, + 637, + 428, + 650 + ], + "score": 1.0, + "content": "In Conference on Computer Vision and Pattern Recognition (CVPR), 2015. 2", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 108, + 657, + 503, + 691 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 505, + 670 + ], + "score": 1.0, + "content": "Xiaoyang Guo, Hongsheng Li, Shuai Yi, Jimmy Ren, and Xiaogang Wang. Learning monocular", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 115, + 668, + 505, + 681 + ], + "score": 1.0, + "content": "depth by distilling cross-domain stereo networks. In Proceedings of the European Conference on", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 117, + 678, + 312, + 692 + ], + "spans": [ + { + "bbox": [ + 117, + 678, + 312, + 692 + ], + "score": 1.0, + "content": "Computer Vision (ECCV), pp. 484–500, 2018. 1", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 108, + 698, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 505, + 713 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recog-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "nition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 721, + 190, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 190, + 732 + ], + "score": 1.0, + "content": "770–778, 2016. 2", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44 + } + ], + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 176, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 105, + 100, + 505, + 123 + ], + "lines": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "score": 1.0, + "content": "Min Bai, Wenjie Luo, Kaustav Kundu, and Raquel Urtasun. Exploiting semantic information and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 111, + 319, + 123 + ], + "spans": [ + { + "bbox": [ + 116, + 111, + 319, + 123 + ], + "score": 1.0, + "content": "deep matching for optical flow. In ECCV, 2016. 2", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 106, + 100, + 505, + 123 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 130, + 503, + 164 + ], + "lines": [ + { + "bbox": [ + 106, + 131, + 505, + 143 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 505, + 143 + ], + "score": 1.0, + "content": "Holger Caesar, Varun Bankiti, Alex H. Lang, Sourabh Vora, Venice Erin Liong, Qiang Xu, Anush", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 141, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 115, + 141, + 505, + 154 + ], + "score": 1.0, + "content": "Krishnan, Yu Pan, Giancarlo Baldan, and Oscar Beijbom. nuscenes: A multimodal dataset for", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 153, + 285, + 165 + ], + "spans": [ + { + "bbox": [ + 115, + 153, + 285, + 165 + ], + "score": 1.0, + "content": "autonomous driving. CoRR, 2019. 13, 14", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 106, + 131, + 505, + 165 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 172, + 504, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 172, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 505, + 184 + ], + "score": 1.0, + "content": "Vincent Casser, Soeren Pirk, Reza Mahjourian, and Anelia Angelova. Depth prediction without the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 183, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 115, + 183, + 506, + 196 + ], + "score": 1.0, + "content": "sensors: Leveraging structure for unsupervised learning from monocular videos. AAAI, 2019. 2,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 114, + 193, + 146, + 208 + ], + "spans": [ + { + "bbox": [ + 114, + 193, + 146, + 208 + ], + "score": 1.0, + "content": "3, 5, 6", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 172, + 506, + 208 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 213, + 506, + 248 + ], + "lines": [ + { + "bbox": [ + 105, + 213, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 505, + 227 + ], + "score": 1.0, + "content": "Po-Yi Chen, Alexander H. Liu, Yen-Cheng Liu, and Yu-Chiang Frank Wang. Towards scene under-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 226, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 116, + 226, + 505, + 237 + ], + "score": 1.0, + "content": "standing: Unsupervised monocular depth estimation with semantic-aware representation. In The", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 236, + 482, + 249 + ], + "spans": [ + { + "bbox": [ + 116, + 236, + 482, + 249 + ], + "score": 1.0, + "content": "IEEE Conference on Computer Vision and Pattern Recognition (CVPR), June 2019. 1, 2, 6", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 213, + 505, + 249 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 254, + 503, + 278 + ], + "lines": [ + { + "bbox": [ + 106, + 255, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 505, + 268 + ], + "score": 1.0, + "content": "Djork-Arne Clevert, Thomas Unterthiner, and Sepp Hochreiter. Fast and accurate deep network ´", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 266, + 361, + 279 + ], + "spans": [ + { + "bbox": [ + 115, + 266, + 361, + 279 + ], + "score": 1.0, + "content": "learning by exponential linear units (elus). In ICLR, 2016. 4", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 255, + 505, + 279 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 285, + 506, + 331 + ], + "lines": [ + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "score": 1.0, + "content": "Marius Cordts, Mohamed Omran, Sebastian Ramos, Timo Rehfeld, Markus Enzweiler, Rodrigo", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 297, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 116, + 297, + 505, + 309 + ], + "score": 1.0, + "content": "Benenson, Uwe Franke, Stefan Roth, and Bernt Schiele. The cityscapes dataset for semantic urban", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 308, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 116, + 308, + 505, + 320 + ], + "score": 1.0, + "content": "scene understanding. In Proceedings of the IEEE conference on computer vision and pattern", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 319, + 281, + 331 + ], + "spans": [ + { + "bbox": [ + 115, + 319, + 281, + 331 + ], + "score": 1.0, + "content": "recognition, pp. 3213–3223, 2016. 6, 12", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 285, + 505, + 331 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 338, + 504, + 372 + ], + "lines": [ + { + "bbox": [ + 105, + 337, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 505, + 351 + ], + "score": 1.0, + "content": "Jia Deng, Wei Dong, Richard Socher, Li jia Li, Kai Li, and Li Fei-fei. Imagenet: A large-scale", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 349, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 116, + 349, + 505, + 362 + ], + "score": 1.0, + "content": "hierarchical image database. In Proceedings of the IEEE Conference on Computer Vision and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 360, + 250, + 372 + ], + "spans": [ + { + "bbox": [ + 115, + 360, + 250, + 372 + ], + "score": 1.0, + "content": "Pattern Recognition, 2009. 6, 12", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 337, + 505, + 372 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 379, + 504, + 403 + ], + "lines": [ + { + "bbox": [ + 105, + 378, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 394 + ], + "score": 1.0, + "content": "David Eigen, Christian Puhrsch, and Rob Fergus. Depth map prediction from a single image using", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 390, + 504, + 403 + ], + "spans": [ + { + "bbox": [ + 115, + 390, + 504, + 403 + ], + "score": 1.0, + "content": "a multi-scale deep network. In Advances in neural information processing systems, 2014. 1, 2, 5", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 378, + 505, + 403 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 410, + 504, + 444 + ], + "lines": [ + { + "bbox": [ + 106, + 410, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 505, + 424 + ], + "score": 1.0, + "content": "Huan Fu, Mingming Gong, Chaohui Wang, Kayhan Batmanghelich, and Dacheng Tao. Deep ordinal", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 421, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 115, + 421, + 505, + 434 + ], + "score": 1.0, + "content": "regression network for monocular depth estimation. In Proceedings of the IEEE Conference on", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 117, + 432, + 388, + 446 + ], + "spans": [ + { + "bbox": [ + 117, + 432, + 388, + 446 + ], + "score": 1.0, + "content": "Computer Vision and Pattern Recognition, pp. 2002–2011, 2018. 2", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 106, + 410, + 505, + 446 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 451, + 505, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 451, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 505, + 465 + ], + "score": 1.0, + "content": "Ravi Garg, Vijay Kumar BG, Gustavo Carneiro, and Ian Reid. Unsupervised cnn for single view", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 461, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 115, + 461, + 505, + 478 + ], + "score": 1.0, + "content": "depth estimation: Geometry to the rescue. In European Conference on Computer Vision, pp.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 473, + 240, + 486 + ], + "spans": [ + { + "bbox": [ + 116, + 473, + 240, + 486 + ], + "score": 1.0, + "content": "740–756. Springer, 2016. 2, 6", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 451, + 505, + 486 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 493, + 505, + 516 + ], + "lines": [ + { + "bbox": [ + 106, + 494, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 505, + 505 + ], + "score": 1.0, + "content": "Andreas Geiger, Philip Lenz, Christoph Stiller, and Raquel Urtasun. Vision meets robotics: The", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 504, + 487, + 516 + ], + "spans": [ + { + "bbox": [ + 116, + 504, + 487, + 516 + ], + "score": 1.0, + "content": "kitti dataset. The International Journal of Robotics Research, 32(11):1231–1237, 2013. 1, 5", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 494, + 505, + 516 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 523, + 504, + 547 + ], + "lines": [ + { + "bbox": [ + 106, + 523, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 505, + 536 + ], + "score": 1.0, + "content": "Clement Godard, Oisin Mac Aodha, and Gabriel J Brostow. Unsupervised monocular depth estima- ´", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 534, + 409, + 547 + ], + "spans": [ + { + "bbox": [ + 115, + 534, + 409, + 547 + ], + "score": 1.0, + "content": "tion with left-right consistency. In CVPR, volume 2, pp. 7, 2017. 2, 3, 6", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 106, + 523, + 505, + 547 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 554, + 504, + 577 + ], + "lines": [ + { + "bbox": [ + 106, + 553, + 504, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 504, + 567 + ], + "score": 1.0, + "content": "Clement Godard, Oisin Mac Aodha, Michael Firman, and Gabriel J. Brostow. Digging into self-´", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 566, + 425, + 577 + ], + "spans": [ + { + "bbox": [ + 116, + 566, + 425, + 577 + ], + "score": 1.0, + "content": "supervised monocular depth prediction. arXiv:1806.01260, 2018. 3, 5, 6, 14", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 106, + 553, + 504, + 577 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 585, + 505, + 618 + ], + "lines": [ + { + "bbox": [ + 106, + 583, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 505, + 597 + ], + "score": 1.0, + "content": "Vitor Guizilini, Sudeep Pillai, Rares Ambrus, and Adrien Gaidon. Packnet-sfm: 3d packing for", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 596, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 116, + 596, + 505, + 608 + ], + "score": 1.0, + "content": "self-supervised monocular depth estimation. arXiv preprint arXiv:1905.02693, 2019. 1, 2, 3, 6,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 606, + 141, + 619 + ], + "spans": [ + { + "bbox": [ + 115, + 606, + 141, + 619 + ], + "score": 1.0, + "content": "8, 14", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 106, + 583, + 505, + 619 + ] + }, + { + "type": "text", + "bbox": [ + 103, + 626, + 503, + 650 + ], + "lines": [ + { + "bbox": [ + 105, + 625, + 504, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 504, + 640 + ], + "score": 1.0, + "content": "Fatma Guney and Andreas Geiger. Displets: Resolving stereo ambiguities using object knowledge.¨", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 637, + 428, + 650 + ], + "spans": [ + { + "bbox": [ + 115, + 637, + 428, + 650 + ], + "score": 1.0, + "content": "In Conference on Computer Vision and Pattern Recognition (CVPR), 2015. 2", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 625, + 504, + 650 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 657, + 503, + 691 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 505, + 670 + ], + "score": 1.0, + "content": "Xiaoyang Guo, Hongsheng Li, Shuai Yi, Jimmy Ren, and Xiaogang Wang. Learning monocular", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 115, + 668, + 505, + 681 + ], + "score": 1.0, + "content": "depth by distilling cross-domain stereo networks. In Proceedings of the European Conference on", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 117, + 678, + 312, + 692 + ], + "spans": [ + { + "bbox": [ + 117, + 678, + 312, + 692 + ], + "score": 1.0, + "content": "Computer Vision (ECCV), pp. 484–500, 2018. 1", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 106, + 657, + 505, + 692 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 698, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 505, + 713 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recog-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "nition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 721, + 190, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 190, + 732 + ], + "score": 1.0, + "content": "770–778, 2016. 2", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 697, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 106 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 504, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 504, + 94 + ], + "score": 1.0, + "content": "Max Jaderberg, Karen Simonyan, Andrew Zisserman, et al. Spatial transformer networks. In Ad-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 414, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 414, + 106 + ], + "score": 1.0, + "content": "vances in neural information processing systems, pp. 2017–2025, 2015. 2", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 111, + 504, + 145 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 505, + 125 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 125 + ], + "score": 1.0, + "content": "Alex Kendall, Yarin Gal, and Roberto Cipolla. Multi-task learning using uncertainty to weigh losses", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 123, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 116, + 123, + 505, + 135 + ], + "score": 1.0, + "content": "for scene geometry and semantics. In Proceedings of the IEEE Conference on Computer Vision", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 133, + 316, + 146 + ], + "spans": [ + { + "bbox": [ + 116, + 133, + 316, + 146 + ], + "score": 1.0, + "content": "and Pattern Recognition, pp. 7482–7491, 2018. 1", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 151, + 504, + 185 + ], + "lines": [ + { + "bbox": [ + 105, + 151, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 505, + 164 + ], + "score": 1.0, + "content": "Alexander Kirillov, Ross Girshick, Kaiming He, and Piotr Dollar. Panoptic feature pyramid net- ´", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 161, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 115, + 161, + 506, + 177 + ], + "score": 1.0, + "content": "works. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 117, + 173, + 201, + 185 + ], + "spans": [ + { + "bbox": [ + 117, + 173, + 201, + 185 + ], + "score": 1.0, + "content": "6399–6408, 2019. 5", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 105, + 191, + 504, + 215 + ], + "lines": [ + { + "bbox": [ + 106, + 191, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 191, + 505, + 204 + ], + "score": 1.0, + "content": "Maria Klodt and Andrea Vedaldi. Supervising the new with the old: Learning sfm from sfm. In", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 203, + 419, + 216 + ], + "spans": [ + { + "bbox": [ + 116, + 203, + 419, + 216 + ], + "score": 1.0, + "content": "European Conference on Computer Vision, pp. 713–728. Springer, 2018. 2", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 108, + 220, + 504, + 255 + ], + "lines": [ + { + "bbox": [ + 104, + 219, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 104, + 219, + 505, + 234 + ], + "score": 1.0, + "content": "Jae-Han Lee, Minhyeok Heo, Kyung-Rae Kim, and Chang-Su Kim. Single-image depth estimation", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 231, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 115, + 231, + 505, + 245 + ], + "score": 1.0, + "content": "based on fourier domain analysis. In International Conference on Computer Vision and Pattern", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 243, + 292, + 255 + ], + "spans": [ + { + "bbox": [ + 116, + 243, + 292, + 255 + ], + "score": 1.0, + "content": "Recognition (CVPR), pp. 330–339, 2018. 2", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 260, + 505, + 284 + ], + "lines": [ + { + "bbox": [ + 105, + 258, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 506, + 276 + ], + "score": 1.0, + "content": "Kuan-Hui Lee, German Ros, Jie Li, and Adrien Gaidon. Spigan: Privileged adversarial learning", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 272, + 257, + 284 + ], + "spans": [ + { + "bbox": [ + 116, + 272, + 257, + 284 + ], + "score": 1.0, + "content": "from simulation. In ICLR, 2019. 1", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 289, + 504, + 324 + ], + "lines": [ + { + "bbox": [ + 106, + 290, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 505, + 302 + ], + "score": 1.0, + "content": "Bo Li, Chunhua Shen, Yuchao Dai, Anton Van, and Mingyi He. Depth and surface normal estimation", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 302, + 506, + 313 + ], + "spans": [ + { + "bbox": [ + 115, + 302, + 506, + 313 + ], + "score": 1.0, + "content": "from monocular images using regression on deep features and hierarchical crfs. In International", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 312, + 482, + 325 + ], + "spans": [ + { + "bbox": [ + 116, + 312, + 482, + 325 + ], + "score": 1.0, + "content": "Conference on Computer Vision and Pattern Recognition (CVPR), pp. 1119–1127, 2015. 2", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 104, + 330, + 504, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 505, + 343 + ], + "score": 1.0, + "content": "Jie Li, Allan Raventos, Arjun Bhargava, Takaaki Tagawa, and Adrien Gaidon. Learning to fuse", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 341, + 356, + 353 + ], + "spans": [ + { + "bbox": [ + 115, + 341, + 356, + 353 + ], + "score": 1.0, + "content": "things and stuff. arXiv preprint arXiv:1812.01192, 2018. 5", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 105, + 359, + 504, + 383 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 372 + ], + "score": 1.0, + "content": "Zhizhong Li and Derek Hoiem. Learning without forgetting. IEEE TPAMI, 40(12):2935–2947,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 370, + 151, + 382 + ], + "spans": [ + { + "bbox": [ + 115, + 370, + 151, + 382 + ], + "score": 1.0, + "content": "2017. 3", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 388, + 504, + 423 + ], + "lines": [ + { + "bbox": [ + 105, + 387, + 504, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 504, + 402 + ], + "score": 1.0, + "content": "Tsung-Yi Lin, Piotr Dollar, Ross Girshick, Kaiming He, Bharath Hariharan, and Serge Belongie.´", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 399, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 115, + 399, + 505, + 412 + ], + "score": 1.0, + "content": "Feature pyramid networks for object detection. In Proceedings of the IEEE conference on com-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 114, + 411, + 365, + 423 + ], + "spans": [ + { + "bbox": [ + 114, + 411, + 365, + 423 + ], + "score": 1.0, + "content": "puter vision and pattern recognition, pp. 2117–2125, 2017. 5", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 428, + 503, + 463 + ], + "lines": [ + { + "bbox": [ + 105, + 427, + 504, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 504, + 442 + ], + "score": 1.0, + "content": "Reza Mahjourian, Martin Wicke, and Anelia Angelova. Unsupervised learning of depth and ego-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 440, + 504, + 452 + ], + "spans": [ + { + "bbox": [ + 115, + 440, + 504, + 452 + ], + "score": 1.0, + "content": "motion from monocular video using 3d geometric constraints. In Proceedings of the IEEE Con-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 114, + 451, + 431, + 462 + ], + "spans": [ + { + "bbox": [ + 114, + 451, + 431, + 462 + ], + "score": 1.0, + "content": "ference on Computer Vision and Pattern Recognition, pp. 5667–5675, 2018. 2", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 468, + 504, + 502 + ], + "lines": [ + { + "bbox": [ + 105, + 468, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 481 + ], + "score": 1.0, + "content": "Fabian Manhardt, Wadim Kehl, and Adrien Gaidon. Roi-10d: Monocular lifting of 2d detection to", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 480, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 116, + 480, + 505, + 492 + ], + "score": 1.0, + "content": "6d pose and metric shape. International Conference on Computer Vision and Pattern Recognition", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 491, + 187, + 502 + ], + "spans": [ + { + "bbox": [ + 115, + 491, + 187, + 502 + ], + "score": 1.0, + "content": "(CVPR), 2019. 1", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 508, + 504, + 543 + ], + "lines": [ + { + "bbox": [ + 105, + 508, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 505, + 522 + ], + "score": 1.0, + "content": "Jeff Michels, Ashutosh Saxena, and Andrew Y Ng. High speed obstacle avoidance using monoc-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 519, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 116, + 519, + 505, + 533 + ], + "score": 1.0, + "content": "ular vision and reinforcement learning. In Proceedings of the 22nd international conference on", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 531, + 309, + 543 + ], + "spans": [ + { + "bbox": [ + 116, + 531, + 309, + 543 + ], + "score": 1.0, + "content": "Machine learning, pp. 593–600. ACM, 2005. 1", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 104, + 548, + 504, + 572 + ], + "lines": [ + { + "bbox": [ + 105, + 547, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 561 + ], + "score": 1.0, + "content": "Matthias Ochs, Adrian Kretz, and Rudolf Mester. Sdnet: Semantically guided depth estimation", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 560, + 307, + 572 + ], + "spans": [ + { + "bbox": [ + 115, + 560, + 307, + 572 + ], + "score": 1.0, + "content": "network. In arXiv:1907.10659, 2019. 1, 2, 6, 7", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 107, + 577, + 505, + 612 + ], + "lines": [ + { + "bbox": [ + 105, + 577, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 591 + ], + "score": 1.0, + "content": "Adam Paszke, Sam Gross, Soumith Chintala, Gregory Chanan, Edward Yang, Zachary DeVito,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 589, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 116, + 589, + 505, + 601 + ], + "score": 1.0, + "content": "Zeming Lin, Alban Desmaison, Luca Antiga, and Adam Lerer. Automatic differentiation in", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 601, + 236, + 612 + ], + "spans": [ + { + "bbox": [ + 115, + 601, + 236, + 612 + ], + "score": 1.0, + "content": "pytorch. In NIPS-W, 2017. 6", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 106, + 618, + 504, + 652 + ], + "lines": [ + { + "bbox": [ + 106, + 617, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 506, + 631 + ], + "score": 1.0, + "content": "Sudeep Pillai, Rares Ambrus, and Adrien Gaidon. Superdepth: Self-supervised, super-resolved", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 629, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 115, + 629, + 505, + 642 + ], + "score": 1.0, + "content": "monocular depth estimation. In Proceedings of the IEEE International Conference on Robotics", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 641, + 250, + 652 + ], + "spans": [ + { + "bbox": [ + 115, + 641, + 250, + 652 + ], + "score": 1.0, + "content": "and Automation (ICRA), 2019. 1", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 106, + 658, + 504, + 692 + ], + "lines": [ + { + "bbox": [ + 106, + 658, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 505, + 670 + ], + "score": 1.0, + "content": "Lorenzo Porzi, Samuel Rota Bulo, Aleksander Colovic, and Peter Kontschieder. Seamless scene", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 670, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 116, + 670, + 505, + 682 + ], + "score": 1.0, + "content": "segmentation. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recogni-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 680, + 236, + 692 + ], + "spans": [ + { + "bbox": [ + 115, + 680, + 236, + 692 + ], + "score": 1.0, + "content": "tion, pp. 8277–8286, 2019. 5", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Xiaojuan Qi, Renjie Liao, Zhengzhe Liu, Raquel Urtasun, and Jiaya Jia. Geonet: Geometric neural", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "network for joint depth and surface normal estimation. In International Conference on Computer", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 117, + 721, + 369, + 733 + ], + "spans": [ + { + "bbox": [ + 117, + 721, + 369, + 733 + ], + "score": 1.0, + "content": "Vision and Pattern Recognition (CVPR), pp. 283–291, 2018. 2", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 294, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 106 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 504, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 504, + 94 + ], + "score": 1.0, + "content": "Max Jaderberg, Karen Simonyan, Andrew Zisserman, et al. Spatial transformer networks. In Ad-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 414, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 414, + 106 + ], + "score": 1.0, + "content": "vances in neural information processing systems, pp. 2017–2025, 2015. 2", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 83, + 504, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 111, + 504, + 145 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 505, + 125 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 125 + ], + "score": 1.0, + "content": "Alex Kendall, Yarin Gal, and Roberto Cipolla. Multi-task learning using uncertainty to weigh losses", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 123, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 116, + 123, + 505, + 135 + ], + "score": 1.0, + "content": "for scene geometry and semantics. In Proceedings of the IEEE Conference on Computer Vision", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 133, + 316, + 146 + ], + "spans": [ + { + "bbox": [ + 116, + 133, + 316, + 146 + ], + "score": 1.0, + "content": "and Pattern Recognition, pp. 7482–7491, 2018. 1", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 110, + 505, + 146 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 151, + 504, + 185 + ], + "lines": [ + { + "bbox": [ + 105, + 151, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 505, + 164 + ], + "score": 1.0, + "content": "Alexander Kirillov, Ross Girshick, Kaiming He, and Piotr Dollar. Panoptic feature pyramid net- ´", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 161, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 115, + 161, + 506, + 177 + ], + "score": 1.0, + "content": "works. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 117, + 173, + 201, + 185 + ], + "spans": [ + { + "bbox": [ + 117, + 173, + 201, + 185 + ], + "score": 1.0, + "content": "6399–6408, 2019. 5", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 151, + 506, + 185 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 191, + 504, + 215 + ], + "lines": [ + { + "bbox": [ + 106, + 191, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 191, + 505, + 204 + ], + "score": 1.0, + "content": "Maria Klodt and Andrea Vedaldi. Supervising the new with the old: Learning sfm from sfm. In", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 203, + 419, + 216 + ], + "spans": [ + { + "bbox": [ + 116, + 203, + 419, + 216 + ], + "score": 1.0, + "content": "European Conference on Computer Vision, pp. 713–728. Springer, 2018. 2", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 106, + 191, + 505, + 216 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 220, + 504, + 255 + ], + "lines": [ + { + "bbox": [ + 104, + 219, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 104, + 219, + 505, + 234 + ], + "score": 1.0, + "content": "Jae-Han Lee, Minhyeok Heo, Kyung-Rae Kim, and Chang-Su Kim. Single-image depth estimation", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 231, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 115, + 231, + 505, + 245 + ], + "score": 1.0, + "content": "based on fourier domain analysis. In International Conference on Computer Vision and Pattern", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 243, + 292, + 255 + ], + "spans": [ + { + "bbox": [ + 116, + 243, + 292, + 255 + ], + "score": 1.0, + "content": "Recognition (CVPR), pp. 330–339, 2018. 2", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 104, + 219, + 505, + 255 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 260, + 505, + 284 + ], + "lines": [ + { + "bbox": [ + 105, + 258, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 506, + 276 + ], + "score": 1.0, + "content": "Kuan-Hui Lee, German Ros, Jie Li, and Adrien Gaidon. Spigan: Privileged adversarial learning", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 272, + 257, + 284 + ], + "spans": [ + { + "bbox": [ + 116, + 272, + 257, + 284 + ], + "score": 1.0, + "content": "from simulation. In ICLR, 2019. 1", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 258, + 506, + 284 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 289, + 504, + 324 + ], + "lines": [ + { + "bbox": [ + 106, + 290, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 505, + 302 + ], + "score": 1.0, + "content": "Bo Li, Chunhua Shen, Yuchao Dai, Anton Van, and Mingyi He. Depth and surface normal estimation", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 302, + 506, + 313 + ], + "spans": [ + { + "bbox": [ + 115, + 302, + 506, + 313 + ], + "score": 1.0, + "content": "from monocular images using regression on deep features and hierarchical crfs. In International", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 312, + 482, + 325 + ], + "spans": [ + { + "bbox": [ + 116, + 312, + 482, + 325 + ], + "score": 1.0, + "content": "Conference on Computer Vision and Pattern Recognition (CVPR), pp. 1119–1127, 2015. 2", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 106, + 290, + 506, + 325 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 330, + 504, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 505, + 343 + ], + "score": 1.0, + "content": "Jie Li, Allan Raventos, Arjun Bhargava, Takaaki Tagawa, and Adrien Gaidon. Learning to fuse", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 341, + 356, + 353 + ], + "spans": [ + { + "bbox": [ + 115, + 341, + 356, + 353 + ], + "score": 1.0, + "content": "things and stuff. arXiv preprint arXiv:1812.01192, 2018. 5", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 329, + 505, + 353 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 359, + 504, + 383 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 372 + ], + "score": 1.0, + "content": "Zhizhong Li and Derek Hoiem. Learning without forgetting. IEEE TPAMI, 40(12):2935–2947,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 370, + 151, + 382 + ], + "spans": [ + { + "bbox": [ + 115, + 370, + 151, + 382 + ], + "score": 1.0, + "content": "2017. 3", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 358, + 505, + 382 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 388, + 504, + 423 + ], + "lines": [ + { + "bbox": [ + 105, + 387, + 504, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 504, + 402 + ], + "score": 1.0, + "content": "Tsung-Yi Lin, Piotr Dollar, Ross Girshick, Kaiming He, Bharath Hariharan, and Serge Belongie.´", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 399, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 115, + 399, + 505, + 412 + ], + "score": 1.0, + "content": "Feature pyramid networks for object detection. In Proceedings of the IEEE conference on com-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 114, + 411, + 365, + 423 + ], + "spans": [ + { + "bbox": [ + 114, + 411, + 365, + 423 + ], + "score": 1.0, + "content": "puter vision and pattern recognition, pp. 2117–2125, 2017. 5", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 387, + 505, + 423 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 428, + 503, + 463 + ], + "lines": [ + { + "bbox": [ + 105, + 427, + 504, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 504, + 442 + ], + "score": 1.0, + "content": "Reza Mahjourian, Martin Wicke, and Anelia Angelova. Unsupervised learning of depth and ego-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 440, + 504, + 452 + ], + "spans": [ + { + "bbox": [ + 115, + 440, + 504, + 452 + ], + "score": 1.0, + "content": "motion from monocular video using 3d geometric constraints. In Proceedings of the IEEE Con-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 114, + 451, + 431, + 462 + ], + "spans": [ + { + "bbox": [ + 114, + 451, + 431, + 462 + ], + "score": 1.0, + "content": "ference on Computer Vision and Pattern Recognition, pp. 5667–5675, 2018. 2", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 427, + 504, + 462 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 468, + 504, + 502 + ], + "lines": [ + { + "bbox": [ + 105, + 468, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 481 + ], + "score": 1.0, + "content": "Fabian Manhardt, Wadim Kehl, and Adrien Gaidon. Roi-10d: Monocular lifting of 2d detection to", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 480, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 116, + 480, + 505, + 492 + ], + "score": 1.0, + "content": "6d pose and metric shape. International Conference on Computer Vision and Pattern Recognition", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 491, + 187, + 502 + ], + "spans": [ + { + "bbox": [ + 115, + 491, + 187, + 502 + ], + "score": 1.0, + "content": "(CVPR), 2019. 1", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 468, + 505, + 502 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 508, + 504, + 543 + ], + "lines": [ + { + "bbox": [ + 105, + 508, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 505, + 522 + ], + "score": 1.0, + "content": "Jeff Michels, Ashutosh Saxena, and Andrew Y Ng. High speed obstacle avoidance using monoc-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 519, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 116, + 519, + 505, + 533 + ], + "score": 1.0, + "content": "ular vision and reinforcement learning. In Proceedings of the 22nd international conference on", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 531, + 309, + 543 + ], + "spans": [ + { + "bbox": [ + 116, + 531, + 309, + 543 + ], + "score": 1.0, + "content": "Machine learning, pp. 593–600. ACM, 2005. 1", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 508, + 505, + 543 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 548, + 504, + 572 + ], + "lines": [ + { + "bbox": [ + 105, + 547, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 561 + ], + "score": 1.0, + "content": "Matthias Ochs, Adrian Kretz, and Rudolf Mester. Sdnet: Semantically guided depth estimation", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 560, + 307, + 572 + ], + "spans": [ + { + "bbox": [ + 115, + 560, + 307, + 572 + ], + "score": 1.0, + "content": "network. In arXiv:1907.10659, 2019. 1, 2, 6, 7", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 547, + 505, + 572 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 577, + 505, + 612 + ], + "lines": [ + { + "bbox": [ + 105, + 577, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 591 + ], + "score": 1.0, + "content": "Adam Paszke, Sam Gross, Soumith Chintala, Gregory Chanan, Edward Yang, Zachary DeVito,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 589, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 116, + 589, + 505, + 601 + ], + "score": 1.0, + "content": "Zeming Lin, Alban Desmaison, Luca Antiga, and Adam Lerer. Automatic differentiation in", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 601, + 236, + 612 + ], + "spans": [ + { + "bbox": [ + 115, + 601, + 236, + 612 + ], + "score": 1.0, + "content": "pytorch. In NIPS-W, 2017. 6", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 577, + 505, + 612 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 618, + 504, + 652 + ], + "lines": [ + { + "bbox": [ + 106, + 617, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 506, + 631 + ], + "score": 1.0, + "content": "Sudeep Pillai, Rares Ambrus, and Adrien Gaidon. Superdepth: Self-supervised, super-resolved", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 629, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 115, + 629, + 505, + 642 + ], + "score": 1.0, + "content": "monocular depth estimation. In Proceedings of the IEEE International Conference on Robotics", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 641, + 250, + 652 + ], + "spans": [ + { + "bbox": [ + 115, + 641, + 250, + 652 + ], + "score": 1.0, + "content": "and Automation (ICRA), 2019. 1", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 106, + 617, + 506, + 652 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 658, + 504, + 692 + ], + "lines": [ + { + "bbox": [ + 106, + 658, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 505, + 670 + ], + "score": 1.0, + "content": "Lorenzo Porzi, Samuel Rota Bulo, Aleksander Colovic, and Peter Kontschieder. Seamless scene", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 670, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 116, + 670, + 505, + 682 + ], + "score": 1.0, + "content": "segmentation. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recogni-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 680, + 236, + 692 + ], + "spans": [ + { + "bbox": [ + 115, + 680, + 236, + 692 + ], + "score": 1.0, + "content": "tion, pp. 8277–8286, 2019. 5", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 106, + 658, + 505, + 692 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Xiaojuan Qi, Renjie Liao, Zhengzhe Liu, Raquel Urtasun, and Jiaya Jia. Geonet: Geometric neural", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "network for joint depth and surface normal estimation. In International Conference on Computer", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 117, + 721, + 369, + 733 + ], + "spans": [ + { + "bbox": [ + 117, + 721, + 369, + 733 + ], + "score": 1.0, + "content": "Vision and Pattern Recognition (CVPR), pp. 283–291, 2018. 2", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46, + "bbox_fs": [ + 106, + 699, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "Hang Su, Varun Jampani, Deqing Sun, Orazio Gallo, Erik Learned-Miller, and Jan Kautz. Pixel-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "adaptive convolutional neural networks. In Proceedings of the IEEE Conference on Computer", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 103, + 335, + 118 + ], + "spans": [ + { + "bbox": [ + 116, + 103, + 335, + 118 + ], + "score": 1.0, + "content": "Vision and Pattern Recognition (CVPR), 2019. 1, 2, 4", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 108, + 123, + 504, + 157 + ], + "lines": [ + { + "bbox": [ + 106, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "Benjamin Ummenhofer, Huizhong Zhou, Jonas Uhrig, Nikolaus Mayer, Eddy Ilg, Alexey Dosovit-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 135, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 116, + 135, + 505, + 147 + ], + "score": 1.0, + "content": "skiy, and Thomas Brox. Demon: Depth and motion network for learning monocular stereo. In", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 145, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 116, + 145, + 505, + 158 + ], + "score": 1.0, + "content": "IEEE Conference on computer vision and pattern recognition (CVPR), volume 5, pp. 6, 2017. 2", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 163, + 503, + 198 + ], + "lines": [ + { + "bbox": [ + 106, + 163, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 163, + 505, + 177 + ], + "score": 1.0, + "content": "Chaoyang Wang, Jose Miguel Buenaposada, Rui Zhu, and Simon Lucey. Learning depth from ´", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 175, + 504, + 188 + ], + "spans": [ + { + "bbox": [ + 115, + 175, + 504, + 188 + ], + "score": 1.0, + "content": "monocular videos using direct methods. In Proceedings of the IEEE Conference on Computer", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 117, + 186, + 345, + 198 + ], + "spans": [ + { + "bbox": [ + 117, + 186, + 345, + 198 + ], + "score": 1.0, + "content": "Vision and Pattern Recognition, pp. 2022–2030, 2018. 2", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 105, + 204, + 502, + 228 + ], + "lines": [ + { + "bbox": [ + 105, + 204, + 504, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 504, + 217 + ], + "score": 1.0, + "content": "Zhou Wang, Alan C Bovik, Hamid R Sheikh, and Eero P Simoncelli. Image quality assessment:", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 216, + 498, + 229 + ], + "spans": [ + { + "bbox": [ + 116, + 216, + 498, + 229 + ], + "score": 1.0, + "content": "from error visibility to structural similarity. IEEE transactions on image processing, 2004. 2, 3", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 234, + 503, + 258 + ], + "lines": [ + { + "bbox": [ + 106, + 233, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 233, + 505, + 249 + ], + "score": 1.0, + "content": "Yuxin Wu and Kaiming He. Group normalization. In Proceedings of the 15th European Conference", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 246, + 310, + 258 + ], + "spans": [ + { + "bbox": [ + 115, + 246, + 310, + 258 + ], + "score": 1.0, + "content": "on Computer Vision (ECCV), pp. 3–19, 2018. 4", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 108, + 264, + 504, + 298 + ], + "lines": [ + { + "bbox": [ + 106, + 264, + 504, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 504, + 278 + ], + "score": 1.0, + "content": "Yuwen Xiong, Renjie Liao, Hengshuang Zhao, Rui Hu, Min Bai, Ersin Yumer, and Raquel Urtasun.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 275, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 115, + 275, + 505, + 289 + ], + "score": 1.0, + "content": "Upsnet: A unified panoptic segmentation network. In Proceedings of the IEEE Conference on", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 117, + 286, + 388, + 300 + ], + "spans": [ + { + "bbox": [ + 117, + 286, + 388, + 300 + ], + "score": 1.0, + "content": "Computer Vision and Pattern Recognition, pp. 8818–8826, 2019. 5", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 305, + 505, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 303, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 505, + 320 + ], + "score": 1.0, + "content": "Nan Yang, Rui Wang, Jorg St ¨ uckler, and Daniel Cremers. Deep virtual stereo odometry: Leveraging ¨", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 316, + 473, + 329 + ], + "spans": [ + { + "bbox": [ + 115, + 316, + 473, + 329 + ], + "score": 1.0, + "content": "deep depth prediction for monocular direct sparse odometry. arXiv:1807.02570, 2018. 2", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 107, + 335, + 505, + 368 + ], + "lines": [ + { + "bbox": [ + 105, + 333, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 505, + 350 + ], + "score": 1.0, + "content": "Zhenheng Yang, Peng Wang, Wei Xu, Liang Zhao, and Ramakant Nevatia. Unsupervised learning", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 346, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 115, + 346, + 506, + 359 + ], + "score": 1.0, + "content": "of geometry with edge-aware depth-normal consistency. arXiv preprint arXiv:1711.03665, 2017.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 118, + 360, + 123, + 367 + ], + "spans": [ + { + "bbox": [ + 118, + 360, + 123, + 367 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 375, + 505, + 410 + ], + "lines": [ + { + "bbox": [ + 105, + 375, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 506, + 389 + ], + "score": 1.0, + "content": "Zhichao Yin and Jianping Shi. Geonet: Unsupervised learning of dense depth, optical flow and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 387, + 504, + 399 + ], + "spans": [ + { + "bbox": [ + 116, + 387, + 504, + 399 + ], + "score": 1.0, + "content": "camera pose. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 398, + 230, + 410 + ], + "spans": [ + { + "bbox": [ + 116, + 398, + 230, + 410 + ], + "score": 1.0, + "content": "(CVPR), volume 2, 2018. 2", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 416, + 504, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "Huangying Zhan, Ravi Garg, Chamara Saroj Weerasekera, Kejie Li, Harsh Agarwal, and Ian Reid.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 428, + 506, + 440 + ], + "spans": [ + { + "bbox": [ + 116, + 428, + 506, + 440 + ], + "score": 1.0, + "content": "Unsupervised learning of monocular depth estimation and visual odometry with deep feature", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 115, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "reconstruction. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recog-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 450, + 234, + 462 + ], + "spans": [ + { + "bbox": [ + 116, + 450, + 234, + 462 + ], + "score": 1.0, + "content": "nition, pp. 340–349, 2018. 6", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 105, + 468, + 504, + 492 + ], + "lines": [ + { + "bbox": [ + 105, + 468, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 482 + ], + "score": 1.0, + "content": "Tinghui Zhou, Matthew Brown, Noah Snavely, and David G Lowe. Unsupervised learning of depth", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 479, + 396, + 492 + ], + "spans": [ + { + "bbox": [ + 115, + 479, + 396, + 492 + ], + "score": 1.0, + "content": "and ego-motion from video. In CVPR, volume 2, pp. 7, 2017. 2, 3, 5", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 105, + 498, + 504, + 522 + ], + "lines": [ + { + "bbox": [ + 107, + 499, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 107, + 499, + 505, + 510 + ], + "score": 1.0, + "content": "Yuliang Zou, Zelun Luo, and Jia-Bin Huang. Df-net: Unsupervised joint learning of depth and flow", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 510, + 484, + 523 + ], + "spans": [ + { + "bbox": [ + 116, + 510, + 484, + 523 + ], + "score": 1.0, + "content": "using cross-task consistency. In European Conference on Computer Vision, 2018. 1, 2, 3, 6", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 294, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "Hang Su, Varun Jampani, Deqing Sun, Orazio Gallo, Erik Learned-Miller, and Jan Kautz. Pixel-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "adaptive convolutional neural networks. In Proceedings of the IEEE Conference on Computer", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 103, + 335, + 118 + ], + "spans": [ + { + "bbox": [ + 116, + 103, + 335, + 118 + ], + "score": 1.0, + "content": "Vision and Pattern Recognition (CVPR), 2019. 1, 2, 4", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 81, + 505, + 118 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 123, + 504, + 157 + ], + "lines": [ + { + "bbox": [ + 106, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "Benjamin Ummenhofer, Huizhong Zhou, Jonas Uhrig, Nikolaus Mayer, Eddy Ilg, Alexey Dosovit-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 135, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 116, + 135, + 505, + 147 + ], + "score": 1.0, + "content": "skiy, and Thomas Brox. Demon: Depth and motion network for learning monocular stereo. In", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 145, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 116, + 145, + 505, + 158 + ], + "score": 1.0, + "content": "IEEE Conference on computer vision and pattern recognition (CVPR), volume 5, pp. 6, 2017. 2", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 106, + 123, + 505, + 158 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 163, + 503, + 198 + ], + "lines": [ + { + "bbox": [ + 106, + 163, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 163, + 505, + 177 + ], + "score": 1.0, + "content": "Chaoyang Wang, Jose Miguel Buenaposada, Rui Zhu, and Simon Lucey. Learning depth from ´", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 175, + 504, + 188 + ], + "spans": [ + { + "bbox": [ + 115, + 175, + 504, + 188 + ], + "score": 1.0, + "content": "monocular videos using direct methods. In Proceedings of the IEEE Conference on Computer", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 117, + 186, + 345, + 198 + ], + "spans": [ + { + "bbox": [ + 117, + 186, + 345, + 198 + ], + "score": 1.0, + "content": "Vision and Pattern Recognition, pp. 2022–2030, 2018. 2", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 163, + 505, + 198 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 204, + 502, + 228 + ], + "lines": [ + { + "bbox": [ + 105, + 204, + 504, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 504, + 217 + ], + "score": 1.0, + "content": "Zhou Wang, Alan C Bovik, Hamid R Sheikh, and Eero P Simoncelli. Image quality assessment:", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 216, + 498, + 229 + ], + "spans": [ + { + "bbox": [ + 116, + 216, + 498, + 229 + ], + "score": 1.0, + "content": "from error visibility to structural similarity. IEEE transactions on image processing, 2004. 2, 3", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 204, + 504, + 229 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 234, + 503, + 258 + ], + "lines": [ + { + "bbox": [ + 106, + 233, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 233, + 505, + 249 + ], + "score": 1.0, + "content": "Yuxin Wu and Kaiming He. Group normalization. In Proceedings of the 15th European Conference", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 246, + 310, + 258 + ], + "spans": [ + { + "bbox": [ + 115, + 246, + 310, + 258 + ], + "score": 1.0, + "content": "on Computer Vision (ECCV), pp. 3–19, 2018. 4", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 106, + 233, + 505, + 258 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 264, + 504, + 298 + ], + "lines": [ + { + "bbox": [ + 106, + 264, + 504, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 504, + 278 + ], + "score": 1.0, + "content": "Yuwen Xiong, Renjie Liao, Hengshuang Zhao, Rui Hu, Min Bai, Ersin Yumer, and Raquel Urtasun.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 275, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 115, + 275, + 505, + 289 + ], + "score": 1.0, + "content": "Upsnet: A unified panoptic segmentation network. In Proceedings of the IEEE Conference on", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 117, + 286, + 388, + 300 + ], + "spans": [ + { + "bbox": [ + 117, + 286, + 388, + 300 + ], + "score": 1.0, + "content": "Computer Vision and Pattern Recognition, pp. 8818–8826, 2019. 5", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 106, + 264, + 505, + 300 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 305, + 505, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 303, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 505, + 320 + ], + "score": 1.0, + "content": "Nan Yang, Rui Wang, Jorg St ¨ uckler, and Daniel Cremers. Deep virtual stereo odometry: Leveraging ¨", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 316, + 473, + 329 + ], + "spans": [ + { + "bbox": [ + 115, + 316, + 473, + 329 + ], + "score": 1.0, + "content": "deep depth prediction for monocular direct sparse odometry. arXiv:1807.02570, 2018. 2", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 303, + 505, + 329 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 335, + 505, + 368 + ], + "lines": [ + { + "bbox": [ + 105, + 333, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 505, + 350 + ], + "score": 1.0, + "content": "Zhenheng Yang, Peng Wang, Wei Xu, Liang Zhao, and Ramakant Nevatia. Unsupervised learning", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 346, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 115, + 346, + 506, + 359 + ], + "score": 1.0, + "content": "of geometry with edge-aware depth-normal consistency. arXiv preprint arXiv:1711.03665, 2017.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 118, + 360, + 123, + 367 + ], + "spans": [ + { + "bbox": [ + 118, + 360, + 123, + 367 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 333, + 506, + 367 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 375, + 505, + 410 + ], + "lines": [ + { + "bbox": [ + 105, + 375, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 506, + 389 + ], + "score": 1.0, + "content": "Zhichao Yin and Jianping Shi. Geonet: Unsupervised learning of dense depth, optical flow and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 387, + 504, + 399 + ], + "spans": [ + { + "bbox": [ + 116, + 387, + 504, + 399 + ], + "score": 1.0, + "content": "camera pose. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 398, + 230, + 410 + ], + "spans": [ + { + "bbox": [ + 116, + 398, + 230, + 410 + ], + "score": 1.0, + "content": "(CVPR), volume 2, 2018. 2", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 375, + 506, + 410 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 416, + 504, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "Huangying Zhan, Ravi Garg, Chamara Saroj Weerasekera, Kejie Li, Harsh Agarwal, and Ian Reid.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 428, + 506, + 440 + ], + "spans": [ + { + "bbox": [ + 116, + 428, + 506, + 440 + ], + "score": 1.0, + "content": "Unsupervised learning of monocular depth estimation and visual odometry with deep feature", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 115, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "reconstruction. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recog-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 450, + 234, + 462 + ], + "spans": [ + { + "bbox": [ + 116, + 450, + 234, + 462 + ], + "score": 1.0, + "content": "nition, pp. 340–349, 2018. 6", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 417, + 506, + 462 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 468, + 504, + 492 + ], + "lines": [ + { + "bbox": [ + 105, + 468, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 482 + ], + "score": 1.0, + "content": "Tinghui Zhou, Matthew Brown, Noah Snavely, and David G Lowe. Unsupervised learning of depth", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 479, + 396, + 492 + ], + "spans": [ + { + "bbox": [ + 115, + 479, + 396, + 492 + ], + "score": 1.0, + "content": "and ego-motion from video. In CVPR, volume 2, pp. 7, 2017. 2, 3, 5", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 468, + 505, + 492 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 498, + 504, + 522 + ], + "lines": [ + { + "bbox": [ + 107, + 499, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 107, + 499, + 505, + 510 + ], + "score": 1.0, + "content": "Yuliang Zou, Zelun Luo, and Jia-Bin Huang. Df-net: Unsupervised joint learning of depth and flow", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 510, + 484, + 523 + ], + "spans": [ + { + "bbox": [ + 116, + 510, + 484, + 523 + ], + "score": 1.0, + "content": "using cross-task consistency. In European Conference on Computer Vision, 2018. 1, 2, 3, 6", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 107, + 499, + 505, + 523 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 430, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 432, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 432, + 96 + ], + "score": 1.0, + "content": "A PRE-TRAINING THE SEMANTIC SEGMENTATION NETWORK", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 105, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "The introduction of a semantic segmentation network to the depth estimation task increases the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 118, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 505, + 129 + ], + "score": 1.0, + "content": "depth estimation performance, however it also increases model complexity (e.g. number of trainable", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 506, + 140 + ], + "score": 1.0, + "content": "parameters). To investigate that the increased performance for the depth estimation task is indeed", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "score": 1.0, + "content": "due to the semantic features encoded in the secondary network, we perform an in-depth analysis", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 149, + 506, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 506, + 163 + ], + "score": 1.0, + "content": "(summarized in Table 3) where we explore the impact of pre-training the semantic segmentation", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 160, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 506, + 174 + ], + "score": 1.0, + "content": "network before it is used to guide the generation of depth features. From these results we can see", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 172, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 505, + 183 + ], + "score": 1.0, + "content": "that the presence of semantic information encoded in the secondary network indeed leads to an", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 183, + 504, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 504, + 195 + ], + "score": 1.0, + "content": "increase in performance, and that fine-tuning this secondary network for the speficic task of depth", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 194, + 280, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 280, + 206 + ], + "score": 1.0, + "content": "estimation actually decreases performance.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 210, + 505, + 309 + ], + "lines": [ + { + "bbox": [ + 106, + 211, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 211, + 505, + 222 + ], + "score": 1.0, + "content": "In the first two rows an untrained semantic network is utilized, with only its encoder initialized", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 221, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 505, + 234 + ], + "score": 1.0, + "content": "from ImageNet (Deng et al., 2009) weights. Two different scenarios are explored: in the first one", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 232, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 423, + 245 + ], + "score": 1.0, + "content": "(D) only the depth network is fine-tuned in a self-supervised fashion, while in", + "type": "text" + }, + { + "bbox": [ + 424, + 233, + 444, + 243 + ], + "score": 0.79, + "content": "\\mathbf { D + S }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 232, + 505, + 245 + ], + "score": 1.0, + "content": "both networks", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 244, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 256 + ], + "score": 1.0, + "content": "are fine-tuned together in the same way. As expected, using untrained features as guidance leads", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 255, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 505, + 267 + ], + "score": 1.0, + "content": "to significantly worse results, since there is no structure encoded in the secondary network and the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 265, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 506, + 278 + ], + "score": 1.0, + "content": "primary network needs to learn to filter out all this spurious information. When both networks are", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 275, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 505, + 290 + ], + "score": 1.0, + "content": "fine-tuned simultaneously, results improve because now the added complexity from the secondary", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 288, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 505, + 299 + ], + "score": 1.0, + "content": "network can be leveraged for the task of depth estimation, however there is still no improvement", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 299, + 178, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 178, + 310 + ], + "score": 1.0, + "content": "over the baseline.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 315, + 505, + 425 + ], + "lines": [ + { + "bbox": [ + 106, + 316, + 504, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 504, + 327 + ], + "score": 1.0, + "content": "Next, the semantic network was pre-trained on only half of the CityScapes (Cordts et al., 2016)", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 325, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 505, + 339 + ], + "score": 1.0, + "content": "dataset (samples chosen randomly), leading to a worse semantic segmentation performance (vali-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 336, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 201, + 350 + ], + "score": 1.0, + "content": "dation mIoU of around", + "type": "text" + }, + { + "bbox": [ + 202, + 337, + 222, + 348 + ], + "score": 0.89, + "content": "7 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 336, + 238, + 350 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 238, + 337, + 258, + 348 + ], + "score": 0.88, + "content": "\\dot { 7 } 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 336, + 505, + 350 + ], + "score": 1.0, + "content": "for the fully trained one). This partial pre-training stage was", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "score": 1.0, + "content": "enough to enable the transfer of useful information between networks, leading to improvements", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 359, + 504, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 359, + 504, + 371 + ], + "score": 1.0, + "content": "over the baseline. Interestingly, fine-tuning both networks for the task of depth estimation actually", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 371, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 505, + 382 + ], + "score": 1.0, + "content": "hurt performance this time, which we attribute to forgetting the information contained in the sec-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 381, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 393 + ], + "score": 1.0, + "content": "ondary network, as both networks are optimized for the depth task. When the semantic network is", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "score": 1.0, + "content": "pretrained with all of CityScapes (last two rows), these effects are magnified, with fine-tuning only", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 402, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 505, + 415 + ], + "score": 1.0, + "content": "the depth network leading to our best reported performance (Table 1) and fine-tuning both networks", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 414, + 294, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 294, + 426 + ], + "score": 1.0, + "content": "again leading to results similar to the baseline.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 23.5 + }, + { + "type": "table", + "bbox": [ + 114, + 435, + 495, + 543 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 114, + 435, + 495, + 543 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 435, + 495, + 543 + ], + "spans": [ + { + "bbox": [ + 114, + 435, + 495, + 543 + ], + "score": 0.983, + "html": "
MethodPre-TrainFine-TuneLower is BetterHigher is Better
Abs RelSq RelRMSERMSElogδ <1.25 δ<1.252δ<1.253
BaselineD0.1080.7274.4260.1840.8850.9630.983
ProposedID+S0.1160.8474.7510.1920.8790.9600.981
ID0.1971.3236.1140.2650.7760.9180.966
CS (1/2)D+S0.1090.7374.3890.1850.8840.9620.982
CS (1/2)D0.1040.7164.3220.1800.8930.9640.984
CsD+S0.1070.7414.4070.1830.8830.9630.983
CsD0.1020.6984.3810.1780.8960.9640.984
", + "type": "table", + "image_path": "39674a6eb79324a71abaab952b2fa2a5c0e792c6121c26ae828662acaccea15b.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 114, + 435, + 495, + 471.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 114, + 471.0, + 495, + 507.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 114, + 507.0, + 495, + 543.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 552, + 505, + 618 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "Table 3: Analysis of the impact of pre-training the semantic segmentation network. On the Pre-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 563, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 167, + 575 + ], + "score": 1.0, + "content": "Train column,", + "type": "text" + }, + { + "bbox": [ + 167, + 564, + 173, + 573 + ], + "score": 0.4, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 563, + 505, + 575 + ], + "score": 1.0, + "content": "indicates ImageNet (Deng et al., 2009) pretraining and CS indicates CityScapes", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 574, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 257, + 586 + ], + "score": 1.0, + "content": "(Cordts et al., 2016) pretraining, with", + "type": "text" + }, + { + "bbox": [ + 257, + 574, + 271, + 584 + ], + "score": 0.33, + "content": "1 / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 574, + 505, + 586 + ], + "score": 1.0, + "content": "indicating the use of only half the dataset (samples chosen", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 584, + 504, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 255, + 597 + ], + "score": 1.0, + "content": "randomly). In the Fine-Tune column,", + "type": "text" + }, + { + "bbox": [ + 255, + 585, + 265, + 595 + ], + "score": 0.73, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 584, + 439, + 597 + ], + "score": 1.0, + "content": "indicates fine-tuning the depth network and", + "type": "text" + }, + { + "bbox": [ + 439, + 585, + 446, + 595 + ], + "score": 0.32, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 584, + 504, + 597 + ], + "score": 1.0, + "content": "indicates fine-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 594, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 104, + 594, + 506, + 609 + ], + "score": 1.0, + "content": "tuning the semantic network (note that this is a self-supervised fine-tuning for the depth task, using", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 607, + 263, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 263, + 618 + ], + "score": 1.0, + "content": "the objective described in Section 3.1).", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5 + } + ], + "index": 32.25 + }, + { + "type": "title", + "bbox": [ + 108, + 641, + 453, + 654 + ], + "lines": [ + { + "bbox": [ + 105, + 640, + 455, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 455, + 655 + ], + "score": 1.0, + "content": "B UNCERTAINTY AND GENERALIZATION TO DIFFERENT OBJECTS", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "In a self-supervised setting, increasing the number of unlabeled videos used for depth training is", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "expected to lead to an increasing specialization away from the domain in which the semantic net-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "work was pre-trained. This might result in harmful guidance if our method is not robust to this", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "gap. However, our approach does not use semantic predictions directly, but rather the decoded", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 709, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 721 + ], + "score": 1.0, + "content": "features of the semantic network themselves, which represent general appearance information that", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "should be more robust to this domain gap. To validate our hypothesis, we further explore the impact", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 41.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 430, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 432, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 432, + 96 + ], + "score": 1.0, + "content": "A PRE-TRAINING THE SEMANTIC SEGMENTATION NETWORK", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 105, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "The introduction of a semantic segmentation network to the depth estimation task increases the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 118, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 505, + 129 + ], + "score": 1.0, + "content": "depth estimation performance, however it also increases model complexity (e.g. number of trainable", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 506, + 140 + ], + "score": 1.0, + "content": "parameters). To investigate that the increased performance for the depth estimation task is indeed", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "score": 1.0, + "content": "due to the semantic features encoded in the secondary network, we perform an in-depth analysis", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 149, + 506, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 506, + 163 + ], + "score": 1.0, + "content": "(summarized in Table 3) where we explore the impact of pre-training the semantic segmentation", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 160, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 506, + 174 + ], + "score": 1.0, + "content": "network before it is used to guide the generation of depth features. From these results we can see", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 172, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 505, + 183 + ], + "score": 1.0, + "content": "that the presence of semantic information encoded in the secondary network indeed leads to an", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 183, + 504, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 504, + 195 + ], + "score": 1.0, + "content": "increase in performance, and that fine-tuning this secondary network for the speficic task of depth", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 194, + 280, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 280, + 206 + ], + "score": 1.0, + "content": "estimation actually decreases performance.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 105, + 506, + 206 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 210, + 505, + 309 + ], + "lines": [ + { + "bbox": [ + 106, + 211, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 211, + 505, + 222 + ], + "score": 1.0, + "content": "In the first two rows an untrained semantic network is utilized, with only its encoder initialized", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 221, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 505, + 234 + ], + "score": 1.0, + "content": "from ImageNet (Deng et al., 2009) weights. Two different scenarios are explored: in the first one", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 232, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 423, + 245 + ], + "score": 1.0, + "content": "(D) only the depth network is fine-tuned in a self-supervised fashion, while in", + "type": "text" + }, + { + "bbox": [ + 424, + 233, + 444, + 243 + ], + "score": 0.79, + "content": "\\mathbf { D + S }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 232, + 505, + 245 + ], + "score": 1.0, + "content": "both networks", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 244, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 256 + ], + "score": 1.0, + "content": "are fine-tuned together in the same way. As expected, using untrained features as guidance leads", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 255, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 505, + 267 + ], + "score": 1.0, + "content": "to significantly worse results, since there is no structure encoded in the secondary network and the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 265, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 506, + 278 + ], + "score": 1.0, + "content": "primary network needs to learn to filter out all this spurious information. When both networks are", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 275, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 505, + 290 + ], + "score": 1.0, + "content": "fine-tuned simultaneously, results improve because now the added complexity from the secondary", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 288, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 505, + 299 + ], + "score": 1.0, + "content": "network can be leveraged for the task of depth estimation, however there is still no improvement", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 299, + 178, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 178, + 310 + ], + "score": 1.0, + "content": "over the baseline.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 211, + 506, + 310 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 315, + 505, + 425 + ], + "lines": [ + { + "bbox": [ + 106, + 316, + 504, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 504, + 327 + ], + "score": 1.0, + "content": "Next, the semantic network was pre-trained on only half of the CityScapes (Cordts et al., 2016)", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 325, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 505, + 339 + ], + "score": 1.0, + "content": "dataset (samples chosen randomly), leading to a worse semantic segmentation performance (vali-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 336, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 201, + 350 + ], + "score": 1.0, + "content": "dation mIoU of around", + "type": "text" + }, + { + "bbox": [ + 202, + 337, + 222, + 348 + ], + "score": 0.89, + "content": "7 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 336, + 238, + 350 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 238, + 337, + 258, + 348 + ], + "score": 0.88, + "content": "\\dot { 7 } 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 336, + 505, + 350 + ], + "score": 1.0, + "content": "for the fully trained one). This partial pre-training stage was", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "score": 1.0, + "content": "enough to enable the transfer of useful information between networks, leading to improvements", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 359, + 504, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 359, + 504, + 371 + ], + "score": 1.0, + "content": "over the baseline. Interestingly, fine-tuning both networks for the task of depth estimation actually", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 371, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 505, + 382 + ], + "score": 1.0, + "content": "hurt performance this time, which we attribute to forgetting the information contained in the sec-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 381, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 393 + ], + "score": 1.0, + "content": "ondary network, as both networks are optimized for the depth task. When the semantic network is", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "score": 1.0, + "content": "pretrained with all of CityScapes (last two rows), these effects are magnified, with fine-tuning only", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 402, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 505, + 415 + ], + "score": 1.0, + "content": "the depth network leading to our best reported performance (Table 1) and fine-tuning both networks", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 414, + 294, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 294, + 426 + ], + "score": 1.0, + "content": "again leading to results similar to the baseline.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 316, + 505, + 426 + ] + }, + { + "type": "table", + "bbox": [ + 114, + 435, + 495, + 543 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 114, + 435, + 495, + 543 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 435, + 495, + 543 + ], + "spans": [ + { + "bbox": [ + 114, + 435, + 495, + 543 + ], + "score": 0.983, + "html": "
MethodPre-TrainFine-TuneLower is BetterHigher is Better
Abs RelSq RelRMSERMSElogδ <1.25 δ<1.252δ<1.253
BaselineD0.1080.7274.4260.1840.8850.9630.983
ProposedID+S0.1160.8474.7510.1920.8790.9600.981
ID0.1971.3236.1140.2650.7760.9180.966
CS (1/2)D+S0.1090.7374.3890.1850.8840.9620.982
CS (1/2)D0.1040.7164.3220.1800.8930.9640.984
CsD+S0.1070.7414.4070.1830.8830.9630.983
CsD0.1020.6984.3810.1780.8960.9640.984
", + "type": "table", + "image_path": "39674a6eb79324a71abaab952b2fa2a5c0e792c6121c26ae828662acaccea15b.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 114, + 435, + 495, + 471.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 114, + 471.0, + 495, + 507.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 114, + 507.0, + 495, + 543.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 552, + 505, + 618 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "Table 3: Analysis of the impact of pre-training the semantic segmentation network. On the Pre-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 563, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 167, + 575 + ], + "score": 1.0, + "content": "Train column,", + "type": "text" + }, + { + "bbox": [ + 167, + 564, + 173, + 573 + ], + "score": 0.4, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 563, + 505, + 575 + ], + "score": 1.0, + "content": "indicates ImageNet (Deng et al., 2009) pretraining and CS indicates CityScapes", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 574, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 257, + 586 + ], + "score": 1.0, + "content": "(Cordts et al., 2016) pretraining, with", + "type": "text" + }, + { + "bbox": [ + 257, + 574, + 271, + 584 + ], + "score": 0.33, + "content": "1 / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 574, + 505, + 586 + ], + "score": 1.0, + "content": "indicating the use of only half the dataset (samples chosen", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 584, + 504, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 255, + 597 + ], + "score": 1.0, + "content": "randomly). In the Fine-Tune column,", + "type": "text" + }, + { + "bbox": [ + 255, + 585, + 265, + 595 + ], + "score": 0.73, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 584, + 439, + 597 + ], + "score": 1.0, + "content": "indicates fine-tuning the depth network and", + "type": "text" + }, + { + "bbox": [ + 439, + 585, + 446, + 595 + ], + "score": 0.32, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 584, + 504, + 597 + ], + "score": 1.0, + "content": "indicates fine-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 594, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 104, + 594, + 506, + 609 + ], + "score": 1.0, + "content": "tuning the semantic network (note that this is a self-supervised fine-tuning for the depth task, using", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 607, + 263, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 263, + 618 + ], + "score": 1.0, + "content": "the objective described in Section 3.1).", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5 + } + ], + "index": 32.25 + }, + { + "type": "title", + "bbox": [ + 108, + 641, + 453, + 654 + ], + "lines": [ + { + "bbox": [ + 105, + 640, + 455, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 455, + 655 + ], + "score": 1.0, + "content": "B UNCERTAINTY AND GENERALIZATION TO DIFFERENT OBJECTS", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "In a self-supervised setting, increasing the number of unlabeled videos used for depth training is", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "expected to lead to an increasing specialization away from the domain in which the semantic net-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "work was pre-trained. This might result in harmful guidance if our method is not robust to this", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "gap. However, our approach does not use semantic predictions directly, but rather the decoded", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 709, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 721 + ], + "score": 1.0, + "content": "features of the semantic network themselves, which represent general appearance information that", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "should be more robust to this domain gap. To validate our hypothesis, we further explore the impact", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "of erroneous semantic information in the performance of our proposed semantically-guided depth", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "framework. In Figure 6 we present qualitative results highlighting situations in which our pretrained", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 118 + ], + "score": 1.0, + "content": "semantic network failed to generate correct semantic predictions for certain objects in the scene, and", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "yet our proposed framework was still able to properly recover depth values for that portion of the", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 444, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 444, + 140 + ], + "score": 1.0, + "content": "environment. These exemplify possible scenarios for erroneous semantic prediction.", + "type": "text", + "cross_page": true + } + ], + "index": 4 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 665, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "of erroneous semantic information in the performance of our proposed semantically-guided depth", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "framework. In Figure 6 we present qualitative results highlighting situations in which our pretrained", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 118 + ], + "score": 1.0, + "content": "semantic network failed to generate correct semantic predictions for certain objects in the scene, and", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "yet our proposed framework was still able to properly recover depth values for that portion of the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 444, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 444, + 140 + ], + "score": 1.0, + "content": "environment. These exemplify possible scenarios for erroneous semantic prediction.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 133, + 146, + 505, + 299 + ], + "lines": [ + { + "bbox": [ + 132, + 145, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 132, + 145, + 505, + 159 + ], + "score": 1.0, + "content": "• Imprecise boundaries: in the first row, we can see that the semantic segmentation network", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 158, + 505, + 169 + ], + "spans": [ + { + "bbox": [ + 141, + 158, + 505, + 169 + ], + "score": 1.0, + "content": "does not correctly detect the traffic sign, yet the semantically-guided depth network predicts", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 168, + 266, + 181 + ], + "spans": [ + { + "bbox": [ + 141, + 168, + 266, + 181 + ], + "score": 1.0, + "content": "its shape and depth accurately.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 133, + 182, + 504, + 195 + ], + "spans": [ + { + "bbox": [ + 133, + 182, + 504, + 195 + ], + "score": 1.0, + "content": "• Wrong classification: in the second row, the truck was mistakenly classified as partially", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 193, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 141, + 193, + 505, + 206 + ], + "score": 1.0, + "content": "“road” and “building”, however our semantically-guided depth network was still able to", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 205, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 141, + 205, + 505, + 217 + ], + "score": 1.0, + "content": "properly recover its overall shape with sharp delineation that was not available from its se-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 216, + 504, + 228 + ], + "spans": [ + { + "bbox": [ + 141, + 216, + 504, + 228 + ], + "score": 1.0, + "content": "mantic contour. A similar scenario happens in the same image, with “fence” being partially", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 227, + 226, + 239 + ], + "spans": [ + { + "bbox": [ + 141, + 227, + 226, + 239 + ], + "score": 1.0, + "content": "labeled as “bicycle”.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 132, + 240, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 132, + 240, + 505, + 254 + ], + "score": 1.0, + "content": "• Missing ontology: there is no “trash can” class on the CityScapes ontology, however in", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 251, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 141, + 251, + 505, + 264 + ], + "score": 1.0, + "content": "the third row our semantically-guided depth network was able to correctly reconstruct such", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 263, + 448, + 276 + ], + "spans": [ + { + "bbox": [ + 141, + 263, + 448, + 276 + ], + "score": 1.0, + "content": "object even though it was classified as “fence”, similarly to its surroundings.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 132, + 277, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 132, + 277, + 505, + 290 + ], + "score": 1.0, + "content": "• Object Hallucination: in the fourth row, the contour of a “person” was erroneously intro-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 288, + 471, + 301 + ], + "spans": [ + { + "bbox": [ + 141, + 288, + 471, + 301 + ], + "score": 1.0, + "content": "duced in the image and correctly removed by our semantically-guided framework.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 108, + 308, + 505, + 352 + ], + "lines": [ + { + "bbox": [ + 106, + 307, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 505, + 320 + ], + "score": 1.0, + "content": "These examples are evidence that our proposed framework is able to reason over the uncertainty", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 319, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 505, + 331 + ], + "score": 1.0, + "content": "inherent to semantic classification, leveraging this information when accurate to achieve the results", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 330, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 505, + 343 + ], + "score": 1.0, + "content": "reported in this paper, but also discarding it if necessary to generate a better reconstruction according", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 341, + 266, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 266, + 353 + ], + "score": 1.0, + "content": "to the self-supervised photometric loss.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5 + }, + { + "type": "image", + "bbox": [ + 109, + 372, + 502, + 554 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 372, + 502, + 554 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 372, + 502, + 554 + ], + "spans": [ + { + "bbox": [ + 109, + 372, + 502, + 554 + ], + "score": 0.976, + "type": "image", + "image_path": "1571107d15766292cb50733ff1a095273dd604cd102c3c0235ac0a84b6b5dd4e.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 109, + 372, + 502, + 432.6666666666667 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 109, + 432.6666666666667, + 502, + 493.33333333333337 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 109, + 493.33333333333337, + 502, + 554.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 561, + 503, + 585 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 560, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 574 + ], + "score": 1.0, + "content": "Figure 6: Examples of erroneous semantic predictions that still led to accurate depth predictions", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 573, + 342, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 342, + 585 + ], + "score": 1.0, + "content": "using our proposed semantically-guided depth framework.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + } + ], + "index": 24.25 + }, + { + "type": "title", + "bbox": [ + 107, + 597, + 354, + 610 + ], + "lines": [ + { + "bbox": [ + 105, + 595, + 356, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 356, + 612 + ], + "score": 1.0, + "content": "C GENERALIZATION TO DIFFERENT DATASETS", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 622, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "score": 1.0, + "content": "In the previous sections, we show that our proposed framework is robust to a degraded semantic", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "network, both by pretraining the semantic network with fewer annotated labels (Appendix A) and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "score": 1.0, + "content": "also by providing evidence that the depth network is able to reason over erroneous predictions to", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "still generate accurate reconstructions (Appendix B). We now go one step further and analyze how", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 665, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 680 + ], + "score": 1.0, + "content": "our proposed semantically-guided framework generalizes to a dataset that was used neither during", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "pre-training nor for fine-tuning. To this end, we evaluate our KITTI depth model on the recently", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "released NuScenes dataset (Caesar et al., 2019). The official NuScenes validation split is used,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "containing 6019 images from the front camera with ground-truth depth maps generated by LiDAR", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 104, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "reprojection. Results presented in Table 4 provide additional evidence that our method indeed re-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "sults in generalization improvements, even on significantly different data from different platforms", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 32.5 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 301, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 312, + 763 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 763 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 13, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 505, + 138 + ], + "lines": [], + "index": 2, + "bbox_fs": [ + 105, + 82, + 505, + 140 + ], + "lines_deleted": true + }, + { + "type": "list", + "bbox": [ + 133, + 146, + 505, + 299 + ], + "lines": [ + { + "bbox": [ + 132, + 145, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 132, + 145, + 505, + 159 + ], + "score": 1.0, + "content": "• Imprecise boundaries: in the first row, we can see that the semantic segmentation network", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 158, + 505, + 169 + ], + "spans": [ + { + "bbox": [ + 141, + 158, + 505, + 169 + ], + "score": 1.0, + "content": "does not correctly detect the traffic sign, yet the semantically-guided depth network predicts", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 168, + 266, + 181 + ], + "spans": [ + { + "bbox": [ + 141, + 168, + 266, + 181 + ], + "score": 1.0, + "content": "its shape and depth accurately.", + "type": "text" + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 133, + 182, + 504, + 195 + ], + "spans": [ + { + "bbox": [ + 133, + 182, + 504, + 195 + ], + "score": 1.0, + "content": "• Wrong classification: in the second row, the truck was mistakenly classified as partially", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 193, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 141, + 193, + 505, + 206 + ], + "score": 1.0, + "content": "“road” and “building”, however our semantically-guided depth network was still able to", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 205, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 141, + 205, + 505, + 217 + ], + "score": 1.0, + "content": "properly recover its overall shape with sharp delineation that was not available from its se-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 216, + 504, + 228 + ], + "spans": [ + { + "bbox": [ + 141, + 216, + 504, + 228 + ], + "score": 1.0, + "content": "mantic contour. A similar scenario happens in the same image, with “fence” being partially", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 227, + 226, + 239 + ], + "spans": [ + { + "bbox": [ + 141, + 227, + 226, + 239 + ], + "score": 1.0, + "content": "labeled as “bicycle”.", + "type": "text" + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 240, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 132, + 240, + 505, + 254 + ], + "score": 1.0, + "content": "• Missing ontology: there is no “trash can” class on the CityScapes ontology, however in", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 251, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 141, + 251, + 505, + 264 + ], + "score": 1.0, + "content": "the third row our semantically-guided depth network was able to correctly reconstruct such", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 263, + 448, + 276 + ], + "spans": [ + { + "bbox": [ + 141, + 263, + 448, + 276 + ], + "score": 1.0, + "content": "object even though it was classified as “fence”, similarly to its surroundings.", + "type": "text" + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 277, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 132, + 277, + 505, + 290 + ], + "score": 1.0, + "content": "• Object Hallucination: in the fourth row, the contour of a “person” was erroneously intro-", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 288, + 471, + 301 + ], + "spans": [ + { + "bbox": [ + 141, + 288, + 471, + 301 + ], + "score": 1.0, + "content": "duced in the image and correctly removed by our semantically-guided framework.", + "type": "text" + } + ], + "index": 17, + "is_list_end_line": true + } + ], + "index": 11, + "bbox_fs": [ + 132, + 145, + 505, + 301 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 308, + 505, + 352 + ], + "lines": [ + { + "bbox": [ + 106, + 307, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 505, + 320 + ], + "score": 1.0, + "content": "These examples are evidence that our proposed framework is able to reason over the uncertainty", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 319, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 505, + 331 + ], + "score": 1.0, + "content": "inherent to semantic classification, leveraging this information when accurate to achieve the results", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 330, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 505, + 343 + ], + "score": 1.0, + "content": "reported in this paper, but also discarding it if necessary to generate a better reconstruction according", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 341, + 266, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 266, + 353 + ], + "score": 1.0, + "content": "to the self-supervised photometric loss.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5, + "bbox_fs": [ + 106, + 307, + 505, + 353 + ] + }, + { + "type": "image", + "bbox": [ + 109, + 372, + 502, + 554 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 372, + 502, + 554 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 372, + 502, + 554 + ], + "spans": [ + { + "bbox": [ + 109, + 372, + 502, + 554 + ], + "score": 0.976, + "type": "image", + "image_path": "1571107d15766292cb50733ff1a095273dd604cd102c3c0235ac0a84b6b5dd4e.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 109, + 372, + 502, + 432.6666666666667 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 109, + 432.6666666666667, + 502, + 493.33333333333337 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 109, + 493.33333333333337, + 502, + 554.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 561, + 503, + 585 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 560, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 574 + ], + "score": 1.0, + "content": "Figure 6: Examples of erroneous semantic predictions that still led to accurate depth predictions", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 573, + 342, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 342, + 585 + ], + "score": 1.0, + "content": "using our proposed semantically-guided depth framework.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + } + ], + "index": 24.25 + }, + { + "type": "title", + "bbox": [ + 107, + 597, + 354, + 610 + ], + "lines": [ + { + "bbox": [ + 105, + 595, + 356, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 356, + 612 + ], + "score": 1.0, + "content": "C GENERALIZATION TO DIFFERENT DATASETS", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 622, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "score": 1.0, + "content": "In the previous sections, we show that our proposed framework is robust to a degraded semantic", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "network, both by pretraining the semantic network with fewer annotated labels (Appendix A) and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "score": 1.0, + "content": "also by providing evidence that the depth network is able to reason over erroneous predictions to", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "still generate accurate reconstructions (Appendix B). We now go one step further and analyze how", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 665, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 680 + ], + "score": 1.0, + "content": "our proposed semantically-guided framework generalizes to a dataset that was used neither during", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "pre-training nor for fine-tuning. To this end, we evaluate our KITTI depth model on the recently", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "released NuScenes dataset (Caesar et al., 2019). The official NuScenes validation split is used,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "containing 6019 images from the front camera with ground-truth depth maps generated by LiDAR", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 104, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "reprojection. Results presented in Table 4 provide additional evidence that our method indeed re-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "sults in generalization improvements, even on significantly different data from different platforms", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 32.5, + "bbox_fs": [ + 104, + 621, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 120, + 115, + 487, + 179 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 104, + 82, + 505, + 106 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "and environments (Karlsruhe, Germany for KITTI vs Boston, USA and Singapore for NuScenes),", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 438, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 438, + 106 + ], + "score": 1.0, + "content": "outperforming the state of the art methods and our baseline (Guizilini et al., 2019).", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 120, + 115, + 487, + 179 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 115, + 487, + 179 + ], + "spans": [ + { + "bbox": [ + 120, + 115, + 487, + 179 + ], + "score": 0.977, + "html": "
MethodAbs RelSq RelRMSERMSElogδ<1.25δ<1.25²δ<1.253
Godard et al. (2018) (R18)0.2121.9187.9580.3230.6740.8980.954
Godard et al. (2018) (R50)0.2102.0178.1110.3280.6970.9030.960
Guizilini et al. (2019) (MR)0.1871.8527.6360.2890.7420.9170.961
Ours (MR)0.1811.5057.2370.2710.7650.9310.969
", + "type": "table", + "image_path": "bec1078c5287f03bdd3c650a6e65b61fa474c55eb675fac2632764ab582173d1.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 120, + 115, + 487, + 136.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 120, + 136.33333333333334, + 487, + 157.66666666666669 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 120, + 157.66666666666669, + 487, + 179.00000000000003 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 108, + 187, + 505, + 231 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 185, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 505, + 199 + ], + "score": 1.0, + "content": "Table 4: Generalization capability of different networks, trained on both KITTI and CityScapes", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 198, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 505, + 209 + ], + "score": 1.0, + "content": "datasets and evaluated on the NuScenes (Caesar et al., 2019) dataset. Our proposed semantically-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 209, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 221 + ], + "score": 1.0, + "content": "guided architecture is able to further improve upon the baseline from Guizilini et al. (2019), which", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 219, + 396, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 396, + 233 + ], + "score": 1.0, + "content": "only used unlabeled image sequences for self-supervised depth training.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5 + } + ], + "index": 3 + } + ], + "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 2020", + "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": "table", + "bbox": [ + 120, + 115, + 487, + 179 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 104, + 82, + 505, + 106 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "and environments (Karlsruhe, Germany for KITTI vs Boston, USA and Singapore for NuScenes),", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 438, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 438, + 106 + ], + "score": 1.0, + "content": "outperforming the state of the art methods and our baseline (Guizilini et al., 2019).", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 120, + 115, + 487, + 179 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 115, + 487, + 179 + ], + "spans": [ + { + "bbox": [ + 120, + 115, + 487, + 179 + ], + "score": 0.977, + "html": "
MethodAbs RelSq RelRMSERMSElogδ<1.25δ<1.25²δ<1.253
Godard et al. (2018) (R18)0.2121.9187.9580.3230.6740.8980.954
Godard et al. (2018) (R50)0.2102.0178.1110.3280.6970.9030.960
Guizilini et al. (2019) (MR)0.1871.8527.6360.2890.7420.9170.961
Ours (MR)0.1811.5057.2370.2710.7650.9310.969
", + "type": "table", + "image_path": "bec1078c5287f03bdd3c650a6e65b61fa474c55eb675fac2632764ab582173d1.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 120, + 115, + 487, + 136.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 120, + 136.33333333333334, + 487, + 157.66666666666669 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 120, + 157.66666666666669, + 487, + 179.00000000000003 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 108, + 187, + 505, + 231 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 185, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 505, + 199 + ], + "score": 1.0, + "content": "Table 4: Generalization capability of different networks, trained on both KITTI and CityScapes", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 198, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 505, + 209 + ], + "score": 1.0, + "content": "datasets and evaluated on the NuScenes (Caesar et al., 2019) dataset. Our proposed semantically-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 209, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 221 + ], + "score": 1.0, + "content": "guided architecture is able to further improve upon the baseline from Guizilini et al. (2019), which", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 219, + 396, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 396, + 233 + ], + "score": 1.0, + "content": "only used unlabeled image sequences for self-supervised depth training.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5 + } + ], + "index": 3 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/ByxT7TNFvH/ByxT7TNFvH_model.json b/parse/train/ByxT7TNFvH/ByxT7TNFvH_model.json new file mode 100644 index 0000000000000000000000000000000000000000..058beeeb70e2d5561a3331efc9dcb5b06d646786 --- /dev/null +++ b/parse/train/ByxT7TNFvH/ByxT7TNFvH_model.json @@ -0,0 +1,14307 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 604, + 1302, + 604, + 1302, + 1000, + 398, + 1000 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1357, + 1403, + 1357, + 1403, + 1633, + 297, + 1633 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1096, + 1404, + 1096, + 1404, + 1341, + 298, + 1341 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1648, + 1404, + 1648, + 1404, + 1984, + 298, + 1984 + ], + "score": 0.976 + }, + { + "category_id": 0, + "poly": [ + 302, + 219, + 1397, + 219, + 1397, + 324, + 302, + 324 + ], + "score": 0.962 + }, + { + "category_id": 2, + "poly": [ + 339, + 2005, + 1281, + 2005, + 1281, + 2034, + 339, + 2034 + ], + "score": 0.9 + }, + { + "category_id": 1, + "poly": [ + 442, + 419, + 804, + 419, + 804, + 481, + 442, + 481 + ], + "score": 0.899 + }, + { + "category_id": 0, + "poly": [ + 302, + 1028, + 573, + 1028, + 573, + 1063, + 302, + 1063 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 817, + 75, + 817, + 104, + 299, + 104 + ], + "score": 0.883 + }, + { + "category_id": 1, + "poly": [ + 940, + 419, + 1212, + 419, + 1212, + 480, + 940, + 480 + ], + "score": 0.881 + }, + { + "category_id": 0, + "poly": [ + 772, + 538, + 927, + 538, + 927, + 571, + 772, + 571 + ], + "score": 0.852 + }, + { + "category_id": 1, + "poly": [ + 412, + 372, + 1292, + 372, + 1292, + 410, + 412, + 410 + ], + "score": 0.815 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 857, + 2089, + 857, + 2112, + 841, + 2112 + ], + "score": 0.692 + }, + { + "category_id": 15, + "poly": [ + 294.0, + 218.0, + 1402.0, + 218.0, + 1402.0, + 272.0, + 294.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 275.0, + 1309.0, + 275.0, + 1309.0, + 328.0, + 296.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 2000.0, + 1284.0, + 2000.0, + 1284.0, + 2038.0, + 343.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1025.0, + 579.0, + 1025.0, + 579.0, + 1072.0, + 294.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 537.0, + 932.0, + 537.0, + 932.0, + 574.0, + 769.0, + 574.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": [ + 394.0, + 605.0, + 1303.0, + 605.0, + 1303.0, + 640.0, + 394.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 636.0, + 1305.0, + 636.0, + 1305.0, + 671.0, + 393.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 667.0, + 1305.0, + 667.0, + 1305.0, + 702.0, + 394.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 697.0, + 1304.0, + 697.0, + 1304.0, + 732.0, + 394.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 726.0, + 1305.0, + 726.0, + 1305.0, + 763.0, + 393.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 754.0, + 1306.0, + 754.0, + 1306.0, + 794.0, + 392.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 790.0, + 1305.0, + 790.0, + 1305.0, + 822.0, + 394.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 818.0, + 1306.0, + 818.0, + 1306.0, + 853.0, + 394.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 848.0, + 1306.0, + 848.0, + 1306.0, + 884.0, + 394.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 882.0, + 1304.0, + 882.0, + 1304.0, + 912.0, + 394.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 909.0, + 1307.0, + 909.0, + 1307.0, + 945.0, + 393.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 938.0, + 1305.0, + 938.0, + 1305.0, + 974.0, + 394.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 971.0, + 812.0, + 971.0, + 812.0, + 1003.0, + 393.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1355.0, + 1405.0, + 1355.0, + 1405.0, + 1393.0, + 294.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1385.0, + 1405.0, + 1385.0, + 1405.0, + 1423.0, + 292.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1418.0, + 1405.0, + 1418.0, + 1405.0, + 1455.0, + 293.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1445.0, + 1406.0, + 1445.0, + 1406.0, + 1486.0, + 291.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1478.0, + 1403.0, + 1478.0, + 1403.0, + 1516.0, + 294.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1508.0, + 1403.0, + 1508.0, + 1403.0, + 1546.0, + 294.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1538.0, + 1405.0, + 1538.0, + 1405.0, + 1577.0, + 292.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1569.0, + 1405.0, + 1569.0, + 1405.0, + 1605.0, + 292.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1599.0, + 1203.0, + 1599.0, + 1203.0, + 1637.0, + 292.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1096.0, + 1402.0, + 1096.0, + 1402.0, + 1130.0, + 296.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1127.0, + 1405.0, + 1127.0, + 1405.0, + 1160.0, + 293.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1159.0, + 1404.0, + 1159.0, + 1404.0, + 1192.0, + 293.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1187.0, + 1402.0, + 1187.0, + 1402.0, + 1221.0, + 294.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1218.0, + 1402.0, + 1218.0, + 1402.0, + 1252.0, + 294.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1245.0, + 1406.0, + 1245.0, + 1406.0, + 1286.0, + 293.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1277.0, + 1406.0, + 1277.0, + 1406.0, + 1313.0, + 293.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1310.0, + 1070.0, + 1310.0, + 1070.0, + 1343.0, + 293.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1649.0, + 1404.0, + 1649.0, + 1404.0, + 1683.0, + 294.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1680.0, + 1405.0, + 1680.0, + 1405.0, + 1712.0, + 293.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1708.0, + 1405.0, + 1708.0, + 1405.0, + 1743.0, + 292.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1739.0, + 1405.0, + 1739.0, + 1405.0, + 1776.0, + 292.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1768.0, + 1408.0, + 1768.0, + 1408.0, + 1806.0, + 293.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1800.0, + 1406.0, + 1800.0, + 1406.0, + 1837.0, + 292.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1833.0, + 1402.0, + 1833.0, + 1402.0, + 1864.0, + 296.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1862.0, + 1401.0, + 1862.0, + 1401.0, + 1897.0, + 296.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1890.0, + 1402.0, + 1890.0, + 1402.0, + 1925.0, + 293.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1923.0, + 1404.0, + 1923.0, + 1404.0, + 1957.0, + 294.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1955.0, + 1159.0, + 1955.0, + 1159.0, + 1987.0, + 293.0, + 1987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 416.0, + 808.0, + 416.0, + 808.0, + 453.0, + 436.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 450.0, + 802.0, + 450.0, + 802.0, + 485.0, + 456.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 936.0, + 413.0, + 1218.0, + 413.0, + 1218.0, + 457.0, + 936.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 452.0, + 1205.0, + 452.0, + 1205.0, + 483.0, + 958.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 366.0, + 1300.0, + 366.0, + 1300.0, + 420.0, + 402.0, + 420.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 749, + 1405, + 749, + 1405, + 1301, + 298, + 1301 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1820, + 1403, + 1820, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1316, + 1404, + 1316, + 1404, + 1804, + 298, + 1804 + ], + "score": 0.977 + }, + { + "category_id": 3, + "poly": [ + 303, + 222, + 1395, + 222, + 1395, + 526, + 303, + 526 + ], + "score": 0.973 + }, + { + "category_id": 4, + "poly": [ + 297, + 551, + 1397, + 551, + 1397, + 614, + 297, + 614 + ], + "score": 0.948 + }, + { + "category_id": 0, + "poly": [ + 301, + 677, + 587, + 677, + 587, + 712, + 301, + 712 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 816, + 76, + 816, + 104, + 299, + 104 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.711 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.123 + }, + { + "category_id": 15, + "poly": [ + 1364.0, + 325.0, + 1378.0, + 325.0, + 1378.0, + 353.0, + 1364.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 551.0, + 1402.0, + 551.0, + 1402.0, + 586.0, + 296.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 581.0, + 1364.0, + 581.0, + 1364.0, + 617.0, + 296.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 674.0, + 593.0, + 674.0, + 593.0, + 718.0, + 292.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 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": [ + 295.0, + 750.0, + 1405.0, + 750.0, + 1405.0, + 786.0, + 295.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 782.0, + 1405.0, + 782.0, + 1405.0, + 815.0, + 293.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 811.0, + 1403.0, + 811.0, + 1403.0, + 847.0, + 295.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 842.0, + 1403.0, + 842.0, + 1403.0, + 877.0, + 295.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 872.0, + 1403.0, + 872.0, + 1403.0, + 908.0, + 293.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 903.0, + 1406.0, + 903.0, + 1406.0, + 938.0, + 295.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 931.0, + 1405.0, + 931.0, + 1405.0, + 969.0, + 295.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 964.0, + 1405.0, + 964.0, + 1405.0, + 1000.0, + 295.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 994.0, + 1405.0, + 994.0, + 1405.0, + 1030.0, + 295.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1025.0, + 1405.0, + 1025.0, + 1405.0, + 1061.0, + 295.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1052.0, + 1406.0, + 1052.0, + 1406.0, + 1094.0, + 292.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1085.0, + 1403.0, + 1085.0, + 1403.0, + 1121.0, + 295.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1117.0, + 1405.0, + 1117.0, + 1405.0, + 1152.0, + 295.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1147.0, + 1403.0, + 1147.0, + 1403.0, + 1179.0, + 293.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1178.0, + 1405.0, + 1178.0, + 1405.0, + 1212.0, + 293.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1203.0, + 1406.0, + 1203.0, + 1406.0, + 1244.0, + 293.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1238.0, + 1407.0, + 1238.0, + 1407.0, + 1272.0, + 293.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1268.0, + 1287.0, + 1268.0, + 1287.0, + 1304.0, + 295.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1818.0, + 1403.0, + 1818.0, + 1403.0, + 1855.0, + 294.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1850.0, + 1404.0, + 1850.0, + 1404.0, + 1888.0, + 293.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1879.0, + 1404.0, + 1879.0, + 1404.0, + 1917.0, + 293.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1910.0, + 1405.0, + 1910.0, + 1405.0, + 1947.0, + 292.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1976.0, + 296.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1407.0, + 1972.0, + 1407.0, + 2004.0, + 294.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1998.0, + 1276.0, + 1998.0, + 1276.0, + 2039.0, + 295.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1313.0, + 1405.0, + 1313.0, + 1405.0, + 1352.0, + 295.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1346.0, + 1403.0, + 1346.0, + 1403.0, + 1381.0, + 293.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1377.0, + 1405.0, + 1377.0, + 1405.0, + 1412.0, + 294.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1408.0, + 1405.0, + 1408.0, + 1405.0, + 1442.0, + 294.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1437.0, + 1406.0, + 1437.0, + 1406.0, + 1472.0, + 294.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1471.0, + 1402.0, + 1471.0, + 1402.0, + 1501.0, + 296.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1497.0, + 1404.0, + 1497.0, + 1404.0, + 1534.0, + 296.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1528.0, + 1404.0, + 1528.0, + 1404.0, + 1564.0, + 293.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1560.0, + 1406.0, + 1560.0, + 1406.0, + 1595.0, + 292.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1589.0, + 1404.0, + 1589.0, + 1404.0, + 1624.0, + 294.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1620.0, + 1404.0, + 1620.0, + 1404.0, + 1654.0, + 294.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1651.0, + 1405.0, + 1651.0, + 1405.0, + 1685.0, + 293.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1681.0, + 1406.0, + 1681.0, + 1406.0, + 1714.0, + 294.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1711.0, + 1404.0, + 1711.0, + 1404.0, + 1747.0, + 295.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1743.0, + 1404.0, + 1743.0, + 1404.0, + 1776.0, + 293.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1773.0, + 533.0, + 1773.0, + 533.0, + 1807.0, + 294.0, + 1807.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1691, + 1405, + 1691, + 1405, + 2035, + 297, + 2035 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1366, + 1406, + 1366, + 1406, + 1584, + 297, + 1584 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 292, + 1405, + 292, + 1405, + 515, + 297, + 515 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 296, + 605, + 1404, + 605, + 1404, + 771, + 296, + 771 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1036, + 1405, + 1036, + 1405, + 1129, + 298, + 1129 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 824, + 1404, + 824, + 1404, + 955, + 297, + 955 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1183, + 1403, + 1183, + 1403, + 1276, + 299, + 1276 + ], + "score": 0.974 + }, + { + "category_id": 8, + "poly": [ + 546, + 963, + 1155, + 963, + 1155, + 1031, + 546, + 1031 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 613, + 1135, + 1089, + 1135, + 1089, + 1177, + 613, + 1177 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 648, + 779, + 1051, + 779, + 1051, + 820, + 648, + 820 + ], + "score": 0.939 + }, + { + "category_id": 0, + "poly": [ + 294, + 1624, + 1311, + 1624, + 1311, + 1662, + 294, + 1662 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 302, + 1310, + 721, + 1310, + 721, + 1342, + 302, + 1342 + ], + "score": 0.914 + }, + { + "category_id": 0, + "poly": [ + 297, + 548, + 857, + 548, + 857, + 581, + 297, + 581 + ], + "score": 0.907 + }, + { + "category_id": 0, + "poly": [ + 298, + 225, + 1028, + 225, + 1028, + 263, + 298, + 263 + ], + "score": 0.906 + }, + { + "category_id": 9, + "poly": [ + 1366, + 987, + 1400, + 987, + 1400, + 1017, + 1366, + 1017 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 817, + 75, + 817, + 105, + 299, + 105 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1144, + 1399, + 1144, + 1399, + 1173, + 1366, + 1173 + ], + "score": 0.885 + }, + { + "category_id": 9, + "poly": [ + 1366, + 785, + 1399, + 785, + 1399, + 815, + 1366, + 815 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.637 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.406 + }, + { + "category_id": 13, + "poly": [ + 597, + 386, + 767, + 386, + 767, + 423, + 597, + 423 + ], + "score": 0.93, + "latex": "\\hat { D } = f _ { D } ( I ( p ) )" + }, + { + "category_id": 13, + "poly": [ + 531, + 1785, + 705, + 1785, + 705, + 1823, + 531, + 1823 + ], + "score": 0.93, + "latex": "\\hat { D } = f _ { D } ( I ( p ) )" + }, + { + "category_id": 14, + "poly": [ + 546, + 960, + 1154, + 960, + 1154, + 1033, + 546, + 1033 + ], + "score": 0.93, + "latex": "\\mathcal { L } _ { p } ( I _ { t } , \\hat { I } _ { t } ) = \\alpha \\frac { 1 - \\mathrm { S S I M } ( I _ { t } , \\hat { I } _ { t } ) } { 2 } + ( 1 - \\alpha ) \\parallel I _ { t } - \\hat { I } _ { t } \\parallel" + }, + { + "category_id": 14, + "poly": [ + 647, + 777, + 1053, + 777, + 1053, + 819, + 647, + 819 + ], + "score": 0.93, + "latex": "\\mathcal { L } ( I _ { t } , \\hat { I } _ { t } ) = \\mathcal { L } _ { p } ( I _ { t } , \\hat { I } _ { t } ) + \\lambda _ { 1 } \\mathcal { L } _ { s } ( \\hat { D } _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 1195, + 356, + 1344, + 356, + 1344, + 388, + 1195, + 388 + ], + "score": 0.92, + "latex": "f _ { D } : I D" + }, + { + "category_id": 14, + "poly": [ + 608, + 1134, + 1091, + 1134, + 1091, + 1178, + 608, + 1178 + ], + "score": 0.92, + "latex": "\\mathcal { L } _ { s } ( \\hat { D } _ { t } ) = | \\delta _ { x } \\hat { D } _ { t } | e ^ { - | \\delta _ { x } I _ { t } | } + | \\delta _ { y } \\hat { D } _ { t } | e ^ { - | \\delta _ { y } I _ { t } | }" + }, + { + "category_id": 13, + "poly": [ + 872, + 483, + 926, + 483, + 926, + 514, + 872, + 514 + ], + "score": 0.91, + "latex": "I _ { t - 1 }" + }, + { + "category_id": 13, + "poly": [ + 382, + 484, + 471, + 484, + 471, + 512, + 382, + 512 + ], + "score": 0.91, + "latex": "I _ { s } \\in I _ { S }" + }, + { + "category_id": 13, + "poly": [ + 976, + 484, + 1030, + 484, + 1030, + 514, + 976, + 514 + ], + "score": 0.91, + "latex": "I _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 1235, + 704, + 1271, + 704, + 1271, + 740, + 1235, + 740 + ], + "score": 0.9, + "latex": "\\hat { D } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 960, + 826, + 994, + 826, + 994, + 859, + 960, + 859 + ], + "score": 0.9, + "latex": "{ \\mathcal { L } } _ { p }" + }, + { + "category_id": 13, + "poly": [ + 1329, + 421, + 1401, + 421, + 1401, + 450, + 1329, + 450 + ], + "score": 0.9, + "latex": "s \\in S" + }, + { + "category_id": 13, + "poly": [ + 545, + 422, + 794, + 422, + 794, + 453, + 545, + 453 + ], + "score": 0.89, + "latex": "f _ { \\mathbf { x } } : ( I _ { t } , I _ { S } ) \\to \\mathbf { x } _ { t \\to S }" + }, + { + "category_id": 13, + "poly": [ + 400, + 672, + 435, + 672, + 435, + 707, + 400, + 707 + ], + "score": 0.89, + "latex": "{ \\mathcal { L } } _ { p }" + }, + { + "category_id": 13, + "poly": [ + 899, + 667, + 924, + 667, + 924, + 703, + 899, + 703 + ], + "score": 0.89, + "latex": "\\bar { \\hat { I } } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1245, + 826, + 1277, + 826, + 1277, + 855, + 1245, + 855 + ], + "score": 0.88, + "latex": "\\mathcal { L } _ { s }" + }, + { + "category_id": 13, + "poly": [ + 1326, + 857, + 1352, + 857, + 1352, + 892, + 1326, + 892 + ], + "score": 0.88, + "latex": "\\hat { I } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 522, + 709, + 556, + 709, + 556, + 740, + 522, + 740 + ], + "score": 0.88, + "latex": "\\mathcal { L } _ { s }" + }, + { + "category_id": 13, + "poly": [ + 401, + 451, + 673, + 451, + 673, + 486, + 401, + 486 + ], + "score": 0.88, + "latex": "\\mathbf { x } _ { t s } = ( \\mathbf { \\Sigma } _ { \\mathbf { 0 } } ^ { \\mathbf { R } \\textbf { t } } ) \\in \\mathbf { S } \\mathbf { E } ( 3 )" + }, + { + "category_id": 13, + "poly": [ + 371, + 826, + 402, + 826, + 402, + 855, + 371, + 855 + ], + "score": 0.87, + "latex": "\\lambda _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1071, + 672, + 1097, + 672, + 1097, + 703, + 1071, + 703 + ], + "score": 0.87, + "latex": "I _ { t }" + }, + { + "category_id": 13, + "poly": [ + 965, + 1096, + 998, + 1096, + 998, + 1126, + 965, + 1126 + ], + "score": 0.86, + "latex": "0 ^ { \\mathrm { { i } \\mathrm { { \\bar { h } } } } }" + }, + { + "category_id": 13, + "poly": [ + 964, + 453, + 989, + 453, + 989, + 482, + 964, + 482 + ], + "score": 0.86, + "latex": "I _ { t }" + }, + { + "category_id": 13, + "poly": [ + 390, + 895, + 415, + 895, + 415, + 923, + 390, + 923 + ], + "score": 0.85, + "latex": "I _ { t }" + }, + { + "category_id": 13, + "poly": [ + 942, + 395, + 961, + 395, + 961, + 422, + 942, + 422 + ], + "score": 0.79, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 1181, + 392, + 1199, + 392, + 1199, + 419, + 1181, + 419 + ], + "score": 0.71, + "latex": "I" + }, + { + "category_id": 13, + "poly": [ + 992, + 421, + 1068, + 421, + 1068, + 449, + 992, + 449 + ], + "score": 0.26, + "latex": "6 \\mathrm { D o F }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1624.0, + 1316.0, + 1624.0, + 1316.0, + 1665.0, + 293.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1310.0, + 726.0, + 1310.0, + 726.0, + 1346.0, + 296.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 547.0, + 858.0, + 547.0, + 858.0, + 584.0, + 294.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 222.0, + 1032.0, + 222.0, + 1032.0, + 267.0, + 292.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 860.0, + 2085.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1693.0, + 1403.0, + 1693.0, + 1403.0, + 1728.0, + 295.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1726.0, + 1402.0, + 1726.0, + 1402.0, + 1757.0, + 295.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1753.0, + 1405.0, + 1753.0, + 1405.0, + 1791.0, + 292.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1786.0, + 530.0, + 1786.0, + 530.0, + 1826.0, + 292.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 1786.0, + 1403.0, + 1786.0, + 1403.0, + 1826.0, + 706.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1820.0, + 1405.0, + 1820.0, + 1405.0, + 1855.0, + 295.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1850.0, + 1405.0, + 1850.0, + 1405.0, + 1886.0, + 295.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1881.0, + 1401.0, + 1881.0, + 1401.0, + 1915.0, + 294.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1910.0, + 1403.0, + 1910.0, + 1403.0, + 1946.0, + 294.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1978.0, + 295.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1973.0, + 1405.0, + 1973.0, + 1405.0, + 2008.0, + 295.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 1347.0, + 2000.0, + 1347.0, + 2040.0, + 294.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1369.0, + 1402.0, + 1369.0, + 1402.0, + 1400.0, + 297.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1399.0, + 1404.0, + 1399.0, + 1404.0, + 1434.0, + 294.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1429.0, + 1404.0, + 1429.0, + 1404.0, + 1464.0, + 294.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1459.0, + 1406.0, + 1459.0, + 1406.0, + 1496.0, + 292.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1490.0, + 1404.0, + 1490.0, + 1404.0, + 1525.0, + 294.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1521.0, + 1406.0, + 1521.0, + 1406.0, + 1556.0, + 295.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1553.0, + 1286.0, + 1553.0, + 1286.0, + 1584.0, + 296.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 294.0, + 1403.0, + 294.0, + 1403.0, + 329.0, + 296.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 325.0, + 1405.0, + 325.0, + 1405.0, + 361.0, + 292.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 356.0, + 1194.0, + 356.0, + 1194.0, + 391.0, + 294.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 356.0, + 1405.0, + 356.0, + 1405.0, + 391.0, + 1345.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 391.0, + 596.0, + 391.0, + 596.0, + 426.0, + 295.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 391.0, + 941.0, + 391.0, + 941.0, + 426.0, + 768.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 391.0, + 1180.0, + 391.0, + 1180.0, + 426.0, + 962.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 391.0, + 1405.0, + 391.0, + 1405.0, + 426.0, + 1200.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 419.0, + 544.0, + 419.0, + 544.0, + 458.0, + 292.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 419.0, + 991.0, + 419.0, + 991.0, + 458.0, + 795.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 419.0, + 1328.0, + 419.0, + 1328.0, + 458.0, + 1069.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 419.0, + 1406.0, + 419.0, + 1406.0, + 458.0, + 1402.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 443.0, + 400.0, + 443.0, + 400.0, + 498.0, + 290.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 443.0, + 963.0, + 443.0, + 963.0, + 498.0, + 674.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 443.0, + 1411.0, + 443.0, + 1411.0, + 498.0, + 990.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 483.0, + 381.0, + 483.0, + 381.0, + 518.0, + 295.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 483.0, + 871.0, + 483.0, + 871.0, + 518.0, + 472.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 483.0, + 975.0, + 483.0, + 975.0, + 518.0, + 927.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 483.0, + 1234.0, + 483.0, + 1234.0, + 518.0, + 1031.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 606.0, + 1402.0, + 606.0, + 1402.0, + 639.0, + 296.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 637.0, + 1404.0, + 637.0, + 1404.0, + 670.0, + 294.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 671.0, + 399.0, + 671.0, + 399.0, + 706.0, + 291.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 671.0, + 898.0, + 671.0, + 898.0, + 706.0, + 436.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 671.0, + 1070.0, + 671.0, + 1070.0, + 706.0, + 925.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 671.0, + 1405.0, + 671.0, + 1405.0, + 706.0, + 1098.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 707.0, + 521.0, + 707.0, + 521.0, + 743.0, + 291.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 707.0, + 1234.0, + 707.0, + 1234.0, + 743.0, + 557.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 707.0, + 1405.0, + 707.0, + 1405.0, + 743.0, + 1272.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 740.0, + 1251.0, + 740.0, + 1251.0, + 773.0, + 296.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1033.0, + 1406.0, + 1033.0, + 1406.0, + 1072.0, + 293.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1067.0, + 1406.0, + 1067.0, + 1406.0, + 1101.0, + 295.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1092.0, + 964.0, + 1092.0, + 964.0, + 1133.0, + 291.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1092.0, + 1170.0, + 1092.0, + 1170.0, + 1133.0, + 999.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 821.0, + 370.0, + 821.0, + 370.0, + 859.0, + 294.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 821.0, + 959.0, + 821.0, + 959.0, + 859.0, + 403.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 821.0, + 1244.0, + 821.0, + 1244.0, + 859.0, + 995.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 821.0, + 1404.0, + 821.0, + 1404.0, + 859.0, + 1278.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 858.0, + 1325.0, + 858.0, + 1325.0, + 894.0, + 292.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 858.0, + 1405.0, + 858.0, + 1405.0, + 894.0, + 1353.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 892.0, + 389.0, + 892.0, + 389.0, + 926.0, + 295.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 892.0, + 1404.0, + 892.0, + 1404.0, + 926.0, + 416.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 923.0, + 1196.0, + 923.0, + 1196.0, + 957.0, + 295.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1179.0, + 1403.0, + 1179.0, + 1403.0, + 1220.0, + 294.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1213.0, + 1405.0, + 1213.0, + 1405.0, + 1249.0, + 293.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1242.0, + 905.0, + 1242.0, + 905.0, + 1281.0, + 293.0, + 1281.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 821, + 1405, + 821, + 1405, + 1219, + 298, + 1219 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 296, + 1754, + 1405, + 1754, + 1405, + 2037, + 296, + 2037 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 296, + 1484, + 1404, + 1484, + 1404, + 1671, + 296, + 1671 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1233, + 1403, + 1233, + 1403, + 1388, + 297, + 1388 + ], + "score": 0.98 + }, + { + "category_id": 3, + "poly": [ + 352, + 204, + 1346, + 204, + 1346, + 555, + 352, + 555 + ], + "score": 0.976 + }, + { + "category_id": 8, + "poly": [ + 629, + 1397, + 1070, + 1397, + 1070, + 1474, + 629, + 1474 + ], + "score": 0.956 + }, + { + "category_id": 4, + "poly": [ + 296, + 579, + 1405, + 579, + 1405, + 733, + 296, + 733 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 585, + 1676, + 1110, + 1676, + 1110, + 1747, + 585, + 1747 + ], + "score": 0.95 + }, + { + "category_id": 0, + "poly": [ + 298, + 764, + 881, + 764, + 881, + 797, + 298, + 797 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 815, + 76, + 815, + 104, + 298, + 104 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1408, + 1400, + 1408, + 1400, + 1437, + 1366, + 1437 + ], + "score": 0.878 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1697, + 1400, + 1697, + 1400, + 1726, + 1366, + 1726 + ], + "score": 0.875 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.771 + }, + { + "category_id": 14, + "poly": [ + 586, + 1673, + 1113, + 1673, + 1113, + 1750, + 586, + 1750 + ], + "score": 0.95, + "latex": "K ( \\mathbf { f } _ { i } , \\mathbf { f } _ { j } ) = \\exp \\left( - \\frac { 1 } { 2 } ( \\mathbf { f } _ { i } - \\mathbf { f } _ { j } ) ^ { T } \\Sigma _ { i j } ^ { - 1 } ( \\mathbf { f } _ { i } - \\mathbf { f } _ { j } ) \\right)" + }, + { + "category_id": 14, + "poly": [ + 629, + 1395, + 1071, + 1395, + 1071, + 1476, + 629, + 1476 + ], + "score": 0.94, + "latex": "\\mathbf { v } _ { i } ^ { \\prime } = \\sum _ { j \\in \\Omega ( i ) } K ( \\mathbf { f } _ { i } , \\mathbf { f } _ { j } ) \\mathbf { W } [ \\mathbf { p } _ { i } - \\mathbf { p } _ { j } ] \\mathbf { v } _ { j } + \\mathbf { b }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1788, + 374, + 1788, + 374, + 1820, + 297, + 1820 + ], + "score": 0.94, + "latex": "\\sigma ^ { 2 } \\cdot I _ { D }" + }, + { + "category_id": 13, + "poly": [ + 1007, + 1516, + 1151, + 1516, + 1151, + 1552, + 1007, + 1552 + ], + "score": 0.94, + "latex": "\\mathbf { p } = ( x , y ) ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 908, + 2002, + 1130, + 2002, + 1130, + 2038, + 908, + 2038 + ], + "score": 0.92, + "latex": "\\forall ~ i j , K ( \\mathbf { f } _ { i } , \\mathbf { f } _ { j } ) ~ = ~ 1" + }, + { + "category_id": 13, + "poly": [ + 551, + 1485, + 644, + 1485, + 644, + 1517, + 551, + 1517 + ], + "score": 0.91, + "latex": "\\mathbf { f } \\in \\mathcal { R } ^ { D }" + }, + { + "category_id": 13, + "poly": [ + 343, + 1609, + 430, + 1609, + 430, + 1638, + 343, + 1638 + ], + "score": 0.91, + "latex": "\\mathbf { b } \\in \\mathcal { R } ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 969, + 1550, + 1043, + 1550, + 1043, + 1580, + 969, + 1580 + ], + "score": 0.9, + "latex": "\\mathbf { W } _ { k \\times k }" + }, + { + "category_id": 13, + "poly": [ + 586, + 1580, + 643, + 1580, + 643, + 1607, + 586, + 1607 + ], + "score": 0.9, + "latex": "k \\times k" + }, + { + "category_id": 13, + "poly": [ + 357, + 1549, + 465, + 1549, + 465, + 1583, + 357, + 1583 + ], + "score": 0.9, + "latex": "[ { \\bf p } _ { i } - { \\bf p } _ { j } ]" + }, + { + "category_id": 13, + "poly": [ + 373, + 1758, + 415, + 1758, + 415, + 1790, + 373, + 1790 + ], + "score": 0.9, + "latex": "\\Sigma _ { i j }" + }, + { + "category_id": 13, + "poly": [ + 720, + 1266, + 788, + 1266, + 788, + 1295, + 720, + 1295 + ], + "score": 0.9, + "latex": "1 \\times 1" + }, + { + "category_id": 13, + "poly": [ + 578, + 1267, + 646, + 1267, + 646, + 1295, + 578, + 1295 + ], + "score": 0.9, + "latex": "3 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 962, + 1757, + 987, + 1757, + 987, + 1791, + 962, + 1791 + ], + "score": 0.88, + "latex": "\\mathbf { f } _ { j }" + }, + { + "category_id": 13, + "poly": [ + 888, + 1758, + 911, + 1758, + 911, + 1788, + 888, + 1788 + ], + "score": 0.87, + "latex": "\\mathbf { f } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 592, + 1611, + 621, + 1611, + 621, + 1637, + 592, + 1637 + ], + "score": 0.83, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 440, + 1795, + 460, + 1795, + 460, + 1817, + 440, + 1817 + ], + "score": 0.77, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 979, + 1582, + 991, + 1582, + 991, + 1606, + 979, + 1606 + ], + "score": 0.71, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 1001, + 1584, + 1018, + 1584, + 1018, + 1606, + 1001, + 1606 + ], + "score": 0.56, + "latex": "\\mathbf { v }" + }, + { + "category_id": 13, + "poly": [ + 421, + 1581, + 480, + 1581, + 480, + 1610, + 421, + 1610 + ], + "score": 0.54, + "latex": "k , \\check { \\Omega } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 612, + 1358, + 646, + 1358, + 646, + 1384, + 612, + 1384 + ], + "score": 0.37, + "latex": "\\mathrm { S u }" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 208.0, + 720.0, + 208.0, + 720.0, + 227.0, + 509.0, + 227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 232.0, + 1191.0, + 232.0, + 1191.0, + 268.0, + 1132.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 236.0, + 1329.0, + 236.0, + 1329.0, + 262.0, + 1254.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 268.0, + 1200.0, + 268.0, + 1200.0, + 294.0, + 1126.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 277.0, + 1316.0, + 277.0, + 1316.0, + 301.0, + 1268.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 289.0, + 1193.0, + 289.0, + 1193.0, + 309.0, + 1134.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 318.0, + 1117.0, + 318.0, + 1117.0, + 348.0, + 1100.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 313.0, + 1205.0, + 313.0, + 1205.0, + 351.0, + 1127.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.0, + 319.0, + 1313.0, + 319.0, + 1313.0, + 347.0, + 1271.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 374.0, + 710.0, + 374.0, + 710.0, + 389.0, + 569.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 533.0, + 621.0, + 533.0, + 621.0, + 556.0, + 508.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.25, + 444.0, + 1255.25, + 444.0, + 1255.25, + 492.0, + 1154.25, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 581.0, + 1405.0, + 581.0, + 1405.0, + 614.0, + 295.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 607.0, + 1403.0, + 607.0, + 1403.0, + 647.0, + 294.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 636.0, + 1406.0, + 636.0, + 1406.0, + 681.0, + 291.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 669.0, + 1405.0, + 669.0, + 1405.0, + 710.0, + 293.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 702.0, + 366.0, + 702.0, + 366.0, + 737.0, + 294.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 764.0, + 884.0, + 764.0, + 884.0, + 799.0, + 295.0, + 799.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": [ + 838.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 822.0, + 1405.0, + 822.0, + 1405.0, + 858.0, + 296.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 849.0, + 1405.0, + 849.0, + 1405.0, + 889.0, + 293.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 881.0, + 1405.0, + 881.0, + 1405.0, + 920.0, + 292.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 915.0, + 1401.0, + 915.0, + 1401.0, + 947.0, + 295.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 942.0, + 1405.0, + 942.0, + 1405.0, + 982.0, + 293.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 975.0, + 1403.0, + 975.0, + 1403.0, + 1011.0, + 295.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1004.0, + 1405.0, + 1004.0, + 1405.0, + 1041.0, + 293.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1034.0, + 1405.0, + 1034.0, + 1405.0, + 1071.0, + 295.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1065.0, + 1405.0, + 1065.0, + 1405.0, + 1102.0, + 295.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1095.0, + 1405.0, + 1095.0, + 1405.0, + 1133.0, + 292.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1128.0, + 1402.0, + 1128.0, + 1402.0, + 1160.0, + 295.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1156.0, + 1406.0, + 1156.0, + 1406.0, + 1194.0, + 293.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1187.0, + 790.0, + 1187.0, + 790.0, + 1224.0, + 295.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1757.0, + 372.0, + 1757.0, + 372.0, + 1790.0, + 296.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1757.0, + 887.0, + 1757.0, + 887.0, + 1790.0, + 416.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 1757.0, + 961.0, + 1757.0, + 961.0, + 1790.0, + 912.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 1757.0, + 1403.0, + 1757.0, + 1403.0, + 1790.0, + 988.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1785.0, + 296.0, + 1785.0, + 296.0, + 1826.0, + 293.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1785.0, + 439.0, + 1785.0, + 439.0, + 1826.0, + 375.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 1785.0, + 1406.0, + 1785.0, + 1406.0, + 1826.0, + 461.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1818.0, + 1405.0, + 1818.0, + 1405.0, + 1860.0, + 291.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1848.0, + 1405.0, + 1848.0, + 1405.0, + 1887.0, + 291.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1882.0, + 1405.0, + 1882.0, + 1405.0, + 1916.0, + 295.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1915.0, + 1405.0, + 1915.0, + 1405.0, + 1945.0, + 295.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1943.0, + 1406.0, + 1943.0, + 1406.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1973.0, + 1405.0, + 1973.0, + 1405.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 2002.0, + 907.0, + 2002.0, + 907.0, + 2039.0, + 290.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 2002.0, + 1143.0, + 2002.0, + 1143.0, + 2039.0, + 1131.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1484.0, + 550.0, + 1484.0, + 550.0, + 1522.0, + 293.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 1484.0, + 1406.0, + 1484.0, + 1406.0, + 1522.0, + 645.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1516.0, + 1006.0, + 1516.0, + 1006.0, + 1556.0, + 293.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 1516.0, + 1406.0, + 1516.0, + 1406.0, + 1556.0, + 1152.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1548.0, + 356.0, + 1548.0, + 356.0, + 1584.0, + 295.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 1548.0, + 968.0, + 1548.0, + 968.0, + 1584.0, + 466.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1548.0, + 1405.0, + 1548.0, + 1405.0, + 1584.0, + 1044.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1577.0, + 420.0, + 1577.0, + 420.0, + 1612.0, + 294.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 1577.0, + 585.0, + 1577.0, + 585.0, + 1612.0, + 481.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1577.0, + 978.0, + 1577.0, + 978.0, + 1612.0, + 644.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 1577.0, + 1000.0, + 1577.0, + 1000.0, + 1612.0, + 992.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 1577.0, + 1402.0, + 1577.0, + 1402.0, + 1612.0, + 1019.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1604.0, + 342.0, + 1604.0, + 342.0, + 1648.0, + 293.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 1604.0, + 591.0, + 1604.0, + 591.0, + 1648.0, + 431.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 1604.0, + 1407.0, + 1604.0, + 1407.0, + 1648.0, + 622.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1639.0, + 830.0, + 1639.0, + 830.0, + 1671.0, + 295.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1232.0, + 1403.0, + 1232.0, + 1403.0, + 1265.0, + 296.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1264.0, + 577.0, + 1264.0, + 577.0, + 1301.0, + 293.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1264.0, + 719.0, + 1264.0, + 719.0, + 1301.0, + 647.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 1264.0, + 1405.0, + 1264.0, + 1405.0, + 1301.0, + 789.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1292.0, + 1407.0, + 1292.0, + 1407.0, + 1330.0, + 294.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1320.0, + 1407.0, + 1320.0, + 1407.0, + 1365.0, + 291.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1354.0, + 611.0, + 1354.0, + 611.0, + 1392.0, + 293.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1354.0, + 797.0, + 1354.0, + 797.0, + 1392.0, + 647.0, + 1392.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1370, + 1404, + 1370, + 1404, + 1767, + 298, + 1767 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1048, + 1404, + 1048, + 1404, + 1354, + 297, + 1354 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 645, + 1404, + 645, + 1404, + 952, + 298, + 952 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 301, + 1942, + 1401, + 1942, + 1401, + 2034, + 301, + 2034 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 318, + 213, + 1381, + 213, + 1381, + 427, + 318, + 427 + ], + "score": 0.967 + }, + { + "category_id": 4, + "poly": [ + 299, + 450, + 1399, + 450, + 1399, + 543, + 299, + 543 + ], + "score": 0.955 + }, + { + "category_id": 0, + "poly": [ + 299, + 1883, + 490, + 1883, + 490, + 1916, + 299, + 1916 + ], + "score": 0.898 + }, + { + "category_id": 0, + "poly": [ + 300, + 991, + 642, + 991, + 642, + 1021, + 300, + 1021 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 816, + 76, + 816, + 104, + 299, + 104 + ], + "score": 0.886 + }, + { + "category_id": 0, + "poly": [ + 302, + 1814, + 713, + 1814, + 713, + 1848, + 302, + 1848 + ], + "score": 0.885 + }, + { + "category_id": 0, + "poly": [ + 303, + 588, + 760, + 588, + 760, + 619, + 303, + 619 + ], + "score": 0.867 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.702 + }, + { + "category_id": 13, + "poly": [ + 1114, + 1613, + 1155, + 1613, + 1155, + 1644, + 1114, + 1644 + ], + "score": 0.87, + "latex": "5 \\%" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 205.0, + 782.0, + 205.0, + 782.0, + 327.0, + 336.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 232.0, + 1043.0, + 232.0, + 1043.0, + 318.0, + 829.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 354.0, + 428.0, + 354.0, + 428.0, + 389.0, + 360.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 362.0, + 449.0, + 362.0, + 449.0, + 372.0, + 440.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 362.0, + 602.0, + 362.0, + 602.0, + 379.0, + 576.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 330.0, + 1095.0, + 330.0, + 1095.0, + 381.0, + 1009.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 449.0, + 1404.0, + 449.0, + 1404.0, + 487.0, + 295.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 482.0, + 1404.0, + 482.0, + 1404.0, + 516.0, + 295.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 511.0, + 1226.0, + 511.0, + 1226.0, + 546.0, + 294.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1880.0, + 493.0, + 1880.0, + 493.0, + 1919.0, + 294.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 990.0, + 645.0, + 990.0, + 645.0, + 1025.0, + 294.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1809.0, + 718.0, + 1809.0, + 718.0, + 1854.0, + 292.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 584.0, + 767.0, + 584.0, + 767.0, + 625.0, + 294.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1372.0, + 1405.0, + 1372.0, + 1405.0, + 1404.0, + 297.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1400.0, + 1406.0, + 1400.0, + 1406.0, + 1435.0, + 293.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1430.0, + 1404.0, + 1430.0, + 1404.0, + 1468.0, + 292.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1461.0, + 1405.0, + 1461.0, + 1405.0, + 1497.0, + 293.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1488.0, + 1404.0, + 1488.0, + 1404.0, + 1531.0, + 291.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1522.0, + 1406.0, + 1522.0, + 1406.0, + 1558.0, + 294.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1553.0, + 1406.0, + 1553.0, + 1406.0, + 1589.0, + 294.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1581.0, + 1406.0, + 1581.0, + 1406.0, + 1619.0, + 292.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1610.0, + 1113.0, + 1610.0, + 1113.0, + 1653.0, + 292.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1610.0, + 1406.0, + 1610.0, + 1406.0, + 1653.0, + 1156.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1644.0, + 1405.0, + 1644.0, + 1405.0, + 1680.0, + 294.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1675.0, + 1405.0, + 1675.0, + 1405.0, + 1711.0, + 293.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1703.0, + 1404.0, + 1703.0, + 1404.0, + 1742.0, + 292.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1734.0, + 1310.0, + 1734.0, + 1310.0, + 1770.0, + 294.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1050.0, + 1404.0, + 1050.0, + 1404.0, + 1082.0, + 296.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1079.0, + 1404.0, + 1079.0, + 1404.0, + 1115.0, + 294.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1110.0, + 1405.0, + 1110.0, + 1405.0, + 1145.0, + 294.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1140.0, + 1406.0, + 1140.0, + 1406.0, + 1176.0, + 292.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1171.0, + 1405.0, + 1171.0, + 1405.0, + 1206.0, + 295.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1200.0, + 1402.0, + 1200.0, + 1402.0, + 1237.0, + 294.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1231.0, + 1402.0, + 1231.0, + 1402.0, + 1267.0, + 294.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1259.0, + 1405.0, + 1259.0, + 1405.0, + 1300.0, + 292.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1292.0, + 1405.0, + 1292.0, + 1405.0, + 1328.0, + 294.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1325.0, + 878.0, + 1325.0, + 878.0, + 1357.0, + 296.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 643.0, + 1406.0, + 643.0, + 1406.0, + 682.0, + 293.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 676.0, + 1406.0, + 676.0, + 1406.0, + 711.0, + 292.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 708.0, + 1404.0, + 708.0, + 1404.0, + 740.0, + 294.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 737.0, + 1406.0, + 737.0, + 1406.0, + 772.0, + 293.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 768.0, + 1406.0, + 768.0, + 1406.0, + 804.0, + 293.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 800.0, + 1404.0, + 800.0, + 1404.0, + 832.0, + 296.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 828.0, + 1405.0, + 828.0, + 1405.0, + 862.0, + 293.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 858.0, + 1404.0, + 858.0, + 1404.0, + 893.0, + 293.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 890.0, + 1402.0, + 890.0, + 1402.0, + 922.0, + 293.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 921.0, + 1302.0, + 921.0, + 1302.0, + 955.0, + 293.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1941.0, + 1403.0, + 1941.0, + 1403.0, + 1975.0, + 297.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1972.0, + 1404.0, + 1972.0, + 1404.0, + 2006.0, + 296.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 2002.0, + 1405.0, + 2002.0, + 1405.0, + 2036.0, + 297.0, + 2036.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 297, + 186, + 1408, + 186, + 1408, + 649, + 297, + 649 + ], + "score": 0.984, + "html": "
MethodSuperv.Lower is BetterHigher is Better
Abs RelSq RelRMSERMSEtogδ<1.25δ<1.25²δ<1.253
Garg et al. (2016)M0.1521.2265.8490.2460.7840.9210.967
Zou et al. (2018)M0.1501.1245.5070.2230.8060.9330.973
Godard et al. (2017)M0.1411.1865.6770.2380.8090.9280.969
Zhan et al. (2018)M0.1351.1325.5850.2290.8200.9330.971
Godard et al. (2018) (R18)M0.1150.9034.8630.1930.8770.9590.981
Godard et al. (2018) (R50)M0.1120.8514.7540.1900.8810.9600.981
Guizilini et al. (2019) (MR)M0.1080.7274.4260.1840.8850.9630.983
Guizilini et al. (2019) (HR)M0.1040.7584.3860.1820.8950.9640.982
Casser et al. (2019)S+Inst0.1411.0255.2900.2150.8160.9450.979
Chen et al. (2019)S+Sem0.1180.9055.0960.2110.8390.9450.977
Ochs et al. (2019)D+Sem0.1160.9454.9160.2080.8610.9520.968
Ours (MR)M+Sem0.1020.6984.3810.1780.8960.9640.984
Ours (HR)M+Sem0.1000.7614.2700.1750.9020.9650.982
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1244, + 1404, + 1244, + 1404, + 1521, + 298, + 1521 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1536, + 1404, + 1536, + 1404, + 1751, + 298, + 1751 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 960, + 1403, + 960, + 1403, + 1146, + 299, + 1146 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1849, + 1402, + 1849, + 1402, + 2034, + 298, + 2034 + ], + "score": 0.98 + }, + { + "category_id": 0, + "poly": [ + 301, + 1186, + 690, + 1186, + 690, + 1217, + 301, + 1217 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 301, + 76, + 816, + 76, + 816, + 104, + 301, + 104 + ], + "score": 0.889 + }, + { + "category_id": 0, + "poly": [ + 302, + 1791, + 794, + 1791, + 794, + 1823, + 302, + 1823 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.776 + }, + { + "category_id": 1, + "poly": [ + 297, + 676, + 1404, + 676, + 1404, + 922, + 297, + 922 + ], + "score": 0.509 + }, + { + "category_id": 6, + "poly": [ + 297, + 676, + 1404, + 676, + 1404, + 922, + 297, + 922 + ], + "score": 0.498 + }, + { + "category_id": 13, + "poly": [ + 657, + 1336, + 750, + 1336, + 750, + 1366, + 657, + 1366 + ], + "score": 0.91, + "latex": "2 \\cdot 1 0 ^ { - 4 }" + }, + { + "category_id": 13, + "poly": [ + 801, + 1336, + 894, + 1336, + 894, + 1366, + 801, + 1366 + ], + "score": 0.9, + "latex": "5 \\cdot { \\bar { 1 } } 0 ^ { - 4 }" + }, + { + "category_id": 13, + "poly": [ + 1136, + 1596, + 1196, + 1596, + 1196, + 1627, + 1136, + 1627 + ], + "score": 0.9, + "latex": "1 0 ^ { - 4 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1659, + 437, + 1659, + 437, + 1687, + 298, + 1687 + ], + "score": 0.9, + "latex": "1 0 0 0 \\times 2 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 845, + 1114, + 899, + 1114, + 899, + 1144, + 845, + 1144 + ], + "score": 0.89, + "latex": "7 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1042, + 1567, + 1088, + 1567, + 1088, + 1595, + 1042, + 1595 + ], + "score": 0.86, + "latex": "4 8 k" + }, + { + "category_id": 13, + "poly": [ + 297, + 1689, + 344, + 1689, + 344, + 1718, + 297, + 1718 + ], + "score": 0.82, + "latex": "3 6 k" + }, + { + "category_id": 13, + "poly": [ + 1267, + 799, + 1402, + 799, + 1402, + 829, + 1267, + 829 + ], + "score": 0.82, + "latex": "1 2 8 0 \\mathrm { ~ x ~ } 3 8 4" + }, + { + "category_id": 13, + "poly": [ + 765, + 799, + 888, + 799, + 888, + 828, + 765, + 828 + ], + "score": 0.79, + "latex": "6 4 0 \\times 1 9 2" + }, + { + "category_id": 13, + "poly": [ + 792, + 1054, + 905, + 1054, + 905, + 1083, + 792, + 1083 + ], + "score": 0.78, + "latex": "6 4 0 \\times 1 9 2" + }, + { + "category_id": 13, + "poly": [ + 396, + 1690, + 442, + 1690, + 442, + 1717, + 396, + 1717 + ], + "score": 0.77, + "latex": "4 4 k" + }, + { + "category_id": 13, + "poly": [ + 608, + 739, + 634, + 739, + 634, + 766, + 608, + 766 + ], + "score": 0.7, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 449, + 709, + 502, + 709, + 502, + 737, + 449, + 737 + ], + "score": 0.64, + "latex": "8 0 \\mathrm { m }" + }, + { + "category_id": 13, + "poly": [ + 522, + 709, + 553, + 709, + 553, + 736, + 522, + 736 + ], + "score": 0.38, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 1108, + 799, + 1150, + 799, + 1150, + 828, + 1108, + 828 + ], + "score": 0.26, + "latex": "H R" + }, + { + "category_id": 13, + "poly": [ + 605, + 800, + 650, + 800, + 650, + 827, + 605, + 827 + ], + "score": 0.26, + "latex": "M R" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1182.0, + 696.0, + 1182.0, + 696.0, + 1223.0, + 293.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1791.0, + 799.0, + 1791.0, + 799.0, + 1827.0, + 295.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 675.0, + 1405.0, + 675.0, + 1405.0, + 711.0, + 294.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 708.0, + 448.0, + 708.0, + 448.0, + 741.0, + 295.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 708.0, + 521.0, + 708.0, + 521.0, + 741.0, + 503.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 708.0, + 1404.0, + 708.0, + 1404.0, + 741.0, + 554.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 738.0, + 607.0, + 738.0, + 607.0, + 771.0, + 295.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 738.0, + 1404.0, + 738.0, + 1404.0, + 771.0, + 635.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 770.0, + 1402.0, + 770.0, + 1402.0, + 800.0, + 296.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 800.0, + 604.0, + 800.0, + 604.0, + 830.0, + 296.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 800.0, + 764.0, + 800.0, + 764.0, + 830.0, + 651.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 800.0, + 1107.0, + 800.0, + 1107.0, + 830.0, + 889.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 800.0, + 1266.0, + 800.0, + 1266.0, + 830.0, + 1151.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 830.0, + 1405.0, + 830.0, + 1405.0, + 864.0, + 295.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 860.0, + 1405.0, + 860.0, + 1405.0, + 894.0, + 295.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 889.0, + 1050.0, + 889.0, + 1050.0, + 925.0, + 294.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1242.0, + 1405.0, + 1242.0, + 1405.0, + 1280.0, + 295.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1271.0, + 1406.0, + 1271.0, + 1406.0, + 1316.0, + 291.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1304.0, + 1404.0, + 1304.0, + 1404.0, + 1341.0, + 293.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1333.0, + 656.0, + 1333.0, + 656.0, + 1373.0, + 293.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 1333.0, + 800.0, + 1333.0, + 800.0, + 1373.0, + 751.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 1333.0, + 1405.0, + 1333.0, + 1405.0, + 1373.0, + 895.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1365.0, + 1405.0, + 1365.0, + 1405.0, + 1403.0, + 293.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1398.0, + 1404.0, + 1398.0, + 1404.0, + 1434.0, + 293.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1427.0, + 1407.0, + 1427.0, + 1407.0, + 1466.0, + 292.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1456.0, + 1405.0, + 1456.0, + 1405.0, + 1496.0, + 293.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1489.0, + 1322.0, + 1489.0, + 1322.0, + 1524.0, + 293.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1534.0, + 1405.0, + 1534.0, + 1405.0, + 1570.0, + 295.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1564.0, + 1041.0, + 1564.0, + 1041.0, + 1603.0, + 293.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 1564.0, + 1405.0, + 1564.0, + 1405.0, + 1603.0, + 1089.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1597.0, + 1135.0, + 1597.0, + 1135.0, + 1631.0, + 294.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 1597.0, + 1404.0, + 1597.0, + 1404.0, + 1631.0, + 1197.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1628.0, + 1406.0, + 1628.0, + 1406.0, + 1662.0, + 294.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 1658.0, + 1404.0, + 1658.0, + 1404.0, + 1693.0, + 438.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1687.0, + 296.0, + 1687.0, + 296.0, + 1723.0, + 293.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 1687.0, + 395.0, + 1687.0, + 395.0, + 1723.0, + 345.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 1687.0, + 1405.0, + 1687.0, + 1405.0, + 1723.0, + 443.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1720.0, + 1384.0, + 1720.0, + 1384.0, + 1754.0, + 294.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 959.0, + 1407.0, + 959.0, + 1407.0, + 998.0, + 293.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 990.0, + 1405.0, + 990.0, + 1405.0, + 1027.0, + 293.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1021.0, + 1405.0, + 1021.0, + 1405.0, + 1057.0, + 295.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1053.0, + 791.0, + 1053.0, + 791.0, + 1089.0, + 295.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1053.0, + 1405.0, + 1053.0, + 1405.0, + 1089.0, + 906.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1081.0, + 1407.0, + 1081.0, + 1407.0, + 1119.0, + 293.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1114.0, + 844.0, + 1114.0, + 844.0, + 1149.0, + 293.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 1114.0, + 1139.0, + 1114.0, + 1139.0, + 1149.0, + 900.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1851.0, + 1403.0, + 1851.0, + 1403.0, + 1883.0, + 297.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1880.0, + 1404.0, + 1880.0, + 1404.0, + 1915.0, + 293.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1912.0, + 1404.0, + 1912.0, + 1404.0, + 1944.0, + 293.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1943.0, + 1404.0, + 1943.0, + 1404.0, + 1975.0, + 293.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1404.0, + 1972.0, + 1404.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 1404.0, + 2003.0, + 1404.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 675.0, + 1405.0, + 675.0, + 1405.0, + 711.0, + 294.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 708.0, + 448.0, + 708.0, + 448.0, + 741.0, + 295.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 708.0, + 521.0, + 708.0, + 521.0, + 741.0, + 503.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 708.0, + 1404.0, + 708.0, + 1404.0, + 741.0, + 554.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 738.0, + 607.0, + 738.0, + 607.0, + 771.0, + 295.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 738.0, + 1404.0, + 738.0, + 1404.0, + 771.0, + 635.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 770.0, + 1402.0, + 770.0, + 1402.0, + 800.0, + 296.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 800.0, + 604.0, + 800.0, + 604.0, + 830.0, + 296.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 800.0, + 764.0, + 800.0, + 764.0, + 830.0, + 651.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 800.0, + 1107.0, + 800.0, + 1107.0, + 830.0, + 889.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 800.0, + 1266.0, + 800.0, + 1266.0, + 830.0, + 1151.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 830.0, + 1405.0, + 830.0, + 1405.0, + 864.0, + 295.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 860.0, + 1405.0, + 860.0, + 1405.0, + 894.0, + 295.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 889.0, + 1050.0, + 889.0, + 1050.0, + 925.0, + 294.0, + 925.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 301, + 224, + 1393, + 224, + 1393, + 538, + 301, + 538 + ], + "score": 0.982, + "html": "
NetworkSEMTSTLower is BetterHigher is Better δ <1.25 δ<1.252 δ< 1.253Class-Avg. Abs Rel
Abs RelSq Rel RMSE RMSElog
ResNet-180.120 0.1170.896 0.8544.869 4.7140.198 0.1910.868 0.957 0.8730.981 0.963 0.9810.149 0.139
ResNet-500.117 0.1130.900 0.8314.826 4.6630.196 0.1890.873 0.967 0.878 0.9710.980 0.9830.144 0.136
PackNet0.108 0.103 0.1020.727 0.710 0.6984.426 4.301 4.3810.184 0.179 0.1780.885 0.963 0.895 0.964 0.896 0.9630.983 0.984 0.9840.132 0.121 0.117
" + }, + { + "category_id": 1, + "poly": [ + 298, + 952, + 1405, + 952, + 1405, + 1138, + 298, + 1138 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1228, + 1404, + 1228, + 1404, + 1414, + 297, + 1414 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 676, + 1404, + 676, + 1404, + 800, + 298, + 800 + ], + "score": 0.978 + }, + { + "category_id": 3, + "poly": [ + 313, + 1447, + 1384, + 1447, + 1384, + 1834, + 313, + 1834 + ], + "score": 0.972 + }, + { + "category_id": 4, + "poly": [ + 295, + 1870, + 1405, + 1870, + 1405, + 2025, + 295, + 2025 + ], + "score": 0.936 + }, + { + "category_id": 0, + "poly": [ + 298, + 1174, + 867, + 1174, + 867, + 1206, + 298, + 1206 + ], + "score": 0.916 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 105, + 300, + 105 + ], + "score": 0.901 + }, + { + "category_id": 0, + "poly": [ + 299, + 898, + 758, + 898, + 758, + 931, + 299, + 931 + ], + "score": 0.893 + }, + { + "category_id": 0, + "poly": [ + 300, + 841, + 618, + 841, + 618, + 872, + 300, + 872 + ], + "score": 0.888 + }, + { + "category_id": 1, + "poly": [ + 300, + 560, + 1398, + 560, + 1398, + 655, + 300, + 655 + ], + "score": 0.851 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.689 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 859, + 2087, + 859, + 2111, + 841, + 2111 + ], + "score": 0.197 + }, + { + "category_id": 15, + "poly": [ + 363.0, + 1445.0, + 429.0, + 1445.0, + 429.0, + 1485.0, + 363.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 1492.0, + 430.0, + 1492.0, + 430.0, + 1535.0, + 376.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1486.0, + 1329.0, + 1486.0, + 1329.0, + 1543.0, + 1129.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 1529.0, + 350.0, + 1529.0, + 350.0, + 1632.0, + 313.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 1542.0, + 430.0, + 1542.0, + 430.0, + 1586.0, + 362.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1590.0, + 429.0, + 1590.0, + 429.0, + 1633.0, + 375.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 1641.0, + 429.0, + 1641.0, + 429.0, + 1680.0, + 363.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 1699.0, + 424.0, + 1699.0, + 424.0, + 1723.0, + 403.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 1729.0, + 1064.0, + 1729.0, + 1064.0, + 1770.0, + 1030.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 1752.0, + 1036.0, + 1752.0, + 1036.0, + 1765.0, + 1025.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.75, + 1740.0, + 632.75, + 1740.0, + 632.75, + 1770.5, + 555.75, + 1770.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 1740.5, + 729.0, + 1740.5, + 729.0, + 1771.5, + 652.0, + 1771.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 1742.0, + 1027.0, + 1742.0, + 1027.0, + 1776.0, + 941.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.75, + 1738.5, + 1173.75, + 1738.5, + 1173.75, + 1768.5, + 1104.75, + 1768.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.75, + 1743.0, + 483.75, + 1743.0, + 483.75, + 1773.5, + 399.75, + 1773.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 1743.5, + 685.0, + 1743.5, + 685.0, + 1781.0, + 586.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 1741.0, + 1128.0, + 1741.0, + 1128.0, + 1776.0, + 1037.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.25, + 1740.5, + 1226.25, + 1740.5, + 1226.25, + 1776.5, + 1138.25, + 1776.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 1749.5, + 588.0, + 1749.5, + 588.0, + 1786.5, + 473.0, + 1786.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.75, + 1749.5, + 783.75, + 1749.5, + 783.75, + 1784.0, + 677.75, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 1749.5, + 830.0, + 1749.5, + 830.0, + 1784.5, + 727.0, + 1784.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 1748.0, + 930.0, + 1748.0, + 930.0, + 1781.0, + 831.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.25, + 1750.0, + 980.25, + 1750.0, + 980.25, + 1781.5, + 878.25, + 1781.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 1754.0, + 537.0, + 1754.0, + 537.0, + 1789.0, + 417.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.25, + 1749.5, + 1327.25, + 1749.5, + 1327.25, + 1783.5, + 1221.25, + 1783.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 1757.5, + 1371.0, + 1757.5, + 1371.0, + 1785.5, + 1268.0, + 1785.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 1761.0, + 885.0, + 1761.0, + 885.0, + 1797.5, + 750.0, + 1797.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 1765.0, + 1278.0, + 1765.0, + 1278.0, + 1798.5, + 1145.0, + 1798.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1870.0, + 1405.0, + 1870.0, + 1405.0, + 1908.0, + 294.0, + 1908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1900.0, + 1405.0, + 1900.0, + 1405.0, + 1938.0, + 293.0, + 1938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1929.0, + 1405.0, + 1929.0, + 1405.0, + 1969.0, + 293.0, + 1969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1961.0, + 1406.0, + 1961.0, + 1406.0, + 2002.0, + 294.0, + 2002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1993.0, + 916.0, + 1993.0, + 916.0, + 2026.0, + 297.0, + 2026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1171.0, + 869.0, + 1171.0, + 869.0, + 1209.0, + 295.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 898.0, + 762.0, + 898.0, + 762.0, + 933.0, + 295.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 838.0, + 621.0, + 838.0, + 621.0, + 876.0, + 294.0, + 876.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": [ + 296.0, + 954.0, + 1403.0, + 954.0, + 1403.0, + 986.0, + 296.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 982.0, + 1407.0, + 982.0, + 1407.0, + 1019.0, + 292.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1016.0, + 1405.0, + 1016.0, + 1405.0, + 1048.0, + 296.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1045.0, + 1405.0, + 1045.0, + 1405.0, + 1079.0, + 293.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1076.0, + 1405.0, + 1076.0, + 1405.0, + 1111.0, + 295.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1105.0, + 1361.0, + 1105.0, + 1361.0, + 1141.0, + 295.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1230.0, + 1404.0, + 1230.0, + 1404.0, + 1262.0, + 296.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1260.0, + 1404.0, + 1260.0, + 1404.0, + 1294.0, + 294.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1290.0, + 1404.0, + 1290.0, + 1404.0, + 1322.0, + 295.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1321.0, + 1404.0, + 1321.0, + 1404.0, + 1354.0, + 293.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1350.0, + 1404.0, + 1350.0, + 1404.0, + 1386.0, + 294.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1380.0, + 1294.0, + 1380.0, + 1294.0, + 1417.0, + 294.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 676.0, + 1404.0, + 676.0, + 1404.0, + 712.0, + 293.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 708.0, + 1405.0, + 708.0, + 1405.0, + 743.0, + 292.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 739.0, + 1405.0, + 739.0, + 1405.0, + 772.0, + 294.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 766.0, + 1385.0, + 766.0, + 1385.0, + 806.0, + 293.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 558.0, + 1402.0, + 558.0, + 1402.0, + 598.0, + 292.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 590.0, + 1403.0, + 590.0, + 1403.0, + 628.0, + 294.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 622.0, + 1151.0, + 622.0, + 1151.0, + 657.0, + 295.0, + 657.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1642, + 1404, + 1642, + 1404, + 1980, + 298, + 1980 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1253, + 1404, + 1253, + 1404, + 1529, + 298, + 1529 + ], + "score": 0.982 + }, + { + "category_id": 3, + "poly": [ + 302, + 254, + 1396, + 254, + 1396, + 1014, + 302, + 1014 + ], + "score": 0.973 + }, + { + "category_id": 4, + "poly": [ + 297, + 1040, + 1405, + 1040, + 1405, + 1194, + 297, + 1194 + ], + "score": 0.968 + }, + { + "category_id": 0, + "poly": [ + 300, + 1574, + 543, + 1574, + 543, + 1609, + 300, + 1609 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 816, + 76, + 816, + 104, + 299, + 104 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2111, + 840, + 2111 + ], + "score": 0.788 + }, + { + "category_id": 15, + "poly": [ + 654.0, + 235.0, + 1368.0, + 235.0, + 1368.0, + 384.0, + 654.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 683.0, + 1366.0, + 683.0, + 1366.0, + 814.0, + 681.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.0, + 816.0, + 1355.0, + 816.0, + 1355.0, + 871.0, + 1251.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 843.0, + 1294.0, + 843.0, + 1294.0, + 851.0, + 1282.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 926.0, + 793.0, + 926.0, + 793.0, + 975.0, + 716.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 914.0, + 1146.0, + 914.0, + 1146.0, + 991.0, + 820.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 914.0, + 1376.0, + 914.0, + 1376.0, + 1001.0, + 1154.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 367.5, + 1070.0, + 367.5, + 1070.0, + 444.5, + 926.0, + 444.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.25, + 611.0, + 789.25, + 611.0, + 789.25, + 657.0, + 715.25, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1039.0, + 1405.0, + 1039.0, + 1405.0, + 1075.0, + 294.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1069.0, + 1405.0, + 1069.0, + 1405.0, + 1105.0, + 292.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1101.0, + 1405.0, + 1101.0, + 1405.0, + 1138.0, + 294.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1129.0, + 1405.0, + 1129.0, + 1405.0, + 1169.0, + 294.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1162.0, + 925.0, + 1162.0, + 925.0, + 1199.0, + 295.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1568.0, + 549.0, + 1568.0, + 549.0, + 1618.0, + 291.0, + 1618.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": [ + 296.0, + 1643.0, + 1404.0, + 1643.0, + 1404.0, + 1678.0, + 296.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1674.0, + 1406.0, + 1674.0, + 1406.0, + 1710.0, + 292.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1700.0, + 1405.0, + 1700.0, + 1405.0, + 1744.0, + 293.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1731.0, + 1405.0, + 1731.0, + 1405.0, + 1775.0, + 292.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1766.0, + 1404.0, + 1766.0, + 1404.0, + 1801.0, + 294.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1797.0, + 1406.0, + 1797.0, + 1406.0, + 1832.0, + 294.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1827.0, + 1402.0, + 1827.0, + 1402.0, + 1862.0, + 294.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1855.0, + 1405.0, + 1855.0, + 1405.0, + 1894.0, + 292.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1889.0, + 1404.0, + 1889.0, + 1404.0, + 1920.0, + 294.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1918.0, + 1405.0, + 1918.0, + 1405.0, + 1953.0, + 294.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1949.0, + 1100.0, + 1949.0, + 1100.0, + 1983.0, + 294.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1254.0, + 1405.0, + 1254.0, + 1405.0, + 1290.0, + 296.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1285.0, + 1401.0, + 1285.0, + 1401.0, + 1318.0, + 296.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1315.0, + 1404.0, + 1315.0, + 1404.0, + 1352.0, + 293.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1344.0, + 1404.0, + 1344.0, + 1404.0, + 1382.0, + 293.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1374.0, + 1405.0, + 1374.0, + 1405.0, + 1413.0, + 292.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1408.0, + 1404.0, + 1408.0, + 1404.0, + 1441.0, + 296.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1437.0, + 1406.0, + 1437.0, + 1406.0, + 1473.0, + 294.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1468.0, + 1404.0, + 1468.0, + 1404.0, + 1505.0, + 294.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1495.0, + 1038.0, + 1495.0, + 1038.0, + 1535.0, + 295.0, + 1535.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.88 + }, + { + "category_id": 1, + "poly": [ + 296, + 1539, + 1401, + 1539, + 1401, + 1605, + 296, + 1605 + ], + "score": 0.825 + }, + { + "category_id": 1, + "poly": [ + 293, + 1370, + 1405, + 1370, + 1405, + 1435, + 293, + 1435 + ], + "score": 0.802 + }, + { + "category_id": 1, + "poly": [ + 296, + 1454, + 1402, + 1454, + 1402, + 1521, + 296, + 1521 + ], + "score": 0.796 + }, + { + "category_id": 1, + "poly": [ + 296, + 479, + 1401, + 479, + 1401, + 572, + 296, + 572 + ], + "score": 0.791 + }, + { + "category_id": 1, + "poly": [ + 292, + 279, + 1403, + 279, + 1403, + 343, + 292, + 343 + ], + "score": 0.784 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2111, + 840, + 2111 + ], + "score": 0.773 + }, + { + "category_id": 1, + "poly": [ + 296, + 1625, + 1404, + 1625, + 1404, + 1719, + 296, + 1719 + ], + "score": 0.763 + }, + { + "category_id": 1, + "poly": [ + 296, + 708, + 1399, + 708, + 1399, + 774, + 296, + 774 + ], + "score": 0.763 + }, + { + "category_id": 1, + "poly": [ + 300, + 1941, + 1402, + 1941, + 1402, + 2033, + 300, + 2033 + ], + "score": 0.756 + }, + { + "category_id": 0, + "poly": [ + 300, + 227, + 489, + 227, + 489, + 262, + 300, + 262 + ], + "score": 0.752 + }, + { + "category_id": 1, + "poly": [ + 297, + 1139, + 1400, + 1139, + 1400, + 1236, + 297, + 1236 + ], + "score": 0.745 + }, + { + "category_id": 1, + "poly": [ + 297, + 939, + 1400, + 939, + 1400, + 1034, + 297, + 1034 + ], + "score": 0.737 + }, + { + "category_id": 1, + "poly": [ + 288, + 1739, + 1399, + 1739, + 1399, + 1806, + 288, + 1806 + ], + "score": 0.734 + }, + { + "category_id": 1, + "poly": [ + 297, + 1254, + 1405, + 1254, + 1405, + 1350, + 297, + 1350 + ], + "score": 0.725 + }, + { + "category_id": 1, + "poly": [ + 297, + 793, + 1406, + 793, + 1406, + 920, + 297, + 920 + ], + "score": 0.683 + }, + { + "category_id": 1, + "poly": [ + 300, + 1825, + 1399, + 1825, + 1399, + 1920, + 300, + 1920 + ], + "score": 0.678 + }, + { + "category_id": 1, + "poly": [ + 293, + 1054, + 1401, + 1054, + 1401, + 1121, + 293, + 1121 + ], + "score": 0.67 + }, + { + "category_id": 1, + "poly": [ + 296, + 593, + 1406, + 593, + 1406, + 689, + 296, + 689 + ], + "score": 0.619 + }, + { + "category_id": 1, + "poly": [ + 297, + 363, + 1399, + 363, + 1399, + 458, + 297, + 458 + ], + "score": 0.458 + }, + { + "category_id": 1, + "poly": [ + 300, + 227, + 489, + 227, + 489, + 262, + 300, + 262 + ], + "score": 0.117 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 230.0, + 490.0, + 230.0, + 490.0, + 263.0, + 297.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1538.0, + 1401.0, + 1538.0, + 1401.0, + 1575.0, + 296.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1573.0, + 1181.0, + 1573.0, + 1181.0, + 1603.0, + 324.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1373.0, + 1403.0, + 1373.0, + 1403.0, + 1405.0, + 296.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1402.0, + 1353.0, + 1402.0, + 1353.0, + 1435.0, + 323.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1454.0, + 1404.0, + 1454.0, + 1404.0, + 1491.0, + 295.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1485.0, + 1138.0, + 1485.0, + 1138.0, + 1521.0, + 321.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 480.0, + 1405.0, + 480.0, + 1405.0, + 513.0, + 296.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 509.0, + 1406.0, + 509.0, + 1406.0, + 546.0, + 320.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 538.0, + 408.0, + 538.0, + 408.0, + 579.0, + 319.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 279.0, + 1405.0, + 279.0, + 1405.0, + 315.0, + 295.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 311.0, + 888.0, + 311.0, + 888.0, + 343.0, + 324.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1622.0, + 1405.0, + 1622.0, + 1405.0, + 1661.0, + 295.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1657.0, + 1405.0, + 1657.0, + 1405.0, + 1691.0, + 323.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1684.0, + 392.0, + 1684.0, + 392.0, + 1722.0, + 320.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 709.0, + 1403.0, + 709.0, + 1403.0, + 745.0, + 295.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 741.0, + 1004.0, + 741.0, + 1004.0, + 775.0, + 321.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1937.0, + 1404.0, + 1937.0, + 1404.0, + 1982.0, + 293.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1969.0, + 1406.0, + 1969.0, + 1406.0, + 2011.0, + 320.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 2003.0, + 530.0, + 2003.0, + 530.0, + 2034.0, + 324.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1139.0, + 1405.0, + 1139.0, + 1405.0, + 1178.0, + 295.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1170.0, + 1404.0, + 1170.0, + 1404.0, + 1208.0, + 322.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1201.0, + 1078.0, + 1201.0, + 1078.0, + 1239.0, + 325.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 938.0, + 1404.0, + 938.0, + 1404.0, + 977.0, + 293.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 972.0, + 1404.0, + 972.0, + 1404.0, + 1006.0, + 323.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1001.0, + 696.0, + 1001.0, + 696.0, + 1035.0, + 322.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1737.0, + 1402.0, + 1737.0, + 1402.0, + 1778.0, + 294.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1771.0, + 1190.0, + 1771.0, + 1190.0, + 1806.0, + 321.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1253.0, + 1405.0, + 1253.0, + 1405.0, + 1292.0, + 292.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1282.0, + 1405.0, + 1282.0, + 1405.0, + 1328.0, + 321.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1314.0, + 669.0, + 1314.0, + 669.0, + 1352.0, + 323.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 793.0, + 1404.0, + 793.0, + 1404.0, + 829.0, + 294.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 827.0, + 1404.0, + 827.0, + 1404.0, + 860.0, + 323.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 858.0, + 1403.0, + 858.0, + 1403.0, + 891.0, + 324.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 888.0, + 781.0, + 888.0, + 781.0, + 920.0, + 322.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1825.0, + 1404.0, + 1825.0, + 1404.0, + 1863.0, + 296.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1857.0, + 1403.0, + 1857.0, + 1403.0, + 1893.0, + 322.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1886.0, + 868.0, + 1886.0, + 868.0, + 1924.0, + 325.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1050.0, + 1404.0, + 1050.0, + 1404.0, + 1095.0, + 292.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1086.0, + 1401.0, + 1086.0, + 1401.0, + 1121.0, + 320.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 593.0, + 1403.0, + 593.0, + 1403.0, + 631.0, + 294.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 629.0, + 1403.0, + 629.0, + 1403.0, + 659.0, + 324.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 656.0, + 1341.0, + 656.0, + 1341.0, + 694.0, + 323.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 364.0, + 1404.0, + 364.0, + 1404.0, + 398.0, + 295.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 393.0, + 1404.0, + 393.0, + 1404.0, + 429.0, + 322.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 426.0, + 794.0, + 426.0, + 794.0, + 459.0, + 322.0, + 459.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": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 817, + 75, + 817, + 105, + 299, + 105 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 866, + 2088, + 866, + 2113, + 836, + 2113 + ], + "score": 0.831 + }, + { + "category_id": 1, + "poly": [ + 299, + 1605, + 1403, + 1605, + 1403, + 1700, + 299, + 1700 + ], + "score": 0.645 + }, + { + "category_id": 1, + "poly": [ + 291, + 1524, + 1401, + 1524, + 1401, + 1590, + 291, + 1590 + ], + "score": 0.618 + }, + { + "category_id": 1, + "poly": [ + 292, + 229, + 1400, + 229, + 1400, + 295, + 292, + 295 + ], + "score": 0.614 + }, + { + "category_id": 1, + "poly": [ + 300, + 613, + 1402, + 613, + 1402, + 709, + 300, + 709 + ], + "score": 0.603 + }, + { + "category_id": 1, + "poly": [ + 297, + 1718, + 1402, + 1718, + 1402, + 1812, + 297, + 1812 + ], + "score": 0.6 + }, + { + "category_id": 1, + "poly": [ + 295, + 724, + 1403, + 724, + 1403, + 789, + 295, + 789 + ], + "score": 0.597 + }, + { + "category_id": 1, + "poly": [ + 292, + 532, + 1402, + 532, + 1402, + 598, + 292, + 598 + ], + "score": 0.596 + }, + { + "category_id": 1, + "poly": [ + 299, + 805, + 1402, + 805, + 1402, + 902, + 299, + 902 + ], + "score": 0.589 + }, + { + "category_id": 1, + "poly": [ + 292, + 998, + 1402, + 998, + 1402, + 1064, + 292, + 1064 + ], + "score": 0.58 + }, + { + "category_id": 1, + "poly": [ + 298, + 420, + 1402, + 420, + 1402, + 515, + 298, + 515 + ], + "score": 0.577 + }, + { + "category_id": 1, + "poly": [ + 298, + 1079, + 1401, + 1079, + 1401, + 1175, + 298, + 1175 + ], + "score": 0.563 + }, + { + "category_id": 1, + "poly": [ + 296, + 1413, + 1401, + 1413, + 1401, + 1509, + 296, + 1509 + ], + "score": 0.56 + }, + { + "category_id": 1, + "poly": [ + 289, + 917, + 1402, + 917, + 1402, + 982, + 289, + 982 + ], + "score": 0.559 + }, + { + "category_id": 1, + "poly": [ + 297, + 1301, + 1402, + 1301, + 1402, + 1396, + 297, + 1396 + ], + "score": 0.558 + }, + { + "category_id": 1, + "poly": [ + 297, + 1828, + 1401, + 1828, + 1401, + 1923, + 297, + 1923 + ], + "score": 0.552 + }, + { + "category_id": 1, + "poly": [ + 299, + 309, + 1401, + 309, + 1401, + 405, + 299, + 405 + ], + "score": 0.547 + }, + { + "category_id": 1, + "poly": [ + 299, + 1190, + 1398, + 1190, + 1398, + 1287, + 299, + 1287 + ], + "score": 0.542 + }, + { + "category_id": 1, + "poly": [ + 298, + 1942, + 1404, + 1942, + 1404, + 2035, + 298, + 2035 + ], + "score": 0.39 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1603.0, + 1404.0, + 1603.0, + 1404.0, + 1644.0, + 293.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1638.0, + 1405.0, + 1638.0, + 1405.0, + 1672.0, + 323.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1670.0, + 658.0, + 1670.0, + 658.0, + 1701.0, + 320.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1522.0, + 1404.0, + 1522.0, + 1404.0, + 1561.0, + 294.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1556.0, + 855.0, + 1556.0, + 855.0, + 1591.0, + 322.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 231.0, + 1402.0, + 231.0, + 1402.0, + 263.0, + 296.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 261.0, + 1152.0, + 261.0, + 1152.0, + 296.0, + 322.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 611.0, + 1404.0, + 611.0, + 1404.0, + 652.0, + 291.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 644.0, + 1404.0, + 644.0, + 1404.0, + 681.0, + 321.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 676.0, + 813.0, + 676.0, + 813.0, + 710.0, + 323.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1716.0, + 1406.0, + 1716.0, + 1406.0, + 1754.0, + 295.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1749.0, + 1404.0, + 1749.0, + 1404.0, + 1784.0, + 321.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1781.0, + 696.0, + 1781.0, + 696.0, + 1812.0, + 322.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 718.0, + 1407.0, + 718.0, + 1407.0, + 767.0, + 292.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 757.0, + 714.0, + 757.0, + 714.0, + 789.0, + 323.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 533.0, + 1404.0, + 533.0, + 1404.0, + 569.0, + 295.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 564.0, + 1165.0, + 564.0, + 1165.0, + 600.0, + 324.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 807.0, + 1404.0, + 807.0, + 1404.0, + 841.0, + 295.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 840.0, + 1406.0, + 840.0, + 1406.0, + 872.0, + 322.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 867.0, + 1340.0, + 867.0, + 1340.0, + 905.0, + 324.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 995.0, + 1405.0, + 995.0, + 1405.0, + 1036.0, + 292.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1028.0, + 421.0, + 1028.0, + 421.0, + 1063.0, + 321.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 420.0, + 1403.0, + 420.0, + 1403.0, + 458.0, + 294.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 449.0, + 1406.0, + 449.0, + 1406.0, + 492.0, + 321.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 483.0, + 559.0, + 483.0, + 559.0, + 516.0, + 325.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1077.0, + 1402.0, + 1077.0, + 1402.0, + 1118.0, + 293.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1111.0, + 1405.0, + 1111.0, + 1405.0, + 1147.0, + 321.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1144.0, + 1014.0, + 1144.0, + 1014.0, + 1175.0, + 319.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1412.0, + 1403.0, + 1412.0, + 1403.0, + 1450.0, + 292.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1444.0, + 1405.0, + 1444.0, + 1405.0, + 1481.0, + 323.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1476.0, + 859.0, + 1476.0, + 859.0, + 1510.0, + 324.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 916.0, + 1404.0, + 916.0, + 1404.0, + 955.0, + 293.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 948.0, + 989.0, + 948.0, + 989.0, + 982.0, + 322.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1300.0, + 1404.0, + 1300.0, + 1404.0, + 1338.0, + 293.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1335.0, + 1404.0, + 1335.0, + 1404.0, + 1369.0, + 324.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1365.0, + 520.0, + 1365.0, + 520.0, + 1397.0, + 322.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1829.0, + 1403.0, + 1829.0, + 1403.0, + 1863.0, + 295.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1862.0, + 1405.0, + 1862.0, + 1405.0, + 1896.0, + 324.0, + 1896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1891.0, + 657.0, + 1891.0, + 657.0, + 1923.0, + 322.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 307.0, + 1405.0, + 307.0, + 1405.0, + 348.0, + 294.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 342.0, + 1405.0, + 342.0, + 1405.0, + 377.0, + 323.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 372.0, + 879.0, + 372.0, + 879.0, + 406.0, + 323.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1188.0, + 1402.0, + 1188.0, + 1402.0, + 1230.0, + 293.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1223.0, + 1402.0, + 1223.0, + 1402.0, + 1256.0, + 320.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1253.0, + 1199.0, + 1253.0, + 1199.0, + 1286.0, + 319.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1943.0, + 1404.0, + 1943.0, + 1404.0, + 1976.0, + 296.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2008.0, + 322.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 2003.0, + 1027.0, + 2003.0, + 1027.0, + 2037.0, + 326.0, + 2037.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 817, + 75, + 817, + 105, + 300, + 105 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.834 + }, + { + "category_id": 1, + "poly": [ + 294, + 1386, + 1401, + 1386, + 1401, + 1450, + 294, + 1450 + ], + "score": 0.74 + }, + { + "category_id": 1, + "poly": [ + 294, + 1302, + 1402, + 1302, + 1402, + 1368, + 294, + 1368 + ], + "score": 0.692 + }, + { + "category_id": 1, + "poly": [ + 297, + 848, + 1404, + 848, + 1404, + 913, + 297, + 913 + ], + "score": 0.613 + }, + { + "category_id": 1, + "poly": [ + 299, + 931, + 1403, + 931, + 1403, + 1024, + 299, + 1024 + ], + "score": 0.59 + }, + { + "category_id": 1, + "poly": [ + 300, + 228, + 1399, + 228, + 1399, + 324, + 300, + 324 + ], + "score": 0.555 + }, + { + "category_id": 1, + "poly": [ + 301, + 735, + 1400, + 735, + 1400, + 830, + 301, + 830 + ], + "score": 0.529 + }, + { + "category_id": 1, + "poly": [ + 296, + 1158, + 1402, + 1158, + 1402, + 1283, + 296, + 1283 + ], + "score": 0.525 + }, + { + "category_id": 1, + "poly": [ + 296, + 1044, + 1404, + 1044, + 1404, + 1139, + 296, + 1139 + ], + "score": 0.521 + }, + { + "category_id": 1, + "poly": [ + 297, + 651, + 1399, + 651, + 1399, + 717, + 297, + 717 + ], + "score": 0.504 + }, + { + "category_id": 1, + "poly": [ + 301, + 342, + 1401, + 342, + 1401, + 437, + 301, + 437 + ], + "score": 0.432 + }, + { + "category_id": 1, + "poly": [ + 299, + 455, + 1398, + 455, + 1398, + 551, + 299, + 551 + ], + "score": 0.405 + }, + { + "category_id": 1, + "poly": [ + 294, + 568, + 1396, + 568, + 1396, + 634, + 294, + 634 + ], + "score": 0.386 + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1387.0, + 1403.0, + 1387.0, + 1403.0, + 1419.0, + 298.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1417.0, + 1345.0, + 1417.0, + 1345.0, + 1453.0, + 324.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1301.0, + 1403.0, + 1301.0, + 1403.0, + 1341.0, + 294.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1332.0, + 1101.0, + 1332.0, + 1101.0, + 1369.0, + 321.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 844.0, + 1405.0, + 844.0, + 1405.0, + 890.0, + 292.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 879.0, + 1314.0, + 879.0, + 1314.0, + 914.0, + 322.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 927.0, + 1405.0, + 927.0, + 1405.0, + 973.0, + 292.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 962.0, + 1407.0, + 962.0, + 1407.0, + 998.0, + 320.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1002.0, + 342.0, + 1002.0, + 342.0, + 1021.0, + 328.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 1404.0, + 227.0, + 1404.0, + 264.0, + 294.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 261.0, + 1404.0, + 261.0, + 1404.0, + 296.0, + 324.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 287.0, + 931.0, + 287.0, + 931.0, + 328.0, + 324.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 734.0, + 1401.0, + 734.0, + 1401.0, + 774.0, + 295.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 765.0, + 1405.0, + 765.0, + 1405.0, + 804.0, + 321.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 796.0, + 1079.0, + 796.0, + 1079.0, + 834.0, + 325.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1160.0, + 1404.0, + 1160.0, + 1404.0, + 1196.0, + 294.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1191.0, + 1406.0, + 1191.0, + 1406.0, + 1224.0, + 323.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1222.0, + 1404.0, + 1222.0, + 1404.0, + 1257.0, + 320.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1252.0, + 652.0, + 1252.0, + 652.0, + 1285.0, + 323.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1044.0, + 1406.0, + 1044.0, + 1406.0, + 1082.0, + 294.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1077.0, + 1402.0, + 1077.0, + 1402.0, + 1111.0, + 323.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1106.0, + 640.0, + 1106.0, + 640.0, + 1140.0, + 323.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 649.0, + 1404.0, + 649.0, + 1404.0, + 692.0, + 295.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 684.0, + 863.0, + 684.0, + 863.0, + 718.0, + 322.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 344.0, + 1404.0, + 344.0, + 1404.0, + 379.0, + 296.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 375.0, + 1405.0, + 375.0, + 1405.0, + 409.0, + 323.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 405.0, + 1404.0, + 405.0, + 1404.0, + 439.0, + 323.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 455.0, + 1403.0, + 455.0, + 1403.0, + 493.0, + 295.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 487.0, + 1402.0, + 487.0, + 1402.0, + 523.0, + 321.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 518.0, + 960.0, + 518.0, + 960.0, + 552.0, + 326.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 567.0, + 1401.0, + 567.0, + 1401.0, + 605.0, + 294.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 601.0, + 1386.0, + 601.0, + 1386.0, + 637.0, + 323.0, + 637.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 317, + 1210, + 1377, + 1210, + 1377, + 1511, + 317, + 1511 + ], + "score": 0.983, + "html": "
MethodPre-TrainFine-TuneLower is BetterHigher is Better
Abs RelSq RelRMSERMSElogδ <1.25 δ<1.252δ<1.253
BaselineD0.1080.7274.4260.1840.8850.9630.983
ProposedID+S0.1160.8474.7510.1920.8790.9600.981
ID0.1971.3236.1140.2650.7760.9180.966
CS (1/2)D+S0.1090.7374.3890.1850.8840.9620.982
CS (1/2)D0.1040.7164.3220.1800.8930.9640.984
CsD+S0.1070.7414.4070.1830.8830.9630.983
CsD0.1020.6984.3810.1780.8960.9640.984
" + }, + { + "category_id": 1, + "poly": [ + 298, + 876, + 1403, + 876, + 1403, + 1183, + 298, + 1183 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 586, + 1404, + 586, + 1404, + 861, + 298, + 861 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 294, + 1404, + 294, + 1404, + 571, + 298, + 571 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1850, + 1403, + 1850, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.979 + }, + { + "category_id": 0, + "poly": [ + 301, + 1781, + 1259, + 1781, + 1259, + 1817, + 301, + 1817 + ], + "score": 0.9 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.885 + }, + { + "category_id": 0, + "poly": [ + 299, + 226, + 1195, + 226, + 1195, + 262, + 299, + 262 + ], + "score": 0.879 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.844 + }, + { + "category_id": 6, + "poly": [ + 297, + 1534, + 1405, + 1534, + 1405, + 1717, + 297, + 1717 + ], + "score": 0.545 + }, + { + "category_id": 1, + "poly": [ + 297, + 1534, + 1405, + 1534, + 1405, + 1717, + 297, + 1717 + ], + "score": 0.413 + }, + { + "category_id": 13, + "poly": [ + 562, + 937, + 617, + 937, + 617, + 968, + 562, + 968 + ], + "score": 0.89, + "latex": "7 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 663, + 937, + 718, + 937, + 718, + 968, + 663, + 968 + ], + "score": 0.88, + "latex": "\\dot { 7 } 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1178, + 648, + 1235, + 648, + 1235, + 677, + 1178, + 677 + ], + "score": 0.79, + "latex": "\\mathbf { D + S }" + }, + { + "category_id": 13, + "poly": [ + 711, + 1627, + 737, + 1627, + 737, + 1654, + 711, + 1654 + ], + "score": 0.73, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 465, + 1567, + 483, + 1567, + 483, + 1593, + 465, + 1593 + ], + "score": 0.4, + "latex": "I" + }, + { + "category_id": 13, + "poly": [ + 716, + 1596, + 754, + 1596, + 754, + 1624, + 716, + 1624 + ], + "score": 0.33, + "latex": "1 / 2" + }, + { + "category_id": 13, + "poly": [ + 1221, + 1627, + 1240, + 1627, + 1240, + 1654, + 1221, + 1654 + ], + "score": 0.32, + "latex": "s" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1778.0, + 1265.0, + 1778.0, + 1265.0, + 1821.0, + 292.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 223.0, + 1201.0, + 223.0, + 1201.0, + 267.0, + 293.0, + 267.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, + 1533.0, + 1405.0, + 1533.0, + 1405.0, + 1569.0, + 295.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1564.0, + 464.0, + 1564.0, + 464.0, + 1599.0, + 295.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 1564.0, + 1403.0, + 1564.0, + 1403.0, + 1599.0, + 484.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1596.0, + 715.0, + 1596.0, + 715.0, + 1628.0, + 296.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 1596.0, + 1403.0, + 1596.0, + 1403.0, + 1628.0, + 755.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1624.0, + 710.0, + 1624.0, + 710.0, + 1660.0, + 294.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 1624.0, + 1220.0, + 1624.0, + 1220.0, + 1660.0, + 738.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 1624.0, + 1402.0, + 1624.0, + 1402.0, + 1660.0, + 1241.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1652.0, + 1406.0, + 1652.0, + 1406.0, + 1694.0, + 291.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1687.0, + 733.0, + 1687.0, + 733.0, + 1719.0, + 296.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 878.0, + 1402.0, + 878.0, + 1402.0, + 910.0, + 296.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 905.0, + 1403.0, + 905.0, + 1403.0, + 943.0, + 293.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 934.0, + 561.0, + 934.0, + 561.0, + 974.0, + 293.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 934.0, + 662.0, + 934.0, + 662.0, + 974.0, + 618.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 934.0, + 1405.0, + 934.0, + 1405.0, + 974.0, + 719.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 967.0, + 1405.0, + 967.0, + 1405.0, + 1004.0, + 293.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 999.0, + 1400.0, + 999.0, + 1400.0, + 1031.0, + 296.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1031.0, + 1404.0, + 1031.0, + 1404.0, + 1063.0, + 296.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1060.0, + 1404.0, + 1060.0, + 1404.0, + 1092.0, + 294.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1091.0, + 1403.0, + 1091.0, + 1403.0, + 1126.0, + 293.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1119.0, + 1405.0, + 1119.0, + 1405.0, + 1155.0, + 293.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1152.0, + 818.0, + 1152.0, + 818.0, + 1186.0, + 294.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 587.0, + 1404.0, + 587.0, + 1404.0, + 619.0, + 296.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 615.0, + 1405.0, + 615.0, + 1405.0, + 651.0, + 295.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 647.0, + 1177.0, + 647.0, + 1177.0, + 681.0, + 293.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 647.0, + 1405.0, + 647.0, + 1405.0, + 681.0, + 1236.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 679.0, + 1404.0, + 679.0, + 1404.0, + 712.0, + 294.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 709.0, + 1405.0, + 709.0, + 1405.0, + 742.0, + 293.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 738.0, + 1406.0, + 738.0, + 1406.0, + 774.0, + 294.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 766.0, + 1403.0, + 766.0, + 1403.0, + 806.0, + 293.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 800.0, + 1404.0, + 800.0, + 1404.0, + 833.0, + 294.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 833.0, + 495.0, + 833.0, + 495.0, + 862.0, + 296.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 294.0, + 1405.0, + 294.0, + 1405.0, + 329.0, + 296.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 328.0, + 1405.0, + 328.0, + 1405.0, + 361.0, + 296.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 357.0, + 1406.0, + 357.0, + 1406.0, + 391.0, + 292.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 384.0, + 1404.0, + 384.0, + 1404.0, + 423.0, + 293.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 415.0, + 1406.0, + 415.0, + 1406.0, + 453.0, + 293.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 446.0, + 1406.0, + 446.0, + 1406.0, + 485.0, + 292.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 478.0, + 1404.0, + 478.0, + 1404.0, + 511.0, + 296.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 511.0, + 1402.0, + 511.0, + 1402.0, + 544.0, + 296.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 541.0, + 778.0, + 541.0, + 778.0, + 574.0, + 296.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1849.0, + 1405.0, + 1849.0, + 1405.0, + 1885.0, + 294.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1882.0, + 1405.0, + 1882.0, + 1405.0, + 1915.0, + 293.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1910.0, + 1405.0, + 1910.0, + 1405.0, + 1945.0, + 293.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1942.0, + 1406.0, + 1942.0, + 1406.0, + 1977.0, + 292.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1972.0, + 1404.0, + 1972.0, + 1404.0, + 2004.0, + 296.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2000.0, + 1405.0, + 2000.0, + 1405.0, + 2038.0, + 293.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1533.0, + 1405.0, + 1533.0, + 1405.0, + 1569.0, + 295.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1564.0, + 464.0, + 1564.0, + 464.0, + 1599.0, + 295.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 1564.0, + 1403.0, + 1564.0, + 1403.0, + 1599.0, + 484.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1596.0, + 715.0, + 1596.0, + 715.0, + 1628.0, + 296.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 1596.0, + 1403.0, + 1596.0, + 1403.0, + 1628.0, + 755.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1624.0, + 710.0, + 1624.0, + 710.0, + 1660.0, + 294.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 1624.0, + 1220.0, + 1624.0, + 1220.0, + 1660.0, + 738.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 1624.0, + 1402.0, + 1624.0, + 1402.0, + 1660.0, + 1241.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1652.0, + 1406.0, + 1652.0, + 1406.0, + 1694.0, + 291.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1687.0, + 733.0, + 1687.0, + 733.0, + 1719.0, + 296.0, + 1719.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1728, + 1403, + 1728, + 1403, + 2034, + 297, + 2034 + ], + "score": 0.978 + }, + { + "category_id": 3, + "poly": [ + 303, + 1034, + 1395, + 1034, + 1395, + 1539, + 303, + 1539 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 301, + 856, + 1404, + 856, + 1404, + 979, + 301, + 979 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 300, + 229, + 1403, + 229, + 1403, + 384, + 300, + 384 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 371, + 408, + 1403, + 408, + 1403, + 832, + 371, + 832 + ], + "score": 0.961 + }, + { + "category_id": 4, + "poly": [ + 295, + 1561, + 1399, + 1561, + 1399, + 1625, + 295, + 1625 + ], + "score": 0.925 + }, + { + "category_id": 0, + "poly": [ + 299, + 1660, + 986, + 1660, + 986, + 1696, + 299, + 1696 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 837, + 2088, + 864, + 2088, + 864, + 2112, + 837, + 2112 + ], + "score": 0.848 + }, + { + "category_id": 15, + "poly": [ + 683.0, + 1236.0, + 782.0, + 1236.0, + 782.0, + 1283.0, + 683.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1558.0, + 1404.0, + 1558.0, + 1404.0, + 1597.0, + 294.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1593.0, + 950.0, + 1593.0, + 950.0, + 1626.0, + 294.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1655.0, + 990.0, + 1655.0, + 990.0, + 1701.0, + 294.0, + 1701.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": [ + 830.0, + 2086.0, + 868.0, + 2086.0, + 868.0, + 2121.0, + 830.0, + 2121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1727.0, + 1405.0, + 1727.0, + 1405.0, + 1763.0, + 293.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1758.0, + 1404.0, + 1758.0, + 1404.0, + 1793.0, + 293.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1788.0, + 1407.0, + 1788.0, + 1407.0, + 1825.0, + 294.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1820.0, + 1405.0, + 1820.0, + 1405.0, + 1856.0, + 295.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1848.0, + 1407.0, + 1848.0, + 1407.0, + 1889.0, + 292.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1881.0, + 1403.0, + 1881.0, + 1403.0, + 1917.0, + 292.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1910.0, + 1405.0, + 1910.0, + 1405.0, + 1946.0, + 293.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1976.0, + 293.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2008.0, + 291.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 1405.0, + 2003.0, + 1405.0, + 2038.0, + 295.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 855.0, + 1403.0, + 855.0, + 1403.0, + 890.0, + 296.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 888.0, + 1404.0, + 888.0, + 1404.0, + 921.0, + 296.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 918.0, + 1404.0, + 918.0, + 1404.0, + 954.0, + 295.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 948.0, + 739.0, + 948.0, + 739.0, + 983.0, + 295.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 267.0, + 295.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 263.0, + 1404.0, + 263.0, + 1404.0, + 296.0, + 296.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 291.0, + 1405.0, + 291.0, + 1405.0, + 328.0, + 294.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 321.0, + 1405.0, + 321.0, + 1405.0, + 358.0, + 295.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 350.0, + 1236.0, + 350.0, + 1236.0, + 389.0, + 294.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 405.0, + 1405.0, + 405.0, + 1405.0, + 442.0, + 369.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 439.0, + 1403.0, + 439.0, + 1403.0, + 471.0, + 394.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 467.0, + 740.0, + 467.0, + 740.0, + 503.0, + 393.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 508.0, + 1402.0, + 508.0, + 1402.0, + 543.0, + 371.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 537.0, + 1405.0, + 537.0, + 1405.0, + 573.0, + 394.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 570.0, + 1405.0, + 570.0, + 1405.0, + 604.0, + 393.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 601.0, + 1401.0, + 601.0, + 1401.0, + 634.0, + 394.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 631.0, + 630.0, + 631.0, + 630.0, + 664.0, + 394.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 668.0, + 1405.0, + 668.0, + 1405.0, + 707.0, + 369.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 698.0, + 1405.0, + 698.0, + 1405.0, + 736.0, + 394.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 732.0, + 1247.0, + 732.0, + 1247.0, + 767.0, + 393.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 770.0, + 1405.0, + 770.0, + 1405.0, + 807.0, + 369.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 801.0, + 1310.0, + 801.0, + 1310.0, + 838.0, + 394.0, + 838.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 334, + 320, + 1355, + 320, + 1355, + 498, + 334, + 498 + ], + "score": 0.977, + "html": "
MethodAbs RelSq RelRMSERMSElogδ<1.25δ<1.25²δ<1.253
Godard et al. (2018) (R18)0.2121.9187.9580.3230.6740.8980.954
Godard et al. (2018) (R50)0.2102.0178.1110.3280.6970.9030.960
Guizilini et al. (2019) (MR)0.1871.8527.6360.2890.7420.9170.961
Ours (MR)0.1811.5057.2370.2710.7650.9310.969
" + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.843 + }, + { + "category_id": 6, + "poly": [ + 291, + 228, + 1403, + 228, + 1403, + 295, + 291, + 295 + ], + "score": 0.75 + }, + { + "category_id": 6, + "poly": [ + 300, + 520, + 1404, + 520, + 1404, + 644, + 300, + 644 + ], + "score": 0.665 + }, + { + "category_id": 1, + "poly": [ + 300, + 520, + 1404, + 520, + 1404, + 644, + 300, + 644 + ], + "score": 0.419 + }, + { + "category_id": 1, + "poly": [ + 291, + 228, + 1403, + 228, + 1403, + 295, + 291, + 295 + ], + "score": 0.184 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2122.0, + 832.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 225.0, + 1405.0, + 225.0, + 1405.0, + 267.0, + 293.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 260.0, + 1218.0, + 260.0, + 1218.0, + 295.0, + 294.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 515.0, + 1405.0, + 515.0, + 1405.0, + 555.0, + 293.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 550.0, + 1403.0, + 550.0, + 1403.0, + 583.0, + 295.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 581.0, + 1405.0, + 581.0, + 1405.0, + 615.0, + 294.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 610.0, + 1102.0, + 610.0, + 1102.0, + 649.0, + 294.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 515.0, + 1405.0, + 515.0, + 1405.0, + 555.0, + 293.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 550.0, + 1403.0, + 550.0, + 1403.0, + 583.0, + 295.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 581.0, + 1405.0, + 581.0, + 1405.0, + 615.0, + 294.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 610.0, + 1102.0, + 610.0, + 1102.0, + 649.0, + 294.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 225.0, + 1405.0, + 225.0, + 1405.0, + 267.0, + 293.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 260.0, + 1218.0, + 260.0, + 1218.0, + 295.0, + 294.0, + 295.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/HkL7n1-0b/HkL7n1-0b.md b/parse/train/HkL7n1-0b/HkL7n1-0b.md new file mode 100644 index 0000000000000000000000000000000000000000..5d105d997204ebdf04bdefb7c7f94dab7ec6798c --- /dev/null +++ b/parse/train/HkL7n1-0b/HkL7n1-0b.md @@ -0,0 +1,402 @@ +# WASSERSTEIN AUTO-ENCODERS + +Ilya Tolstikhin MPI for Intelligent Systems Tubingen, Germany ¨ ilya@tue.mpg.de + +Olivier Bousquet +Google Brain +Zurich, Switzerland ¨ +obousquet@google.com +Sylvain Gelly +Google Brain +Zurich, Switzerland¨ +sylvaingelly@google.com + +Bernhard Scholkopf ¨ MPI for Intelligent Systems Tubingen, Germany ¨ bs@tue.mpg.de + +# ABSTRACT + +We propose the Wasserstein Auto-Encoder (WAE)—a new algorithm for building a generative model of the data distribution. WAE minimizes a penalized form of the Wasserstein distance between the model distribution and the target distribution, which leads to a different regularizer than the one used by the Variational Auto-Encoder (VAE) (Kingma & Welling, 2014). This regularizer encourages the encoded training distribution to match the prior. We compare our algorithm with several other techniques and show that it is a generalization of adversarial auto-encoders (AAE) (Makhzani et al., 2016). Our experiments show that WAE shares many of the properties of VAEs (stable training, encoder-decoder architecture, nice latent manifold structure) while generating samples of better quality, as measured by the FID score. + +# 1 INTRODUCTION + +The field of representation learning was initially driven by supervised approaches, with impressive results using large labelled datasets. Unsupervised generative modeling, in contrast, used to be a domain governed by probabilistic approaches focusing on low-dimensional data. Recent years have seen a convergence of those two approaches. In the new field that formed at the intersection, variational auto-encoders (VAEs) (Kingma & Welling, 2014) constitute one well-established approach, theoretically elegant yet with the drawback that they tend to generate blurry samples when applied to natural images. In contrast, generative adversarial networks (GANs) (Goodfellow et al., 2014) turned out to be more impressive in terms of the visual quality of images sampled from the model, but come without an encoder, have been reported harder to train, and suffer from the “mode collapse” problem where the resulting model is unable to capture all the variability in the true data distribution. There has been a flurry of activity in assaying numerous configurations of GANs as well as combinations of VAEs and GANs. A unifying framework combining the best of GANs and VAEs in a principled way is yet to be discovered. + +This work builds up on the theoretical analysis presented in Bousquet et al. (2017). Following Arjovsky et al. (2017); Bousquet et al. (2017), we approach generative modeling from the optimal transport (OT) point of view. The OT cost (Villani, 2003) is a way to measure a distance between probability distributions and provides a much weaker topology than many others, including $f$ -divergences associated with the original GAN algorithms (Nowozin et al., 2016). This is particularly important in applications, where data is usually supported on low dimensional manifolds in the input space $\mathcal { X }$ . As a result, stronger notions of distances (such as $f$ -divergences, which capture the density ratio between distributions) often max out, providing no useful gradients for training. In contrast, OT was claimed to have a nicer behaviour (Arjovsky et al., 2017; Gulrajani et al., 2017) although it requires, in its GAN-like implementation, the addition of a constraint or a regularization term into the objective. + +![](images/dfbfcc5b3c4f8ecaf5bcf4d077a22aa437f7aa7791df942b76efddc7ab3c527b.jpg) +Figure 1: Both VAE and WAE minimize two terms: the reconstruction cost and the regularizer penalizing discrepancy between $P _ { Z }$ and distribution induced by the encoder $Q$ . VAE forces $Q ( Z | X = x )$ to match $P _ { Z }$ for all the different input examples $x$ drawn from $P _ { X }$ . This is illustrated on picture (a), where every single red ball is forced to match $P _ { Z }$ depicted as the white shape. Red balls start intersecting, which leads to problems with reconstruction. In contrast, WAE forces the continuous mixture $\begin{array} { r } { \dot { Q _ { Z } } : = \int Q ( Z | X ) \dot { d } P _ { X } } \end{array}$ to match $P _ { Z }$ , as depicted with the green ball in picture (b). As a result latent codes of different examples get a chance to stay far away from each other, promoting a better reconstruction. + +In this work we aim at minimizing OT $W _ { c } ( P _ { X } , P _ { G } )$ between the true (but unknown) data distribution $P _ { X }$ and a latent variable model $P _ { G }$ specified by the prior distribution $P _ { Z }$ of latent codes $Z \in { \mathcal { Z } }$ and the generative model $P _ { G } ( X | Z )$ of the data points $X \in { \mathcal { X } }$ given $Z$ . Our main contributions are listed below (cf. also Figure 1): + +• A new family of regularized auto-encoders (Algorithms 1, 2 and Eq. 4), which we call Wasserstein Auto-Encoders (WAE), that minimize the optimal transport $W _ { c } ( P _ { X } , P _ { G } )$ for any cost function $c$ . Similarly to VAE, the objective of WAE is composed of two terms: the $c$ -reconstruction cost and a regularizer $\mathcal { D } _ { Z } ( P _ { Z } , Q _ { Z } )$ penalizing a discrepancy between two distributions in $\mathcal { Z }$ : $P _ { Z }$ and a distribution of encoded data points, i.e. $Q _ { Z } \backslash = \dot { \mathbb { E } } _ { P _ { X } } [ Q ( Z | X ) ]$ . When $c$ is the squared cost and $\mathcal { D } _ { Z }$ is the GAN objective, WAE coincides with adversarial auto-encoders of Makhzani et al. (2016). Empirical evaluation of WAE on MNIST and CelebA datasets with squared cost $c ( x , y ) =$ $\| x - y \| _ { 2 } ^ { 2 }$ . Our experiments show that WAE keeps the good properties of VAEs (stable training, encoder-decoder architecture, and a nice latent manifold structure) while generating samples of better quality, approaching those of GANs. +• We propose and examine two different regularizers $\mathcal { D } _ { Z } ( P _ { Z } , Q _ { Z } )$ . One is based on GANs and adversarial training in the latent space $\mathcal { Z }$ . The other uses the maximum mean discrepancy, which is known to perform well when matching high-dimensional standard normal distributions $P _ { Z }$ (Gretton et al., 2012). Importantly, the second option leads to a fully adversary-free min-min optimization problem. +• Finally, the theoretical considerations presented in Bousquet et al. (2017) and used here to derive the WAE objective might be interesting in their own right. In particular, Theorem 1 shows that in the case of generative models, the primal form of $W _ { c } ( P _ { X } , P _ { G } )$ is equivalent to a problem involving the optimization of a probabilistic encoder $Q ( Z | X )$ . + +The paper is structured as follows. In Section 2 we review a novel auto-encoder formulation for OT between $P _ { X }$ and the latent variable model $P _ { G }$ derived in Bousquet et al. (2017). Relaxing the resulting constrained optimization problem we arrive at an objective of Wasserstein auto-encoders. We propose two different regularizers, leading to WAE-GAN and WAE-MMD algorithms. Section 3 discusses the related work. We present the experimental results in Section 4 and conclude by pointing out some promising directions for future work. + +# 2 PROPOSED METHOD + +Our new method minimizes the optimal transport cost $W _ { c } ( P _ { X } , P _ { G } )$ based on the novel auto-encoder formulation (see Theorem 1 below). In the resulting optimization problem the decoder tries to accurately reconstruct the encoded training examples as measured by the cost function $c$ . The encoder tries to simultaneously achieve two conflicting goals: it tries to match the encoded distribution of training examples ${ \dot { Q } } _ { Z } : = \mathbb { E } _ { P _ { X } } [ Q ( Z | X ) ]$ to the prior $P _ { Z }$ as measured by any specified divergence $\mathcal { D } _ { Z } ( Q _ { Z } , P _ { Z } )$ , while making sure that the latent codes provided to the decoder are informative enough to reconstruct the encoded training examples. This is schematically depicted on Fig. 1. + +# 2.1 PRELIMINARIES AND NOTATIONS + +We use calligraphic letters (i.e. $\mathcal { X } )$ for sets, capital letters (i.e. $X )$ for random variables, and lower case letters (i.e. $x _ { \mathrm { . } }$ ) for their values. We denote probability distributions with capital letters (i.e. $P ( X ) )$ and corresponding densities with lower case letters (i.e. $p ( x ) )$ ). In this work we will consider several measures of discrepancy between probability distributions $P _ { X }$ and $P _ { G }$ . The class of $f$ -d e & Miescke, 2008) is defined b $\begin{array} { r } { D _ { f } ( P _ { X } \| P _ { G } ) : = \int f \big ( \frac { p _ { X } ( x ) } { p _ { G } ( x ) } \big ) p _ { G } ( x ) d x } \end{array}$ $f \colon ( 0 , \infty ) \to { \mathcal { R } }$ $f ( 1 ) = 0$ +Kullback-Leibler $D _ { \mathrm { K L } }$ and Jensen-Shannon $D _ { \mathrm { J S } }$ divergences. + +# 2.2 OPTIMAL TRANSPORT AND ITS DUAL FORMULATIONS + +A rich class of divergences between probability distributions is induced by the optimal transport (OT) problem (Villani, 2003). Kantorovich’s formulation of the problem is given by + +$$ +W _ { c } ( P _ { X } , P _ { G } ) : = \operatorname* { i n f } _ { \Gamma \in { \mathcal { P } } ( X \sim P _ { X } , Y \sim P _ { G } ) } \mathbb { E } _ { ( X , Y ) \sim \Gamma } [ c ( X , Y ) ] , +$$ + +where $c ( x , y ) \colon \mathcal { X } \times \mathcal { X } \to \mathcal { R } _ { + }$ is any measurable cost function and ${ \mathcal { P } } ( X \sim P _ { X } , Y \sim P _ { G } )$ is a set of all joint distributions of $( X , Y )$ with marginals $P _ { X }$ and $P _ { G }$ respectively. A particularly interesting case is when $( \mathcal { X } , d )$ is a metric space and $c ( x , y ) = d ^ { p } ( x , y )$ for $p \geq 1$ . In this case $W _ { p }$ , the $p$ -th root of $W _ { c }$ , is called the $p$ -Wasserstein distance. + +When $c ( x , y ) = d ( x , y )$ the following Kantorovich-Rubinstein duality holds1: + +$$ +W _ { 1 } ( P _ { X } , P _ { G } ) = \operatorname* { s u p } _ { f \in { \mathcal { F } } _ { L } } \mathbb { E } _ { X \sim P _ { X } } [ f ( X ) ] - \mathbb { E } _ { Y \sim P _ { G } } [ f ( Y ) ] , +$$ + +where $\mathcal { F } _ { L }$ is the class of all bounded 1-Lipschitz functions on $( \mathcal { X } , d )$ + +# 2.3 APPLICATION TO GENERATIVE MODELS: WASSERSTEIN AUTO-ENCODERS + +One way to look at modern generative models like VAEs and GANs is to postulate that they are trying to minimize certain discrepancy measures between the data distribution $P _ { X }$ and the model $P _ { G }$ . Unfortunately, most of the standard divergences known in the literature, including those listed above, are hard or even impossible to compute, especially when $P _ { X }$ is unknown and $P _ { G }$ is parametrized by deep neural networks. Previous research provides several tricks to address this issue. + +In case of minimizing the KL-divergence $D _ { \mathrm { K L } } ( P _ { X } , P _ { G } )$ , or equivalently maximizing the marginal log-likelihood $E _ { P _ { X } } [ \bar { \log { p _ { G } ( X ) } } ]$ , the famous variational lower bound provides a theoretically grounded framework successfully employed by VAEs (Kingma & Welling, 2014; Mescheder et al., 2017). More generally, if the goal is to minimize the $f$ -divergence $D _ { f } ( P _ { X } , P _ { G } )$ (with one example being $D _ { \mathrm { K L } } ,$ ), one can resort to its dual formulation and make use of $f$ -GANs and the adversarial training (Nowozin et al., 2016). Finally, OT cost $W _ { c } ( P _ { X } , P _ { G } )$ is yet another option, which can be, thanks to the celebrated Kantorovich-Rubinstein duality (2), expressed as an adversarial objective as implemented by the Wasserstein-GAN (Arjovsky et al., 2017). We include an extended review of all these methods in Supplementary A. + +In this work we will focus on latent variable models $P _ { G }$ defined by a two-step procedure, where first a code $Z$ is sampled from a fixed distribution $P _ { Z }$ on a latent space $\mathcal { Z }$ and then $Z$ is mapped to the image $X \in \mathcal { X } \overset { = } { = } \mathcal { R } ^ { d }$ with a (possibly random) transformation. This results in a density of the form + +$$ +p _ { G } ( x ) : = \int _ { \mathcal { Z } } p _ { G } ( x | \boldsymbol { z } ) p _ { z } ( \boldsymbol { z } ) d \boldsymbol { z } , \quad \forall \boldsymbol { x } \in \mathcal { X } , +$$ + +assuming all involved densities are properly defined. For simplicity we will focus on non-random decoders, i.e. generative models $P _ { G } ( X | Z )$ deterministically mapping $Z$ to $X = G ( Z )$ for a given map $G \colon { \mathcal { Z } } \to { \mathcal { X } }$ . Similar results for random decoders can be found in Supplementary B.1. + +It turns out that under this model, the OT cost takes a simpler form as the transportation plan factors through the map $G$ : instead of finding a coupling $\Gamma$ in (1) between two random variables living in the $\mathcal { X }$ space, one distributed according to $P _ { X }$ and the other one according to $P _ { G }$ , it is sufficient to find a conditional distribution $Q ( Z | X )$ such that its $Z$ marginal $Q _ { Z } ( Z ) \setminus : = \mathbb { E } _ { X \sim P _ { X } } \left[ Q ( Z | X ) \right]$ is identical to the prior distribution $P _ { Z }$ . This is the content of the theorem below proved in Bousquet et al. (2017). To make this paper self contained we repeat the proof in Supplementary B. + +Theorem 1 For $P _ { G }$ as defined above with deterministic $P _ { G } ( X | Z )$ and any function $G \colon { \mathcal { Z } } \to { \mathcal { X } }$ + +$$ +\operatorname* { i n f } _ { \substack { \Gamma \in \mathcal { P } ( X \sim P _ { X } , Y \sim P _ { G } ) } } \mathbb { E } _ { ( X , Y ) \sim \Gamma } \left[ c \big ( X , Y \big ) \right] = \operatorname* { i n f } _ { Q \colon Q z = P _ { Z } } \mathbb { E } _ { P _ { X } } \mathbb { E } _ { Q ( Z | X ) } \left[ c \big ( X , G ( Z ) \big ) \right] , +$$ + +where $Q _ { Z }$ is the marginal distribution of $Z$ when $X \sim P _ { X }$ and $Z \sim Q ( Z | X )$ + +This result allows us to optimize over random encoders $Q ( Z | X )$ instead of optimizing over all couplings between $X$ and $Y$ . Of course, both problems are still constrained. In order to implement a numerical solution we relax the constraints on $Q _ { Z }$ by adding a penalty to the objective. This finally leads us to the WAE objective: + +$$ +D _ { \mathrm { W A E } } ( P _ { X } , P _ { G } ) : = \operatorname* { i n f } _ { Q ( Z | X ) \in \mathcal { Q } } \mathbb { E } _ { P _ { X } } \mathbb { E } _ { Q ( Z | X ) } \left[ c \bigl ( X , G ( Z ) \bigr ) \right] + \lambda \cdot \mathcal { D } _ { Z } ( Q _ { Z } , P _ { Z } ) , +$$ + +where $\mathcal { Q }$ is any nonparametric set of probabilistic encoders, $\mathcal { D } _ { Z }$ is an arbitrary divergence between $Q _ { Z }$ and $P _ { Z }$ , and $\lambda > 0$ is a hyperparameter. Similarly to VAE, we propose to use deep neural networks to parametrize both encoders $Q$ and decoders $G$ . Note that as opposed to VAEs, the WAE formulation allows for non-random encoders deterministically mapping inputs to their latent codes. + +We propose two different penalties $\mathcal { D } _ { Z } ( Q _ { Z } , P _ { Z } )$ + +GAN-based $\mathcal { D } _ { Z }$ . The first option is to choose $\mathcal { D } _ { Z } ( Q _ { Z } , P _ { Z } ) = D _ { \mathrm { J S } } ( Q _ { Z } , P _ { Z } )$ and use the adversarial training to estimate it. Specifically, we introduce an adversary (discriminator) in the latent space $\mathcal { Z }$ trying to separate2 “true” points sampled from $P _ { Z }$ and “fake” ones sampled from $Q _ { Z }$ (Goodfellow et al., 2014). This results in the WAE-GAN described in Algorithm 1. Even though WAE-GAN falls back to the min-max problem, we move the adversary from the input (pixel) space $\mathcal { X }$ to the latent space $\mathcal { Z }$ . On top of that, $P _ { Z }$ may have a nice shape with a single mode (for a Gaussian prior), in which case the task should be easier than matching an unknown, complex, and possibly multi-modal distributions as usually done in GANs. This is also a reason for our second penalty: + +MMD-based $\mathcal { D } _ { Z }$ . For a positive-definite reproducing kernel $k \colon \mathcal { Z } \times \mathcal { Z } \mathcal { R }$ the following expression is called the maximum mean discrepancy (MMD): + +$$ +\mathrm { M M D } _ { k } ( P _ { Z } , Q _ { Z } ) = \big \lVert \int _ { \mathcal { Z } } k ( z , \cdot ) d P _ { Z } ( z ) - \int _ { \mathcal { Z } } k ( z , \cdot ) d Q _ { Z } ( z ) \big \rVert _ { \mathcal { H } _ { k } } , +$$ + +where $\mathcal { H } _ { k }$ is the RKHS of real-valued functions mapping $\mathcal { Z }$ to $\mathcal { R }$ . If $k$ is characteristic then ${ \mathrm { M M D } } _ { k }$ defines a metric and can be used as a divergence measure. We propose to use $\mathcal { D } _ { Z } ( P _ { Z } , Q _ { Z } ) =$ $\mathrm { M M D } _ { k } ( P _ { Z } , Q _ { Z } )$ . Fortunately, MMD has an unbiased U-statistic estimator, which can be used in conjunction with stochastic gradient descent (SGD) methods. This results in the WAE-MMD described in Algorithm 2. It is well known that the maximum mean discrepancy performs well when matching high-dimensional standard normal distributions (Gretton et al., 2012) so we expect this penalty to work especially well working with the Gaussian prior $P _ { Z }$ . + +
ALGORITHM1Wasserstein Auto-Encoder with GAN-based penalty (WAE-GAN).ALGORITHM 2Wasserstein Auto-Encoder withMMD-based penalty (WAE-MMD).
Require:Regularization coefficient 入>0. Initialize the parameters of the encoder Q, decoder Gθ,and latent discriminator Dy. while(,θ) not converged do Sample {x1,...,xn} from the training set Sample {z1,...,zn} from the prior PzRequire:Regularization coefficient入> O,char- acteristic positive-definite kernel k. Initialize the parameters of the encoder Q𝜙, decoder Gθ,and latent discriminator D. while (,0) not converged do
Sample zi from Q(Z|xi) fori=1,...,n Update D, by ascending:Sample {x1,...,xn} from the training set Sample {z1,..., zn} from the prior Pz Sample z from Q(Z|xi) fori=1,...,n
入 n ? logDγ(zi)+log(1-Dγ(i)) n i=1Update Q and Ge by descending: 1 n 入
Update Q and Ge by descending: 1 n c(xi,Ge(zi))-λ·logDγ(zi) nc(xi,Gθ(zi)) > k(ze,zj) n(n-1) n i=1 +j
i=1 end while入 2入 > k(2e,) + > k(ze,2j) n
n(n-1) l≠j e,j
+ +We point out once again that the encoders $Q _ { \phi } ( Z | x )$ in Algorithms 1 and 2 can be non-random, i.e. deterministically mapping input points to the latent codes. In this case $Q _ { \phi } ( Z | x ) = \delta _ { \mu _ { \phi } ( x ) }$ fo r a function $\mu _ { \phi } \colon \mathcal { X } \to \mathcal { Z }$ and in order to sample $\tilde { z } _ { i }$ from $Q _ { \phi } ( Z | x _ { i } )$ we just need to return $\mu _ { \phi } ( x _ { i } )$ . + +# 3 RELATED WORK + +Literature on auto-encoders Classical unregularized auto-encoders minimize only the reconstruction cost. This results in different training points being encoded into non-overlapping zones chaotically scattered all across the $\mathcal { Z }$ space with “holes” in between where the decoder mapping $P _ { G } ( X | Z )$ has never been trained. Overall, the encoder $Q ( Z | X )$ trained in this way does not provide a useful representation and sampling from the latent space $\mathcal { Z }$ becomes hard (Bengio et al., 2013). + +Variational auto-encoders (Kingma & Welling, 2014) minimize a variational bound on the KLdivergence $D _ { \mathrm { K L } } ( P _ { X } , P _ { G } )$ which is composed of the reconstruction cost plus the regularizer $\mathbb { E } _ { P _ { X } } \left[ D _ { \mathrm { K L } } ( Q ( Z | X ) , P _ { Z } ) \right]$ . The regularizer captures how distinct the image by the encoder of each training example is from the prior $P _ { Z }$ , which is not guaranteeing that the overall encoded distribution $\mathbb { E } _ { P _ { X } }$ $\mathinner { \langle { Q \mathopen { \left( Z \vert X \right) } } \rvert }$ matches $P _ { Z }$ like WAE does. Also, VAEs require non-degenerate (i.e. nondeterministic) Gaussian encoders and random decoders for which the term $\log p _ { G } ( x | z )$ can be computed and differentiated with respect to the parameters. Later Mescheder et al. (2017) proposed a way to use VAE with non-Gaussian encoders. WAE minimizes the optimal transport $W _ { c } ( P _ { X } , P _ { G } )$ and allows both probabilistic and deterministic encoder-decoder pairs of any kind. + +The VAE regularizer can be also equivalently written (Hoffman & Johnson, 2016) as a sum of $D _ { \mathrm { K L } } ( Q _ { Z } , P _ { Z } )$ and a mutual information $\mathbb { I } _ { Q } ( X , Z )$ between the images $X$ and latent codes $Z$ jointly distributed according to $P _ { X } \times Q ( Z | X )$ . This observation provides another intuitive way to explain a difference between our algorithm and VAEs: WAEs simply drop the mutual information term $\mathbb { I } _ { Q } ( X , Z )$ in the VAE regularizer. + +When used with $c ( x , y ) = \| x - y \| _ { 2 } ^ { 2 }$ WAE-GAN is equivalent to adversarial auto-encoders (AAE) proposed by Makhzani et al. (2016). Theory of Bousquet et al. (2017) (and in particular Theorem 1) thus suggests that AAEs minimize the 2-Wasserstein distance between $P _ { X }$ and $P _ { G }$ . This provides the first theoretical justification for AAEs known to the authors. WAE generalizes AAE in two ways: first, it can use any cost function $c$ in the input space $\mathcal { X }$ ; second, it can use any discrepancy measure $\mathcal { D } _ { Z }$ in the latent space $\mathcal { Z }$ (for instance MMD), not necessarily the adversarial one of WAE-GAN. + +Finally, Zhao et al. (2017b) independently proposed a regularized auto-encoder objective similar to Bousquet et al. (2017) and our (4) based on very different motivations and arguments. Following + +VAEs their objective (called InfoVAE) defines the reconstruction cost in the image space implicitly through the negative log likelihood term $- \log p _ { G } ( x | z )$ , which should be properly normalized for all $z \in { \mathcal { Z } }$ . In theory VAE and InfoVAE can both induce arbitrary cost functions, however in practice this may require an estimation of the normalizing constant (partition function) which can3 be different for different values of $z$ . WAEs specify the cost $c ( x , y )$ explicitly and don’t constrain it in any way. + +Literature on OT Genevay et al. (2016) address computing the OT cost in large scale using SGD and sampling. They approach this task either through the dual formulation, or via a regularized version of the primal. They do not discuss any implications for generative modeling. Our approach is based on the primal form of OT, we arrive at regularizers which are very different, and our main focus is on generative modeling. + +The WGAN (Arjovsky et al., 2017) minimizes the 1-Wasserstein distance $W _ { 1 } ( P _ { X } , P _ { G } )$ for generative modeling. The authors approach this task from the dual form. Their algorithm comes without an encoder and can not be readily applied to any other cost $W _ { c }$ , because the neat form of the Kantorovich-Rubinstein duality (2) holds only for $W _ { 1 }$ . WAE approaches the same problem from the primal form, can be applied for any cost function $c$ , and comes naturally with an encoder. + +In order to compute the values (1) or (2) of OT we need to handle non-trivial constraints, either on the coupling distribution $\Gamma$ or on the function $f$ being considered. Various approaches have been proposed in the literature to circumvent this difficulty. For $W _ { 1 }$ Arjovsky et al. (2017) tried to implement the constraint in the dual formulation (2) by clipping the weights of the neural network $f$ . Later Gulrajani et al. (2017) proposed to relax the same constraint by penalizing the objective of (2) with a term $\lambda \cdot \mathbb { E } \left( \left\| \nabla f ( X ) \right\| - 1 \right) ^ { 2 }$ which should not be greater than 1 if $f \in \mathcal { F } _ { L }$ . In a more general OT setting of $W _ { c }$ Cuturi (2013) proposed to penalize the objective of (1) with the KLdivergence $\lambda \cdot D _ { \mathrm { K L } } ( \Gamma , P \otimes Q )$ between the coupling distribution and the product of marginals. Genevay et al. (2016) showed that this entropic regularization drops the constraints on functions in the dual formulation as opposed to (2). Finally, in the context of unbalanced optimal transport it has been proposed to relax the constraint in (1) by regularizing the objective with $\lambda \cdot \left( D _ { f } ( \Gamma _ { X } , \mathbf { \bar { \Gamma } } ^ { } P ) + \right.$ $D _ { f } ( \Gamma _ { Y } , Q ) )$ (Chizat et al., 2015; Liero et al., 2015), where $\Gamma _ { X }$ and $\Gamma _ { Y }$ are marginals of $\Gamma$ . In this paper we propose to relax OT in a way similar to the unbalanced optimal transport, i.e. by adding additional divergences to the objective. However, we show that in the particular context of generative modeling, only one extra divergence is necessary. + +Literature on GANs Many of the GAN variations (including $f$ -GAN and WGAN) come without an encoder. Often it may be desirable to reconstruct the latent codes and use the learned manifold, in which cases these models are not applicable. + +There have been many other approaches trying to blend the adversarial training of GANs with autoencoder architectures (Zhao et al., $2 0 1 7 \mathrm { a }$ ; Dumoulin et al., 2017; Ulyanov et al., 2017; Berthelot et al., 2017). The approach proposed by Ulyanov et al. (2017) is perhaps the most relevant to our work. The authors use the discrepancy between $Q _ { Z }$ and the distribution $\mathbb { E } _ { Z ^ { \prime } \sim P _ { Z } } [ Q \left( Z | G ( Z ^ { \prime } ) \right) ]$ of auto-encoded noise vectors as the objective for the max-min game between the encoder and decoder respectively. While the authors showed that the saddle points correspond to $P _ { X } = P _ { G }$ , they admit that encoders and decoders trained in this way have no incentive to be reciprocal. As a workaround they propose to include an additional reconstruction term to the objective. WAE does not necessarily lead to a min-max game, uses a different penalty, and has a clear theoretical foundation. + +Several works used reproducing kernels in context of GANs. Li et al. (2015); Dziugaite et al. (2015) use MMD with a fixed kernel $k$ to match $P _ { X }$ and $P _ { G }$ directly in the input space $\mathcal { X }$ . These methods have been criticised to require larger mini-batches during training: estimating $\mathrm { M M D } _ { k } ( P _ { X } , P _ { G } )$ requires number of samples roughly proportional to the dimensionality of the input space $\mathcal { X }$ (Reddi et al., 2015) which is typically larger than $1 0 ^ { 3 }$ . Li et al. (2017) take a similar approach but further train $k$ adversarially so as to arrive at a meaningful loss function. WAE-MMD uses MMD to match $Q _ { Z }$ to the prior $P _ { Z }$ in the latent space $\mathcal { Z }$ . Typically $\mathcal { Z }$ has no more than 100 dimensions and $P _ { Z }$ is Gaussian, which allows us to use regular mini-batch sizes to accurately estimate MMD. + +![](images/ba6eb123cbe974ac8bc98667fc71d8053d7e708a6c4e49eac087dd03ed3734c6.jpg) +Figure 2: VAE (left column), WAE-MMD (middle column), and WAE-GAN (right column) trained on MNIST dataset. In “test reconstructions” odd rows correspond to the real test points. + +# 4 EXPERIMENTS + +In this section we empirically evaluate4 the proposed WAE model. We would like to test if WAE can simultaneously achieve (i) accurate reconstructions of data points, (ii) reasonable geometry of the latent manifold, and (iii) random samples of good (visual) quality. Importantly, the model should generalize well: requirements (i) and (ii) should be met on both training and test data. We trained WAE-GAN and WAE-MMD (Algorithms 1 and 2) on two real-world datasets: MNIST (LeCun et al., 1998) consisting of $7 0 \mathrm { k }$ images and CelebA (Liu et al., 2015) containing roughly 203k images. + +Experimental setup In all reported experiments we used Euclidian latent spaces $\mathcal { Z } \ = \ \mathcal { R } ^ { d _ { z } }$ for various $d _ { z }$ depending on the complexity of the dataset, isotropic Gaussian prior distributions $P _ { Z } ( Z ) = \mathcal { N } ( Z ; \mathbf { 0 } , \sigma _ { z } ^ { 2 } \cdot I _ { d } )$ over $\mathcal { Z }$ , and a squared cost function $c ( \bar { x } , y ) = \| x - \bar { y } \| _ { 2 } ^ { 2 }$ for data points $x , y \in \mathcal { X } = \mathcal { R } ^ { d _ { x } }$ . We used deterministic encoder-decoder pairs, Adam (Kingma & Lei, 2014) with $\beta _ { 1 } = 0 . 5 , \beta _ { 2 } = 0 . 9 9 9$ , and convolutional deep neural network architectures for encoder mapping $\mu _ { \phi } \colon \mathcal { X } \to \mathcal { Z }$ and decoder mapping $G _ { \theta } \colon { \mathcal { Z } } \to { \mathcal { X } }$ similar to the DCGAN ones reported by Radford et al. (2016) with batch normalization (Ioffe & Szegedy, 2015). We tried various values of $\lambda$ and noticed that $\lambda = 1 0$ seems to work good across all datasets we considered. + +Since we are using deterministic encoders, choosing $d _ { z }$ larger than intrinsic dimensionality of the dataset would force the encoded distribution $Q _ { Z }$ to live on a manifold in $\mathcal { Z }$ . This would make matching $Q _ { Z }$ to $P _ { Z }$ impossible if $P _ { Z }$ is Gaussian and may lead to numerical instabilities. We use $d _ { z } = 8$ for MNIST and $d _ { z } = 6 4$ for CelebA which seems to work reasonably well. + +![](images/5f9154f809ae2eb7b1b03217d0ca3922df4a01f90d50874364f5a3fe74e9b6da.jpg) +Figure 3: VAE (left column), WAE-MMD (middle column), and WAE-GAN (right column) trained on CelebA dataset. In “test reconstructions” odd rows correspond to the real test points. + +We also report results of VAEs. VAEs used the same latent spaces as discussed above and standard Gaussian priors $P _ { Z } = \mathcal { N } ( \mathbf { 0 } , I _ { d } )$ . We used Gaussian encoders $Q ( Z | X ) = \mathcal { N } \big ( Z ; \mu _ { \phi } ( X ) , \Sigma ( X ) \big )$ with mean $\mu _ { \phi }$ and diagonal covariance $\Sigma$ . For both MNIST and CelebA we used Bernoulli decoders parametrized by $G _ { \theta }$ . Functions $\mu _ { \phi } , \Sigma$ , and $G _ { \theta }$ were parametrized by deep nets of the same architectures as used in WAE. + +WAE-GAN and WAE-MMD specifics In WAE-GAN we used discriminator $D$ composed of several fully connected layers with ReLu. We tried WAE-MMD with the RBF kernel but observed that it fails to penalize the outliers of $Q _ { Z }$ because of the quick tail decay. If the codes $\tilde { z } = \mu _ { \phi } ( x )$ for some of the training points $x \in \mathcal { X }$ end up far away from the support of $P _ { Z }$ (which may happen in the early stages of training) the corresponding terms in the U-statistic $k ( z , \tilde { z } ) = e ^ { - \| \tilde { z } - z \| _ { 2 } ^ { 2 } / \sigma _ { k } ^ { 2 } }$ will quickly approach zero and provide no gradient for those outliers. This could be avoided by choosing the kernel bandwidth $\sigma _ { k } ^ { 2 }$ in a data-dependent manner, however in this case per-minibatch U-statistic would not provide an unbiased estimate for the gradient. Instead, we used the inverse multiquadratics kernel $\bar { k } ( x , y ) = C / ( C + \| x - y \| _ { 2 } ^ { 2 } )$ which is also characteristic and has much heavier tails. In all experiments we used $C = 2 d _ { z } \sigma _ { z } ^ { 2 }$ , which is the expected squared distance between two multivariate Gaussian vectors drawn from $P _ { Z }$ . This significantly improved the performance compared to the RBF kernel (even the one with $\sigma _ { k } ^ { 2 } = 2 d _ { z } \sigma _ { z } ^ { 2 }$ ). Trained models are presented in Figures 2 and 3. Further details are presented in Supplementary C. + +Random samples are generated by sampling $P _ { Z }$ and decoding the resulting noise vectors $z$ into $G _ { \theta } ( z )$ . As expected, in our experiments we observed that for both WAE-GAN and WAE-MMD the quality of samples strongly depends on how accurately $Q _ { Z }$ matches $P _ { Z }$ . To see this, notice that during training the decoder function $G _ { \theta }$ is presented only with encoded versions $\mu _ { \phi } ( X )$ of the data points $X \sim P _ { X }$ . Indeed, the decoder is trained on samples from $Q _ { Z }$ and thus there is no reason to expect good results when feeding it with samples from $P _ { Z }$ . In our experiments we noticed that even slight differences between $Q _ { Z }$ and $P _ { Z }$ may affect the quality of samples. In some cases WAE-GAN seems to lead to a better matching and generates better samples than WAE-MMD. However, due to adversarial training WAE-GAN is highly unstable, while WAE-MMD has a very stable training much like VAE. + +In order to quantitatively assess the quality of the generated images, we use the Frechet Inception Distance´ introduced by Heusel et al. (2017) and report the results on CelebA in Table 1. These results confirm that the sampled images from WAE are of better quality than from VAE, and WAE-GAN gets a slightly better score than WAEMMD, which correlates with visual inspection of the images. + +Table 1: FID scores for samples on CelebA (smaller is better). + +
AlgorithmFID
VAE82
WAE-MMD55
WAE-GAN42
+ +Test reconstructions and interpolations. We take random points $x$ from the held out test set and report their auto-encoded versions $G _ { \theta } ( \mu _ { \phi } ( x ) )$ . Next, pairs $( x , y )$ of different data points are sampled randomly from the held out test set and encoded: $z _ { x } = \mu _ { \phi } ( x )$ , $z _ { y } = \mu _ { \phi } ( y )$ . We linearly interpolate between $z _ { x }$ and $z _ { y }$ with equally-sized steps in the latent space and show decoded images. + +# 5 CONCLUSION + +Using the optimal transport cost, we have derived Wasserstein auto-encoders—a new family of algorithms for building generative models. We discussed their relations to other probabilistic modeling techniques. We conducted experiments using two particular implementations of the proposed method, showing that in comparison to VAEs, the images sampled from the trained WAE models are of better quality, without compromising the stability of training and the quality of reconstruction. Future work will include further exploration of the criteria for matching the encoded distribution $Q _ { Z }$ to the prior distribution $P _ { Z }$ , assaying the possibility of adversarially training the cost function $c$ in the input space $\mathcal { X }$ , and a theoretical analysis of the dual formulations for WAE-GAN and WAE-MMD. + +# ACKNOWLEDGMENTS + +The authors are thankful to Carl Johann Simon-Gabriel, Mateo Rojas-Carulla, Arthur Gretton, Paul Rubenstein, and Fei Sha for stimulating discussions. + +# REFERENCES + +M. Arjovsky, S. Chintala, and L. Bottou. Wasserstein GAN, 2017. +Y. Bengio, A. Courville, and P. Vincent. Representation learning: A review and new perspectives. Pattern Analysis and Machine Intelligence, 35, 2013. +D. Berthelot, T. Schumm, and L. Metz. Began: Boundary equilibrium generative adversarial networks, 2017. +O. Bousquet, S. Gelly, I. Tolstikhin, C. J. Simon-Gabriel, and B. Scholkopf. From optimal transport ¨ to generative modeling: the VEGAN cookbook, 2017. +Lenaic Chizat, Gabriel Peyre, Bernhard Schmitzer, and Franc¸ois-Xavier Vialard. Unbalanced opti- ´ mal transport: geometry and kantorovich formulation. arXiv preprint arXiv:1508.05216, 2015. +M. Cuturi. Sinkhorn distances: Lightspeed computation of optimal transport. In Advances in Neural Information Processing Systems, pp. 2292–2300, 2013. +V. Dumoulin, I. Belghazi, B. Poole, A. Lamb, M. Arjovsky, O. Mastropietro, and A. Courville. Adversarially learned inference. In ICLR, 2017. + +G. K. Dziugaite, D. M. Roy, and Z. Ghahramani. Training generative neural networks via maximum mean discrepancy optimization. In UAI, 2015. + +A. Genevay, M. Cuturi, G. Peyre, and F. R. Bach. Stochastic optimization for large-scale optimal ´ transport. In Advances in Neural Information Processing Systems, pp. 3432–3440, 2016. + +Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In NIPS, pp. 2672–2680, 2014. + +A. Gretton, K. M. Borgwardt, M. J. Rasch, B. Scholkopf, and A. J. Smola. A kernel two-sample ¨ test. Journal of Machine Learning Research, 13:723–773, 2012. + +I. Gulrajani, F. Ahmed, M. Arjovsky, V. Domoulin, and A. Courville. Improved training of wasserstein GANs, 2017. + +Martin Heusel, Hubert Ramsauer, Thomas Unterthiner, Bernhard Nessler, Gunter Klambauer, and ¨ Sepp Hochreiter. GANs trained by a two time-scale update rule converge to a nash equilibrium. arXiv preprint arXiv:1706.08500, 2017. + +M. D. Hoffman and M. Johnson. Elbo surgery: yet another way to carve up the variational evidence lower bound. In NIPS Workshop on Advances in Approximate Bayesian Inference, 2016. + +S. Ioffe and C. Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift, 2015. + +D. P. Kingma and J. Lei. Adam: A method for stochastic optimization, 2014. + +D. P. Kingma and M. Welling. Auto-encoding variational Bayes. In ICLR, 2014. + +Y. LeCun, L. Bottou, Y. Bengio, and P. Haffner. Gradient-based learning applied to document recognition. In Proceedings of the IEEE, volume 86(11), pp. 2278–2324, 1998. + +C. L. Li, W. C. Chang, Y. Cheng, Y. Yang, and B. Poczos. Mmd gan: Towards deeper understanding of moment matching network, 2017. + +Y. Li, K. Swersky, and R. Zemel. Generative moment matching networks. In ICML, 2015. + +Matthias Liero, Alexander Mielke, and Giuseppe Savare. Optimal entropy-transport problems and a ´ new hellinger-kantorovich distance between positive measures. arXiv preprint arXiv:1508.07941, 2015. + +F. Liese and K.-J. Miescke. Statistical Decision Theory. Springer, 2008. + +Ziwei Liu, Ping Luo, Xiaogang Wang, and Xiaoou Tang. Deep learning face attributes in the wild. In Proceedings of International Conference on Computer Vision (ICCV), 2015. + +A. Makhzani, J. Shlens, N. Jaitly, and I. Goodfellow. Adversarial autoencoders. In ICLR, 2016. + +L. Mescheder, S. Nowozin, and A. Geiger. Adversarial variational bayes: Unifying variational autoencoders and generative adversarial networks, 2017. + +Sebastian Nowozin, Botond Cseke, and Ryota Tomioka. f-GAN: Training generative neural samplers using variational divergence minimization. In NIPS, 2016. + +B. Poole, A. Alemi, J. Sohl-Dickstein, and A. Angelova. Improved generator objectives for GANs, 2016. + +A. Radford, L. Metz, and S. Chintala. Unsupervised representation learning with deep convolutional generative adversarial networks. In ICLR, 2016. + +R. Reddi, A. Ramdas, A. Singh, B. Poczos, and L. Wasserman. On the high-dimensional power of a linear-time two sample test under mean-shift alternatives. In AISTATS, 2015. + +D. Ulyanov, A. Vedaldi, and V. Lempitsky. It takes (only) two: Adversarial generator-encoder networks, 2017. + +C. Villani. Topics in Optimal Transportation. AMS Graduate Studies in Mathematics, 2003. + +J. Zhao, M. Mathieu, and Y. LeCun. Energy-based generative adversarial network. In ICLR, 2017a. + +S. Zhao, J. Song, and S. Ermon. InfoVAE: Information maximizing variational autoencoders, 2017b. + +# A IMPLICIT GENERATIVE MODELS: A SHORT TOUR OF GANS AND VAES + +Even though GANs and VAEs are quite different—both in terms of the conceptual frameworks and empirical performance—they share important features: (a) both can be trained by sampling from the model $P _ { G }$ without knowing an analytical form of its density and (b) both can be scaled up with SGD. As a result, it becomes possible to use highly flexible implicit models $P _ { G }$ defined by a twostep procedure, where first a code $Z$ is sampled from a fixed distribution $P _ { Z }$ on a latent space $\mathcal { Z }$ and then $Z$ is mapped to the image $G ( Z ) \in \mathcal { X } = \mathcal { R } ^ { d }$ with a (possibly random) transformation $G \colon { \mathcal { Z } } \to { \mathcal { X } }$ . This results in latent variable models $P _ { G }$ of the form (3). + +These models are indeed easy to sample and, provided $G$ can be differentiated analytically with respect to its parameters, $P _ { G }$ can be trained with SGD. The field is growing rapidly and numerous variations of VAEs and GANs are available in the literature. Next we introduce and compare several of them. + +The original generative adversarial network (GAN) Goodfellow et al. (2014) approach minimizes + +$$ +D _ { \mathrm { G A N } } ( P _ { X } , P _ { G } ) = \operatorname* { s u p } _ { T \in { \mathcal T } } \mathbb { E } _ { X \sim P _ { X } } [ \log T ( X ) ] + \mathbb { E } _ { Z \sim P _ { Z } } [ \log \left( 1 - T ( G ( Z ) ) \right) ] +$$ + +with respect to a deterministic decoder $G \colon { \mathcal { Z } } \to { \mathcal { X } }$ , where $\tau$ is any non-parametric class of choice. It is known that $D _ { \mathrm { G A N } } ( P _ { X } , P _ { G } ) \leq 2 \cdot D _ { \mathrm { J S } } ( P _ { X } , P _ { G } ) - \log ( 4 )$ and the inequality turns into identity in the nonparametric limit, that is when the class $\tau$ becomes rich enough to represent all functions mapping $\mathcal { X }$ to $( 0 , 1 )$ . Hence, GANs are minimizing a lower bound on the JS-divergence. However, GANs are not only linked to the JS-divergence: the $f$ -GAN approach Nowozin et al. (2016) showed that a slight modification $D _ { \mathrm { f , G A N } }$ of the objective (5) allows to lower bound any desired $f$ -divergence in a similar way. In practice, both decoder $G$ and discriminator $T$ are trained in alternating SGD steps. Stopping criteria as well as adequate evaluation of the trained GAN models remain open questions. + +Recently, the authors of Arjovsky et al. (2017) argued that the 1-Wasserstein distance $W _ { 1 }$ , which is known to induce a much weaker topology than $D _ { \mathrm { J S } }$ , may be better suited for generative modeling. When $P _ { X }$ and $P _ { G }$ are supported on largely disjoint low-dimensional manifolds (which may be the case in applications), $D _ { \mathrm { K L } } , D _ { \mathrm { J S } }$ , and other strong distances between $P _ { X }$ and $P _ { G }$ max out and no longer provide useful gradients for $P _ { G }$ . This “vanishing gradient” problem necessitates complicated scheduling between the $G / T$ updates. In contrast, $W _ { 1 }$ is still sensible in these cases and provides stable gradients. The Wasserstein GAN (WGAN) minimizes + +$$ +D _ { \mathrm { W G A N } } ( P _ { X } , P _ { G } ) = \operatorname* { s u p } _ { T \in \mathcal { W } } \mathbb { E } _ { X \sim P _ { X } } [ T ( X ) ] - \mathbb { E } _ { Z \sim P _ { Z } } \left[ T ( G ( Z ) ) \right] , +$$ + +where $\mathcal { W }$ is any subset of 1-Lipschitz functions on $\mathcal { X }$ . It follows from (2) that $D _ { \mathrm { W G A N } } ( P _ { X } , P _ { G } ) \leq$ $W _ { 1 } ( P _ { X } , P _ { G } )$ and thus WGAN is minimizing a lower bound on the 1-Wasserstein distance. + +Variational auto-encoders (VAE) Kingma & Welling (2014) utilize models $P _ { G }$ of the form (3) and minimize + +$$ +D _ { \mathrm { V A E } } \big ( P _ { X } , P _ { G } \big ) = \operatorname* { i n f } _ { Q ( Z | X ) \in \mathcal { Q } } \mathbb { E } _ { P _ { X } } \left[ D _ { \mathrm { K L } } \big ( Q ( Z | X ) , P _ { Z } \big ) - \mathbb { E } _ { Q ( Z | X ) } [ \log p _ { G } ( X | Z ) ] \right] +$$ + +with respect to a random decoder mapping $P _ { G } ( X | Z )$ . The conditional distribution $P _ { G } ( X | Z )$ is often parametrized by a deep net $G$ and can have any form as long as its density $p _ { G } ( x | z )$ can be computed and differentiated with respect to the parameters of $G$ . A typical choice is to use Gaussians $P _ { G } ( X | Z ) = \mathcal { N } ( X ; G ( Z ) , \sigma ^ { \hat { 2 } } \cdot I )$ . If $\mathcal { Q }$ is the set of all conditional probability distributions $Q ( Z | X )$ , the objective of VAE coincides with the negative marginal log-likelihood $D _ { \mathrm { V A E } } ( P _ { X } , P _ { G } ) = - \mathbb { E } _ { P _ { X } } [ \log P _ { G } ( X ) ]$ . However, in order to make the $D _ { \mathrm { K L } }$ term of (6) tractable in closed form, the original implementation of VAE uses a standard normal $P _ { Z }$ and restricts $\mathcal { Q }$ to a class of Gaussian distributions $Q ( Z | X ) = { \mathcal { N } } { \big ( } Z ; \mu ( X ) , \Sigma ( X ) { \big ) }$ with mean $\mu$ and diagonal covariance $\Sigma$ parametrized by deep nets. As a consequence, VAE is minimizing an upper bound on the negative log-likelihood or, equivalently, on the KL-divergence $D _ { \mathrm { K L } } ( P _ { X } , P _ { G } )$ . + +One possible way to reduce the gap between the true negative log-likelihood and the upper bound provided by $D _ { \mathrm { V A E } }$ is to enlarge the class $\mathcal { Q }$ . Adversarial variational Bayes (AVB) Mescheder et al. (2017) follows this argument by employing the idea of GANs. Given any point $x \in \mathcal { X }$ , a noise $\epsilon \sim \mathcal { N } ( 0 , 1 )$ , and any fixed transformation $e \colon \mathcal { X } \times \mathcal { R } \mathcal { Z }$ , a random variable $e ( x , \epsilon )$ + +implicitly defines one particular conditional distribution $Q _ { e } ( Z | X = x )$ . AVB allows $\mathcal { Q }$ to contain all such distributions for different choices of $e$ , replaces the intractable term $D _ { \mathrm { K L } } \big ( Q _ { e } ( Z | X ) , P _ { Z } \big )$ in (6) by the adversarial approximation $D _ { \mathrm { f , G A N } }$ corresponding to the KL-divergence, and proposes to minimize5 + +$$ +D _ { \mathrm { A V B } } ( P _ { X } , P _ { G } ) = \operatorname* { i n f } _ { Q _ { \epsilon } ( Z | X ) \in \mathcal { Q } } \mathbb { E } _ { P _ { X } } \left[ D _ { \mathrm { f } , \operatorname { G A N } } \big ( Q _ { e } ( Z | X ) , P _ { Z } \big ) - \mathbb { E } _ { Q _ { \epsilon } ( Z | X ) } [ \log p _ { G } ( X | Z ) ] \right] . +$$ + +The $D _ { \mathrm { K L } }$ term in (6) may be viewed as a regularizer. Indeed, VAE reduces to the classical unregularized auto-encoder if this term is dropped, minimizing the reconstruction cost of the encoder-decoder pair $Q ( Z | X ) , P _ { G } ( X | Z )$ . This often results in different training points being encoded into nonoverlapping zones chaotically scattered all across the $\mathcal { Z }$ space with “holes” in between where the decoder mapping $P _ { G } ( X | Z )$ has never been trained. Overall, the encoder $Q ( Z | X )$ trained in this way does not provide a useful representation and sampling from the latent space $\mathcal { Z }$ becomes hard Bengio et al. (2013). + +Adversarial auto-encoders (AAE) Makhzani et al. (2016) replace the $D _ { \mathrm { K L } }$ term in (6) with another regularizer: + +$$ +D _ { \mathrm { A A E } } ( P _ { X } , P _ { G } ) = \operatorname* { i n f } _ { Q ( Z | X ) \in Q } D _ { \mathrm { G A N } } ( Q _ { Z } , P _ { Z } ) - \mathbb { E } _ { P _ { X } } \mathbb { E } _ { Q ( Z | X ) } [ \log p _ { G } ( X | Z ) ] , +$$ + +where $Q _ { Z }$ is the marginal distribution of $Z$ when first $X$ is sampled from $P _ { X }$ and then $Z$ is sampled from $Q ( Z | X )$ , also known as the aggregated posterior Makhzani et al. (2016). Similarly to AVB, there is no clear link to log-likelihood, as $D _ { \mathrm { A A E } } \leq D _ { \mathrm { A V B } }$ . The authors of Makhzani et al. (2016) argue that matching $Q _ { Z }$ to $P _ { Z }$ in this way ensures that there are no “holes” left in the latent space $\mathcal { Z }$ and $P _ { G } ( X | Z )$ generates reasonable samples whenever $Z \sim P _ { Z }$ . They also report an equally good performance of different types of conditional distributions $Q ( Z | X )$ , including Gaussians as used in VAEs, implicit models $Q _ { e }$ as used in AVB, and deterministic encoder mappings, i.e. $Q ( Z | X ) =$ $\delta _ { \mu ( X ) }$ with $\mu \colon \mathcal X \to \mathcal Z$ . + +# B PROOF OF THEOREM 1 AND FURTHER DETAILS + +We will consider certain sets of joint probability distributions of three random variables $( X , Y , Z ) \in$ $\mathcal { X } \times \mathcal { X } \times \mathcal { Z }$ . The reader may wish to think of $X$ as true images, $Y$ as images sampled from the model, and $Z$ as latent codes. We denote by $P _ { G , Z } ( Y , Z )$ a joint distribution of a variable pair $( Y , Z )$ , where $Z$ is first sampled from $P _ { Z }$ and next $Y$ from $P _ { G } ( Y | Z )$ . Note that $P _ { G }$ defined in (3) and used throughout this work is the marginal distribution of $Y$ when $( Y , Z ) \sim P _ { G , Z }$ . + +In the optimal transport problem (1), we consider joint distributions $\Gamma ( X , Y )$ which are called couplings between values of $X$ and $Y$ . Because of the marginal constraint, we can write $\Gamma ( X , Y ) =$ $\bar { \Gamma } ( \bar { Y ( X ) } P _ { X } ( X )$ and we can consider $\Gamma ( Y | X )$ as a non-deterministic mapping from $X$ to $Y$ . Theorem 1. shows how to factor this mapping through $\mathcal { Z }$ , i.e., decompose it into an encoding distribution $Q ( Z | X )$ and the generating distribution $P _ { G } ( Y | Z )$ . + +As in Section 2.2, $\mathcal { P } ( X \sim P _ { X } , Y \sim P _ { G } )$ denotes the set of all joint distributions of $( X , Y )$ with marginals $P _ { X } , P _ { G }$ , and likewise for $\mathcal { P } ( X \sim P _ { X } , Z \sim P _ { Z } )$ . The set of all joint distributions of $( X , Y , Z )$ such that $X \sim P _ { X }$ , $( Y , Z ) \sim P _ { G , Z }$ , and $( Y \perp \perp X ) | Z$ will be denoted by ${ \mathcal { P } } _ { X , Y , Z }$ . Finally, we denote by $\mathcal { P } _ { X , Y }$ and $\mathcal { P } _ { X , Z }$ the sets of marginals on $( X , Y )$ and $( X , Z )$ (respectively) induced by distributions in ${ \mathcal { P } } _ { X , Y , Z }$ . Note that $\mathcal { P } ( P _ { X } , P _ { G } )$ , ${ \mathcal { P } } _ { X , Y , Z }$ , and $\mathcal { P } _ { X , Y }$ depend on the choice of conditional distributions $P _ { G } ( Y | Z )$ , while $\mathcal { P } _ { X , Z }$ does not. In fact, it is easy to check that $\mathcal { P } _ { X , Z } =$ $\mathcal { P } ( X \sim P _ { X } , Z \sim P _ { Z } )$ . From the definitions it is clear that $\mathcal { P } _ { X , Y } \subseteq \mathcal { P } ( P _ { X } , P _ { G } )$ and we immediately get the following upper bound: + +$$ +W _ { c } ( P _ { X } , P _ { G } ) \leq W _ { c } ^ { \dagger } ( P _ { X } , P _ { G } ) : = \operatorname* { i n f } _ { P \in \mathcal { P } _ { X , Y } } \mathbb { E } _ { ( X , Y ) \sim P } \left[ c ( X , Y ) \right] . +$$ + +If $P _ { G } ( Y | Z )$ are Dirac measures (i.e., $Y = G ( Z ) )$ , it turns out that $\mathcal { P } _ { X , Y } = \mathcal { P } ( P _ { X } , P _ { G } )$ : + +Lemma 1 $\mathcal { P } _ { X , Y } \subseteq \mathcal { P } ( P _ { X } , P _ { G } )$ with identity $i f ^ { 6 } ~ P _ { G } ( Y | Z = z )$ are Dirac for all $z \in { \mathcal { Z } }$ . + +Proof The first assertion is obvious. To prove the identity, note that when $Y$ is a deterministic function of $Z$ , for any $A$ in the sigma-algebra induced by $Y$ we have $\mathbb { E } \left[ \mathbb { 1 } _ { [ Y \in A ] } | X , Z \right] = \mathbb { E } \left[ \mathbb { 1 } _ { [ Y \in A ] } | Z \right]$ . This implies $( Y \perp \perp X ) | Z$ and concludes the proof. + +We are now in place to prove Theorem 1. Lemma 1 obviously leads to + +$$ +W _ { c } ( P _ { X } , P _ { G } ) = W _ { c } ^ { \dagger } ( P _ { X } , P _ { G } ) . +$$ + +The tower rule of expectation, and the conditional independence property of ${ \mathcal { P } } _ { X , Y , Z }$ implies + +$$ +\begin{array} { r l } & { W _ { c } ^ { \dagger } ( P _ { X } , P _ { G } ) = \underset { P \in \mathcal { P } _ { X , Y , Z } } { \operatorname* { i n f } } \mathbb { E } _ { ( X , Y , Z ) \sim P } \left[ c ( X , Y ) \right] } \\ & { \quad \quad \quad = \underset { P \in \mathcal { P } _ { X , Y , Z } } { \operatorname* { i n f } } \mathbb { E } _ { P _ { Z } } \mathbb { E } _ { X \sim P ( X \mid Z ) } \mathbb { E } _ { Y \sim P ( Y \mid Z ) } [ c ( X , Y ) ] } \\ & { \quad \quad \quad = \underset { P \in \mathcal { P } _ { X , Y , Z } } { \operatorname* { i n f } } \mathbb { E } _ { P _ { Z } } \mathbb { E } _ { X \sim P ( X \mid Z ) } \left[ c \left( X , G ( Z ) \right) \right] } \\ & { \quad \quad \quad = \underset { P \in \mathcal { P } _ { X , Z } } { \operatorname* { i n f } } \mathbb { E } _ { ( X , Z ) \sim P } \left[ c \left( X , G ( Z ) \right) \right] . } \end{array} +$$ + +It remains to notice that $\mathcal { P } _ { X , Z } = \mathcal { P } ( X \sim P _ { X } , Z \sim P _ { Z } )$ as stated earlier. + +# B.1 RANDOM DECODERS $P _ { G } ( Y | Z )$ + +If the decoders are non-deterministic, Lemma 1 provides only the inclusion of sets $\mathcal { P } _ { X , Y } \subseteq \mathcal { P } ( P _ { X } , P _ { G } )$ and we get the following upper bound on the OT: + +Corollary 1 Let $\mathcal { X } ~ = ~ \mathcal { R } ^ { d }$ and assume the conditional distributions $P _ { G } ( Y | Z = z )$ have mean values $G ( z ) \in \mathcal { R } ^ { d }$ and marginal variances $\sigma _ { 1 } ^ { 2 } , \ldots , \sigma _ { d } ^ { 2 } \geq 0$ for all $z \in { \mathcal { Z } }$ , where $G \colon { \mathcal { Z } } \to { \mathcal { X } }$ . Take $c ( x , y ) = \| x - y \| _ { 2 } ^ { 2 }$ . Then + +$$ +W _ { c } ( P _ { X } , P _ { G } ) \leq W _ { c } ^ { \dagger } ( P _ { X } , P _ { G } ) = \sum _ { i = 1 } ^ { d } \sigma _ { i } ^ { 2 } + \operatorname* { i n f } _ { P \in \mathcal { P } ( X \setminus P _ { X } , Z \sim P _ { Z } ) } \mathbb { E } _ { ( X , Z ) \sim P } \big [ \| X - G ( Z ) \| ^ { 2 } \big ] . +$$ + +Proof First inequality follows from (9). For the identity we proceed similarly to the proof of Theorem 1 and write + +$$ +W _ { c } ^ { \dagger } ( P _ { X } , P _ { G } ) = \operatorname* { i n f } _ { P \in \mathcal { P } _ { X , Y , Z } } \mathbb { E } _ { P _ { Z } } \mathbb { E } _ { X \sim P ( X \mid Z ) } \mathbb { E } _ { Y \sim P ( Y \mid Z ) } \left[ \left\| X - Y \right\| ^ { 2 } \right] . +$$ + +Note that + +$$ +\begin{array} { l } { \mathbb { E } _ { Y \sim P ( Y \vert Z ) } \big [ \| X - Y \| ^ { 2 } \big ] = \mathbb { E } _ { Y \sim P ( Y \vert Z ) } \big [ \| X - G ( Z ) + G ( Z ) - Y \| ^ { 2 } \big ] } \\ { = \| X - G ( Z ) \| ^ { 2 } + \mathbb { E } _ { Y \sim P ( Y \vert Z ) } \big [ \langle X - G ( Z ) , G ( Z ) - Y \rangle \big ] + \mathbb { E } _ { Y \sim P ( Y \vert Z ) } \| G ( Z ) - Y \| ^ { 2 } } \\ { = \| X - G ( Z ) \| ^ { 2 } + \displaystyle \sum _ { i = 1 } ^ { d } \sigma _ { i } ^ { 2 } . } \end{array} +$$ + +Together with (11) and the fact that $\mathcal { P } _ { X , Z } = \mathcal { P } ( X \sim P _ { X } , Z \sim P _ { Z } )$ this concludes the proof. + +# C FURTHER DETAILS ON EXPERIMENTS + +# C.1 MNIST + +We use mini-batches of size 100 and trained the models for 100 epochs. We used $\lambda = 1 0$ and $\sigma _ { z } ^ { 2 } = 1$ . For the encoder-decoder pair we set $\alpha = 1 0 ^ { - 3 }$ for Adam in the beginning and for the + +adversary in WAE-GAN to $\alpha = 5 \times 1 0 ^ { - 4 }$ . After 30 epochs we decreased both by factor of 2, and after first 50 epochs further by factor of 5. + +Both encoder and decoder used fully convolutional architectures with 4x4 convolutional filters. + +Encoder architecture: + +$$ +\begin{array} { r l } { x \in \mathcal { R } ^ { 2 8 \times 2 8 } \mathrm { C o n v _ { 1 2 8 } } \mathrm { B N } \mathrm { R e L U } } & { } \\ { \mathrm { C o n v _ { 2 5 6 } } \mathrm { B N } \mathrm { R e L U } } & { } \\ { \mathrm { C o n v _ { 5 1 2 } } \mathrm { B N } \mathrm { R e L U } } & { } \\ { \mathrm { C o n v _ { 1 0 2 4 } } \mathrm { B N } \mathrm { R e L U } \mathrm { F C } _ { 8 } } \end{array} +$$ + +Decoder architecture: + +$$ +\begin{array} { r l } & { z \in \mathcal { R } ^ { 8 } \mathrm { F C } _ { 7 \times 7 \times 1 0 2 4 } } \\ & { \qquad \mathrm { F S C o n v } _ { 5 1 2 } \mathrm { B N } \mathrm { R e L U } } \\ & { \qquad \mathrm { F S C o n v } _ { 2 5 6 } \mathrm { B N } \mathrm { R e L U } \mathrm { F S C o n v } _ { 1 } } \end{array} +$$ + +Adversary architecture for WAE-GAN: + +$$ +\begin{array} { r l } & { z \in \mathcal { R } ^ { 8 } \mathrm { F C } _ { 5 1 2 } \mathrm { R e L U } } \\ & { ~ \mathrm { F C } _ { 5 1 2 } \mathrm { R e L U } } \\ & { ~ \mathrm { F C } _ { 5 1 2 } \mathrm { R e L U } } \\ & { ~ \mathrm { F C } _ { 5 1 2 } \mathrm { R e L U } \mathrm { F C } _ { 1 } } \end{array} +$$ + +Here $\operatorname { C o n v } _ { k }$ stands for a convolution with $k$ filters, $\mathrm { F S C o n v } _ { k }$ for the fractional strided convolution with $k$ filters (first two of them were doubling the resolution, the third one kept it constant), BN for the batch normalization, ReLU for the rectified linear units, and $\mathrm { F C } _ { \mathrm { k } }$ for the fully connected layer mapping to $\mathcal { R } ^ { k }$ . All the convolutions in the encoder used vertical and horizontal strides 2 and SAME padding. + +Finally, we used two heuristics. First, we always pretrained separately the encoder for several minibatch steps before the main training stage so that the sample mean and covariance of $Q _ { Z }$ would try to match those of $P _ { Z }$ . Second, while training we were adding a pixel-wise Gaussian noise truncated at 0.01 to all the images before feeding them to the encoder, which was meant to make the encoders random. We played with all possible ways of combining these two heuristics and noticed that together they result in slightly (almost negligibly) better results compared to using only one or none of them. + +Our VAE model used cross-entropy loss (Bernoulli decoder) and otherwise same architectures and hyperparameters as listed above. + +# C.2 CELEBA + +We pre-processed CelebA images by first taking a $1 4 0 \mathrm { x } 1 4 0$ center crops and then resizing to the $6 4 \mathrm { x } 6 4$ resolution. We used mini-batches of size 100 and trained the models for various number of epochs (up to 250). All reported WAE models were trained for 55 epochs and VAE for 68 epochs. For WAE-MMD we used $\lambda = 1 0 0$ and for WAE-GAN $\lambda = 1$ . Both used $\sigma _ { z } ^ { 2 } = 2$ . + +For WAE-MMD the learning rate of Adam was initially set to $\alpha = 1 0 ^ { - 3 }$ . For WAE-GAN the learning rate of Adam for the encoder-decoder pair was initially set to $\alpha = 3 \times 1 0 ^ { - 4 }$ and for the adversary to $1 0 ^ { - 3 }$ . All learning rates were decreased by factor of 2 after 30 epochs, further by factor of 5 after 50 first epochs, and finally additional factor of 10 after 100 first epochs. + +Both encoder and decoder used fully convolutional architectures with $5 \mathrm { x } 5$ convolutional filters. + +Encoder architecture: + +$$ +\begin{array} { r l } & { x \in \mathcal { R } ^ { 6 4 \times 6 4 \times 3 } \to \mathrm { C o n v _ { 1 2 8 } } \to \mathrm { B N } \to \mathrm { R e L U } } \\ & { \qquad \to \mathrm { C o n v _ { 2 5 6 } } \to \mathrm { B N } \to \mathrm { R e L U } } \\ & { \qquad \to \mathrm { C o n v _ { 5 1 2 } } \to \mathrm { B N } \to \mathrm { R e L U } } \\ & { \qquad \to \mathrm { C o n v _ { 1 0 2 4 } } \to \mathrm { B N } \to \mathrm { R e L U } \to \mathrm { F C } _ { 6 4 } } \end{array} +$$ + +Decoder architecture: + +$$ +\begin{array} { r l } { z \in \mathcal { R } ^ { 6 4 } \mathrm { F C } _ { 8 \times 8 \times 1 0 2 4 } } & { } \\ { \mathrm { F S C o n v } _ { 5 1 2 } \mathrm { B N } \mathrm { R e L U } } \\ { \mathrm { F S C o n v } _ { 2 5 6 } \mathrm { B N } \mathrm { R e L U } } & { } \\ { \mathrm { F S C o n v } _ { 1 2 8 } \mathrm { B N } \mathrm { R e L U } \mathrm { F S C o n v } _ { 1 } } \end{array} +$$ + +Adversary architecture for WAE-GAN: + +$$ +\begin{array} { r l } { z \in \mathcal { R } ^ { 6 4 } \to \mathrm { F C } _ { 5 1 2 } \to \mathrm { R e L U } } \\ { \to \mathrm { F C } _ { 5 1 2 } \to \mathrm { R e L U } } \\ { \to \mathrm { F C } _ { 5 1 2 } \to \mathrm { R e L U } } \\ { \to \mathrm { F C } _ { 5 1 2 } \to \mathrm { R e L U } \to \mathrm { F C } _ { 1 } } \end{array} +$$ + +For WAE-GAN we used a heuristic proposed in Supplementary $\mathrm { I V }$ of Mescheder et al. (2017). Notice that the theoretically optimal discriminator would result in $D ^ { * } ( z ) = \log p _ { Z } ( z ) - \log q _ { Z } ( z )$ , where $p _ { Z }$ and $q _ { Z }$ are densities of $P _ { Z }$ and $Q _ { Z }$ respectively. In our experiments we added the log prior $\log p _ { Z } ( z )$ explicitly to the adversary output as we know it analytically. This should hopefully make it easier for the adversary to learn the remaining $Q _ { Z }$ density term. + +Our VAE model used a cross-entropy reconstruction loss (Bernoulli decoder) and $\alpha = 1 0 ^ { - 4 }$ as the initial Adam learning rate and the same decay schedule as explained above. Otherwise all the architectures and hyperparameters were as explained above. \ No newline at end of file diff --git a/parse/train/HkL7n1-0b/HkL7n1-0b_content_list.json b/parse/train/HkL7n1-0b/HkL7n1-0b_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..8e071d48e53b4a8d5abe07e98ebc287b48d17797 --- /dev/null +++ b/parse/train/HkL7n1-0b/HkL7n1-0b_content_list.json @@ -0,0 +1,1956 @@ +[ + { + "type": "text", + "text": "WASSERSTEIN AUTO-ENCODERS ", + "text_level": 1, + "bbox": [ + 176, + 99, + 570, + 121 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Ilya Tolstikhin MPI for Intelligent Systems Tubingen, Germany ¨ ilya@tue.mpg.de ", + "bbox": [ + 184, + 145, + 367, + 202 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Olivier Bousquet \nGoogle Brain \nZurich, Switzerland ¨ \nobousquet@google.com \nSylvain Gelly \nGoogle Brain \nZurich, Switzerland¨ \nsylvaingelly@google.com ", + "bbox": [ + 614, + 145, + 813, + 202 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 184, + 222, + 411, + 279 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Bernhard Scholkopf ¨ MPI for Intelligent Systems Tubingen, Germany ¨ bs@tue.mpg.de ", + "bbox": [ + 529, + 222, + 712, + 277 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 315, + 544, + 330 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We propose the Wasserstein Auto-Encoder (WAE)—a new algorithm for building a generative model of the data distribution. WAE minimizes a penalized form of the Wasserstein distance between the model distribution and the target distribution, which leads to a different regularizer than the one used by the Variational Auto-Encoder (VAE) (Kingma & Welling, 2014). This regularizer encourages the encoded training distribution to match the prior. We compare our algorithm with several other techniques and show that it is a generalization of adversarial auto-encoders (AAE) (Makhzani et al., 2016). Our experiments show that WAE shares many of the properties of VAEs (stable training, encoder-decoder architecture, nice latent manifold structure) while generating samples of better quality, as measured by the FID score. ", + "bbox": [ + 233, + 352, + 764, + 505 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 546, + 336, + 563 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "The field of representation learning was initially driven by supervised approaches, with impressive results using large labelled datasets. Unsupervised generative modeling, in contrast, used to be a domain governed by probabilistic approaches focusing on low-dimensional data. Recent years have seen a convergence of those two approaches. In the new field that formed at the intersection, variational auto-encoders (VAEs) (Kingma & Welling, 2014) constitute one well-established approach, theoretically elegant yet with the drawback that they tend to generate blurry samples when applied to natural images. In contrast, generative adversarial networks (GANs) (Goodfellow et al., 2014) turned out to be more impressive in terms of the visual quality of images sampled from the model, but come without an encoder, have been reported harder to train, and suffer from the “mode collapse” problem where the resulting model is unable to capture all the variability in the true data distribution. There has been a flurry of activity in assaying numerous configurations of GANs as well as combinations of VAEs and GANs. A unifying framework combining the best of GANs and VAEs in a principled way is yet to be discovered. ", + "bbox": [ + 174, + 583, + 825, + 763 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "This work builds up on the theoretical analysis presented in Bousquet et al. (2017). Following Arjovsky et al. (2017); Bousquet et al. (2017), we approach generative modeling from the optimal transport (OT) point of view. The OT cost (Villani, 2003) is a way to measure a distance between probability distributions and provides a much weaker topology than many others, including $f$ -divergences associated with the original GAN algorithms (Nowozin et al., 2016). This is particularly important in applications, where data is usually supported on low dimensional manifolds in the input space $\\mathcal { X }$ . As a result, stronger notions of distances (such as $f$ -divergences, which capture the density ratio between distributions) often max out, providing no useful gradients for training. In contrast, OT was claimed to have a nicer behaviour (Arjovsky et al., 2017; Gulrajani et al., 2017) although it requires, in its GAN-like implementation, the addition of a constraint or a regularization term into the objective. ", + "bbox": [ + 174, + 771, + 825, + 924 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/dfbfcc5b3c4f8ecaf5bcf4d077a22aa437f7aa7791df942b76efddc7ab3c527b.jpg", + "image_caption": [ + "Figure 1: Both VAE and WAE minimize two terms: the reconstruction cost and the regularizer penalizing discrepancy between $P _ { Z }$ and distribution induced by the encoder $Q$ . VAE forces $Q ( Z | X = x )$ to match $P _ { Z }$ for all the different input examples $x$ drawn from $P _ { X }$ . This is illustrated on picture (a), where every single red ball is forced to match $P _ { Z }$ depicted as the white shape. Red balls start intersecting, which leads to problems with reconstruction. In contrast, WAE forces the continuous mixture $\\begin{array} { r } { \\dot { Q _ { Z } } : = \\int Q ( Z | X ) \\dot { d } P _ { X } } \\end{array}$ to match $P _ { Z }$ , as depicted with the green ball in picture (b). As a result latent codes of different examples get a chance to stay far away from each other, promoting a better reconstruction. " + ], + "image_footnote": [], + "bbox": [ + 194, + 99, + 803, + 291 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this work we aim at minimizing OT $W _ { c } ( P _ { X } , P _ { G } )$ between the true (but unknown) data distribution $P _ { X }$ and a latent variable model $P _ { G }$ specified by the prior distribution $P _ { Z }$ of latent codes $Z \\in { \\mathcal { Z } }$ and the generative model $P _ { G } ( X | Z )$ of the data points $X \\in { \\mathcal { X } }$ given $Z$ . Our main contributions are listed below (cf. also Figure 1): ", + "bbox": [ + 176, + 449, + 825, + 506 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "• A new family of regularized auto-encoders (Algorithms 1, 2 and Eq. 4), which we call Wasserstein Auto-Encoders (WAE), that minimize the optimal transport $W _ { c } ( P _ { X } , P _ { G } )$ for any cost function $c$ . Similarly to VAE, the objective of WAE is composed of two terms: the $c$ -reconstruction cost and a regularizer $\\mathcal { D } _ { Z } ( P _ { Z } , Q _ { Z } )$ penalizing a discrepancy between two distributions in $\\mathcal { Z }$ : $P _ { Z }$ and a distribution of encoded data points, i.e. $Q _ { Z } \\backslash = \\dot { \\mathbb { E } } _ { P _ { X } } [ Q ( Z | X ) ]$ . When $c$ is the squared cost and $\\mathcal { D } _ { Z }$ is the GAN objective, WAE coincides with adversarial auto-encoders of Makhzani et al. (2016). Empirical evaluation of WAE on MNIST and CelebA datasets with squared cost $c ( x , y ) =$ $\\| x - y \\| _ { 2 } ^ { 2 }$ . Our experiments show that WAE keeps the good properties of VAEs (stable training, encoder-decoder architecture, and a nice latent manifold structure) while generating samples of better quality, approaching those of GANs. \n• We propose and examine two different regularizers $\\mathcal { D } _ { Z } ( P _ { Z } , Q _ { Z } )$ . One is based on GANs and adversarial training in the latent space $\\mathcal { Z }$ . The other uses the maximum mean discrepancy, which is known to perform well when matching high-dimensional standard normal distributions $P _ { Z }$ (Gretton et al., 2012). Importantly, the second option leads to a fully adversary-free min-min optimization problem. \n• Finally, the theoretical considerations presented in Bousquet et al. (2017) and used here to derive the WAE objective might be interesting in their own right. In particular, Theorem 1 shows that in the case of generative models, the primal form of $W _ { c } ( P _ { X } , P _ { G } )$ is equivalent to a problem involving the optimization of a probabilistic encoder $Q ( Z | X )$ . ", + "bbox": [ + 214, + 520, + 825, + 827 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The paper is structured as follows. In Section 2 we review a novel auto-encoder formulation for OT between $P _ { X }$ and the latent variable model $P _ { G }$ derived in Bousquet et al. (2017). Relaxing the resulting constrained optimization problem we arrive at an objective of Wasserstein auto-encoders. We propose two different regularizers, leading to WAE-GAN and WAE-MMD algorithms. Section 3 discusses the related work. We present the experimental results in Section 4 and conclude by pointing out some promising directions for future work. ", + "bbox": [ + 174, + 840, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 PROPOSED METHOD ", + "text_level": 1, + "bbox": [ + 176, + 102, + 372, + 117 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Our new method minimizes the optimal transport cost $W _ { c } ( P _ { X } , P _ { G } )$ based on the novel auto-encoder formulation (see Theorem 1 below). In the resulting optimization problem the decoder tries to accurately reconstruct the encoded training examples as measured by the cost function $c$ . The encoder tries to simultaneously achieve two conflicting goals: it tries to match the encoded distribution of training examples ${ \\dot { Q } } _ { Z } : = \\mathbb { E } _ { P _ { X } } [ Q ( Z | X ) ]$ to the prior $P _ { Z }$ as measured by any specified divergence $\\mathcal { D } _ { Z } ( Q _ { Z } , P _ { Z } )$ , while making sure that the latent codes provided to the decoder are informative enough to reconstruct the encoded training examples. This is schematically depicted on Fig. 1. ", + "bbox": [ + 173, + 133, + 825, + 233 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.1 PRELIMINARIES AND NOTATIONS ", + "text_level": 1, + "bbox": [ + 176, + 251, + 442, + 265 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We use calligraphic letters (i.e. $\\mathcal { X } )$ for sets, capital letters (i.e. $X )$ for random variables, and lower case letters (i.e. $x _ { \\mathrm { . } }$ ) for their values. We denote probability distributions with capital letters (i.e. $P ( X ) )$ and corresponding densities with lower case letters (i.e. $p ( x ) )$ ). In this work we will consider several measures of discrepancy between probability distributions $P _ { X }$ and $P _ { G }$ . The class of $f$ -d e & Miescke, 2008) is defined b $\\begin{array} { r } { D _ { f } ( P _ { X } \\| P _ { G } ) : = \\int f \\big ( \\frac { p _ { X } ( x ) } { p _ { G } ( x ) } \\big ) p _ { G } ( x ) d x } \\end{array}$ $f \\colon ( 0 , \\infty ) \\to { \\mathcal { R } }$ $f ( 1 ) = 0$ \nKullback-Leibler $D _ { \\mathrm { K L } }$ and Jensen-Shannon $D _ { \\mathrm { J S } }$ divergences. ", + "bbox": [ + 173, + 277, + 825, + 382 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.2 OPTIMAL TRANSPORT AND ITS DUAL FORMULATIONS ", + "text_level": 1, + "bbox": [ + 174, + 401, + 586, + 415 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "A rich class of divergences between probability distributions is induced by the optimal transport (OT) problem (Villani, 2003). Kantorovich’s formulation of the problem is given by ", + "bbox": [ + 171, + 428, + 821, + 457 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/d4e9d952b993474bb949c7d0c4312c3cb190b0ca448977e1d3bb429ba4007def.jpg", + "text": "$$\nW _ { c } ( P _ { X } , P _ { G } ) : = \\operatorname* { i n f } _ { \\Gamma \\in { \\mathcal { P } } ( X \\sim P _ { X } , Y \\sim P _ { G } ) } \\mathbb { E } _ { ( X , Y ) \\sim \\Gamma } [ c ( X , Y ) ] ,\n$$", + "text_format": "latex", + "bbox": [ + 310, + 464, + 684, + 489 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $c ( x , y ) \\colon \\mathcal { X } \\times \\mathcal { X } \\to \\mathcal { R } _ { + }$ is any measurable cost function and ${ \\mathcal { P } } ( X \\sim P _ { X } , Y \\sim P _ { G } )$ is a set of all joint distributions of $( X , Y )$ with marginals $P _ { X }$ and $P _ { G }$ respectively. A particularly interesting case is when $( \\mathcal { X } , d )$ is a metric space and $c ( x , y ) = d ^ { p } ( x , y )$ for $p \\geq 1$ . In this case $W _ { p }$ , the $p$ -th root of $W _ { c }$ , is called the $p$ -Wasserstein distance. ", + "bbox": [ + 174, + 498, + 825, + 555 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "When $c ( x , y ) = d ( x , y )$ the following Kantorovich-Rubinstein duality holds1: ", + "bbox": [ + 174, + 561, + 684, + 577 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/18b31c033b1150941ed4f04e8e9e413b9559579c3c06661edc65fd560d526be3.jpg", + "text": "$$\nW _ { 1 } ( P _ { X } , P _ { G } ) = \\operatorname* { s u p } _ { f \\in { \\mathcal { F } } _ { L } } \\mathbb { E } _ { X \\sim P _ { X } } [ f ( X ) ] - \\mathbb { E } _ { Y \\sim P _ { G } } [ f ( Y ) ] ,\n$$", + "text_format": "latex", + "bbox": [ + 315, + 584, + 681, + 613 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\mathcal { F } _ { L }$ is the class of all bounded 1-Lipschitz functions on $( \\mathcal { X } , d )$ ", + "bbox": [ + 174, + 621, + 627, + 636 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.3 APPLICATION TO GENERATIVE MODELS: WASSERSTEIN AUTO-ENCODERS ", + "text_level": 1, + "bbox": [ + 176, + 655, + 723, + 670 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "One way to look at modern generative models like VAEs and GANs is to postulate that they are trying to minimize certain discrepancy measures between the data distribution $P _ { X }$ and the model $P _ { G }$ . Unfortunately, most of the standard divergences known in the literature, including those listed above, are hard or even impossible to compute, especially when $P _ { X }$ is unknown and $P _ { G }$ is parametrized by deep neural networks. Previous research provides several tricks to address this issue. ", + "bbox": [ + 174, + 681, + 825, + 752 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In case of minimizing the KL-divergence $D _ { \\mathrm { K L } } ( P _ { X } , P _ { G } )$ , or equivalently maximizing the marginal log-likelihood $E _ { P _ { X } } [ \\bar { \\log { p _ { G } ( X ) } } ]$ , the famous variational lower bound provides a theoretically grounded framework successfully employed by VAEs (Kingma & Welling, 2014; Mescheder et al., 2017). More generally, if the goal is to minimize the $f$ -divergence $D _ { f } ( P _ { X } , P _ { G } )$ (with one example being $D _ { \\mathrm { K L } } ,$ ), one can resort to its dual formulation and make use of $f$ -GANs and the adversarial training (Nowozin et al., 2016). Finally, OT cost $W _ { c } ( P _ { X } , P _ { G } )$ is yet another option, which can be, thanks to the celebrated Kantorovich-Rubinstein duality (2), expressed as an adversarial objective as implemented by the Wasserstein-GAN (Arjovsky et al., 2017). We include an extended review of all these methods in Supplementary A. ", + "bbox": [ + 173, + 757, + 825, + 883 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In this work we will focus on latent variable models $P _ { G }$ defined by a two-step procedure, where first a code $Z$ is sampled from a fixed distribution $P _ { Z }$ on a latent space $\\mathcal { Z }$ and then $Z$ is mapped to the image $X \\in \\mathcal { X } \\overset { = } { = } \\mathcal { R } ^ { d }$ with a (possibly random) transformation. This results in a density of the form ", + "bbox": [ + 173, + 103, + 825, + 146 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/3019688d70fec01fd4fd85529d1fd5d624b67899e63195cca6422579a2a212b2.jpg", + "text": "$$\np _ { G } ( x ) : = \\int _ { \\mathcal { Z } } p _ { G } ( x | \\boldsymbol { z } ) p _ { z } ( \\boldsymbol { z } ) d \\boldsymbol { z } , \\quad \\forall \\boldsymbol { x } \\in \\mathcal { X } ,\n$$", + "text_format": "latex", + "bbox": [ + 357, + 152, + 638, + 185 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "assuming all involved densities are properly defined. For simplicity we will focus on non-random decoders, i.e. generative models $P _ { G } ( X | Z )$ deterministically mapping $Z$ to $X = G ( Z )$ for a given map $G \\colon { \\mathcal { Z } } \\to { \\mathcal { X } }$ . Similar results for random decoders can be found in Supplementary B.1. ", + "bbox": [ + 173, + 190, + 826, + 233 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "It turns out that under this model, the OT cost takes a simpler form as the transportation plan factors through the map $G$ : instead of finding a coupling $\\Gamma$ in (1) between two random variables living in the $\\mathcal { X }$ space, one distributed according to $P _ { X }$ and the other one according to $P _ { G }$ , it is sufficient to find a conditional distribution $Q ( Z | X )$ such that its $Z$ marginal $Q _ { Z } ( Z ) \\setminus : = \\mathbb { E } _ { X \\sim P _ { X } } \\left[ Q ( Z | X ) \\right]$ is identical to the prior distribution $P _ { Z }$ . This is the content of the theorem below proved in Bousquet et al. (2017). To make this paper self contained we repeat the proof in Supplementary B. ", + "bbox": [ + 173, + 239, + 825, + 324 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Theorem 1 For $P _ { G }$ as defined above with deterministic $P _ { G } ( X | Z )$ and any function $G \\colon { \\mathcal { Z } } \\to { \\mathcal { X } }$ ", + "bbox": [ + 173, + 335, + 805, + 352 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/8760809b4a0490a2ea8ce6048266b52ba82d2494672ba947592689aae44a6fa0.jpg", + "text": "$$\n\\operatorname* { i n f } _ { \\substack { \\Gamma \\in \\mathcal { P } ( X \\sim P _ { X } , Y \\sim P _ { G } ) } } \\mathbb { E } _ { ( X , Y ) \\sim \\Gamma } \\left[ c \\big ( X , Y \\big ) \\right] = \\operatorname* { i n f } _ { Q \\colon Q z = P _ { Z } } \\mathbb { E } _ { P _ { X } } \\mathbb { E } _ { Q ( Z | X ) } \\left[ c \\big ( X , G ( Z ) \\big ) \\right] ,\n$$", + "text_format": "latex", + "bbox": [ + 222, + 357, + 772, + 385 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $Q _ { Z }$ is the marginal distribution of $Z$ when $X \\sim P _ { X }$ and $Z \\sim Q ( Z | X )$ ", + "bbox": [ + 176, + 391, + 686, + 406 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "This result allows us to optimize over random encoders $Q ( Z | X )$ instead of optimizing over all couplings between $X$ and $Y$ . Of course, both problems are still constrained. In order to implement a numerical solution we relax the constraints on $Q _ { Z }$ by adding a penalty to the objective. This finally leads us to the WAE objective: ", + "bbox": [ + 173, + 419, + 825, + 476 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/5360a52f9d5d2fbad8fcb31a5590250f91d309607420486ac7e194c2be63a660.jpg", + "text": "$$\nD _ { \\mathrm { W A E } } ( P _ { X } , P _ { G } ) : = \\operatorname* { i n f } _ { Q ( Z | X ) \\in \\mathcal { Q } } \\mathbb { E } _ { P _ { X } } \\mathbb { E } _ { Q ( Z | X ) } \\left[ c \\bigl ( X , G ( Z ) \\bigr ) \\right] + \\lambda \\cdot \\mathcal { D } _ { Z } ( Q _ { Z } , P _ { Z } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 238, + 481, + 759, + 507 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $\\mathcal { Q }$ is any nonparametric set of probabilistic encoders, $\\mathcal { D } _ { Z }$ is an arbitrary divergence between $Q _ { Z }$ and $P _ { Z }$ , and $\\lambda > 0$ is a hyperparameter. Similarly to VAE, we propose to use deep neural networks to parametrize both encoders $Q$ and decoders $G$ . Note that as opposed to VAEs, the WAE formulation allows for non-random encoders deterministically mapping inputs to their latent codes. ", + "bbox": [ + 173, + 513, + 825, + 570 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We propose two different penalties $\\mathcal { D } _ { Z } ( Q _ { Z } , P _ { Z } )$ ", + "bbox": [ + 178, + 577, + 498, + 592 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "GAN-based $\\mathcal { D } _ { Z }$ . The first option is to choose $\\mathcal { D } _ { Z } ( Q _ { Z } , P _ { Z } ) = D _ { \\mathrm { J S } } ( Q _ { Z } , P _ { Z } )$ and use the adversarial training to estimate it. Specifically, we introduce an adversary (discriminator) in the latent space $\\mathcal { Z }$ trying to separate2 “true” points sampled from $P _ { Z }$ and “fake” ones sampled from $Q _ { Z }$ (Goodfellow et al., 2014). This results in the WAE-GAN described in Algorithm 1. Even though WAE-GAN falls back to the min-max problem, we move the adversary from the input (pixel) space $\\mathcal { X }$ to the latent space $\\mathcal { Z }$ . On top of that, $P _ { Z }$ may have a nice shape with a single mode (for a Gaussian prior), in which case the task should be easier than matching an unknown, complex, and possibly multi-modal distributions as usually done in GANs. This is also a reason for our second penalty: ", + "bbox": [ + 173, + 597, + 825, + 710 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "MMD-based $\\mathcal { D } _ { Z }$ . For a positive-definite reproducing kernel $k \\colon \\mathcal { Z } \\times \\mathcal { Z } \\mathcal { R }$ the following expression is called the maximum mean discrepancy (MMD): ", + "bbox": [ + 171, + 715, + 821, + 744 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/1d5147f8e2176e1d2251c84ae0803c2fb6f0af4b7beee6cc89f3b9b737729f82.jpg", + "text": "$$\n\\mathrm { M M D } _ { k } ( P _ { Z } , Q _ { Z } ) = \\big \\lVert \\int _ { \\mathcal { Z } } k ( z , \\cdot ) d P _ { Z } ( z ) - \\int _ { \\mathcal { Z } } k ( z , \\cdot ) d Q _ { Z } ( z ) \\big \\rVert _ { \\mathcal { H } _ { k } } ,\n$$", + "text_format": "latex", + "bbox": [ + 281, + 751, + 715, + 784 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $\\mathcal { H } _ { k }$ is the RKHS of real-valued functions mapping $\\mathcal { Z }$ to $\\mathcal { R }$ . If $k$ is characteristic then ${ \\mathrm { M M D } } _ { k }$ defines a metric and can be used as a divergence measure. We propose to use $\\mathcal { D } _ { Z } ( P _ { Z } , Q _ { Z } ) =$ $\\mathrm { M M D } _ { k } ( P _ { Z } , Q _ { Z } )$ . Fortunately, MMD has an unbiased U-statistic estimator, which can be used in conjunction with stochastic gradient descent (SGD) methods. This results in the WAE-MMD described in Algorithm 2. It is well known that the maximum mean discrepancy performs well when matching high-dimensional standard normal distributions (Gretton et al., 2012) so we expect this penalty to work especially well working with the Gaussian prior $P _ { Z }$ . ", + "bbox": [ + 173, + 789, + 825, + 887 + ], + "page_idx": 3 + }, + { + "type": "table", + "img_path": "images/bcf7713db4e4ab8f9945bd4430e63166f921e294945aa8f6d9b61f272d4dc57a.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
ALGORITHM1Wasserstein Auto-Encoder with GAN-based penalty (WAE-GAN).ALGORITHM 2Wasserstein Auto-Encoder withMMD-based penalty (WAE-MMD).
Require:Regularization coefficient 入>0. Initialize the parameters of the encoder Q, decoder Gθ,and latent discriminator Dy. while(,θ) not converged do Sample {x1,...,xn} from the training set Sample {z1,...,zn} from the prior PzRequire:Regularization coefficient入> O,char- acteristic positive-definite kernel k. Initialize the parameters of the encoder Q𝜙, decoder Gθ,and latent discriminator D. while (,0) not converged do
Sample zi from Q(Z|xi) fori=1,...,n Update D, by ascending:Sample {x1,...,xn} from the training set Sample {z1,..., zn} from the prior Pz Sample z from Q(Z|xi) fori=1,...,n
入 n ? logDγ(zi)+log(1-Dγ(i)) n i=1Update Q and Ge by descending: 1 n 入
Update Q and Ge by descending: 1 n c(xi,Ge(zi))-λ·logDγ(zi) nc(xi,Gθ(zi)) > k(ze,zj) n(n-1) n i=1 +j
i=1 end while入 2入 > k(2e,) + > k(ze,2j) n
n(n-1) l≠j e,j
", + "bbox": [ + 171, + 116, + 797, + 411 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We point out once again that the encoders $Q _ { \\phi } ( Z | x )$ in Algorithms 1 and 2 can be non-random, i.e. deterministically mapping input points to the latent codes. In this case $Q _ { \\phi } ( Z | x ) = \\delta _ { \\mu _ { \\phi } ( x ) }$ fo r a function $\\mu _ { \\phi } \\colon \\mathcal { X } \\to \\mathcal { Z }$ and in order to sample $\\tilde { z } _ { i }$ from $Q _ { \\phi } ( Z | x _ { i } )$ we just need to return $\\mu _ { \\phi } ( x _ { i } )$ . ", + "bbox": [ + 174, + 417, + 825, + 463 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 484, + 341, + 501 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Literature on auto-encoders Classical unregularized auto-encoders minimize only the reconstruction cost. This results in different training points being encoded into non-overlapping zones chaotically scattered all across the $\\mathcal { Z }$ space with “holes” in between where the decoder mapping $P _ { G } ( X | Z )$ has never been trained. Overall, the encoder $Q ( Z | X )$ trained in this way does not provide a useful representation and sampling from the latent space $\\mathcal { Z }$ becomes hard (Bengio et al., 2013). ", + "bbox": [ + 174, + 517, + 823, + 588 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Variational auto-encoders (Kingma & Welling, 2014) minimize a variational bound on the KLdivergence $D _ { \\mathrm { K L } } ( P _ { X } , P _ { G } )$ which is composed of the reconstruction cost plus the regularizer $\\mathbb { E } _ { P _ { X } } \\left[ D _ { \\mathrm { K L } } ( Q ( Z | X ) , P _ { Z } ) \\right]$ . The regularizer captures how distinct the image by the encoder of each training example is from the prior $P _ { Z }$ , which is not guaranteeing that the overall encoded distribution $\\mathbb { E } _ { P _ { X } }$ $\\mathinner { \\langle { Q \\mathopen { \\left( Z \\vert X \\right) } } \\rvert }$ matches $P _ { Z }$ like WAE does. Also, VAEs require non-degenerate (i.e. nondeterministic) Gaussian encoders and random decoders for which the term $\\log p _ { G } ( x | z )$ can be computed and differentiated with respect to the parameters. Later Mescheder et al. (2017) proposed a way to use VAE with non-Gaussian encoders. WAE minimizes the optimal transport $W _ { c } ( P _ { X } , P _ { G } )$ and allows both probabilistic and deterministic encoder-decoder pairs of any kind. ", + "bbox": [ + 173, + 594, + 825, + 719 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The VAE regularizer can be also equivalently written (Hoffman & Johnson, 2016) as a sum of $D _ { \\mathrm { K L } } ( Q _ { Z } , P _ { Z } )$ and a mutual information $\\mathbb { I } _ { Q } ( X , Z )$ between the images $X$ and latent codes $Z$ jointly distributed according to $P _ { X } \\times Q ( Z | X )$ . This observation provides another intuitive way to explain a difference between our algorithm and VAEs: WAEs simply drop the mutual information term $\\mathbb { I } _ { Q } ( X , Z )$ in the VAE regularizer. ", + "bbox": [ + 174, + 727, + 825, + 796 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "When used with $c ( x , y ) = \\| x - y \\| _ { 2 } ^ { 2 }$ WAE-GAN is equivalent to adversarial auto-encoders (AAE) proposed by Makhzani et al. (2016). Theory of Bousquet et al. (2017) (and in particular Theorem 1) thus suggests that AAEs minimize the 2-Wasserstein distance between $P _ { X }$ and $P _ { G }$ . This provides the first theoretical justification for AAEs known to the authors. WAE generalizes AAE in two ways: first, it can use any cost function $c$ in the input space $\\mathcal { X }$ ; second, it can use any discrepancy measure $\\mathcal { D } _ { Z }$ in the latent space $\\mathcal { Z }$ (for instance MMD), not necessarily the adversarial one of WAE-GAN. ", + "bbox": [ + 174, + 804, + 825, + 888 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Finally, Zhao et al. (2017b) independently proposed a regularized auto-encoder objective similar to Bousquet et al. (2017) and our (4) based on very different motivations and arguments. Following ", + "bbox": [ + 174, + 895, + 823, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "VAEs their objective (called InfoVAE) defines the reconstruction cost in the image space implicitly through the negative log likelihood term $- \\log p _ { G } ( x | z )$ , which should be properly normalized for all $z \\in { \\mathcal { Z } }$ . In theory VAE and InfoVAE can both induce arbitrary cost functions, however in practice this may require an estimation of the normalizing constant (partition function) which can3 be different for different values of $z$ . WAEs specify the cost $c ( x , y )$ explicitly and don’t constrain it in any way. ", + "bbox": [ + 174, + 103, + 825, + 174 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Literature on OT Genevay et al. (2016) address computing the OT cost in large scale using SGD and sampling. They approach this task either through the dual formulation, or via a regularized version of the primal. They do not discuss any implications for generative modeling. Our approach is based on the primal form of OT, we arrive at regularizers which are very different, and our main focus is on generative modeling. ", + "bbox": [ + 174, + 180, + 825, + 251 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The WGAN (Arjovsky et al., 2017) minimizes the 1-Wasserstein distance $W _ { 1 } ( P _ { X } , P _ { G } )$ for generative modeling. The authors approach this task from the dual form. Their algorithm comes without an encoder and can not be readily applied to any other cost $W _ { c }$ , because the neat form of the Kantorovich-Rubinstein duality (2) holds only for $W _ { 1 }$ . WAE approaches the same problem from the primal form, can be applied for any cost function $c$ , and comes naturally with an encoder. ", + "bbox": [ + 174, + 257, + 825, + 327 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In order to compute the values (1) or (2) of OT we need to handle non-trivial constraints, either on the coupling distribution $\\Gamma$ or on the function $f$ being considered. Various approaches have been proposed in the literature to circumvent this difficulty. For $W _ { 1 }$ Arjovsky et al. (2017) tried to implement the constraint in the dual formulation (2) by clipping the weights of the neural network $f$ . Later Gulrajani et al. (2017) proposed to relax the same constraint by penalizing the objective of (2) with a term $\\lambda \\cdot \\mathbb { E } \\left( \\left\\| \\nabla f ( X ) \\right\\| - 1 \\right) ^ { 2 }$ which should not be greater than 1 if $f \\in \\mathcal { F } _ { L }$ . In a more general OT setting of $W _ { c }$ Cuturi (2013) proposed to penalize the objective of (1) with the KLdivergence $\\lambda \\cdot D _ { \\mathrm { K L } } ( \\Gamma , P \\otimes Q )$ between the coupling distribution and the product of marginals. Genevay et al. (2016) showed that this entropic regularization drops the constraints on functions in the dual formulation as opposed to (2). Finally, in the context of unbalanced optimal transport it has been proposed to relax the constraint in (1) by regularizing the objective with $\\lambda \\cdot \\left( D _ { f } ( \\Gamma _ { X } , \\mathbf { \\bar { \\Gamma } } ^ { } P ) + \\right.$ $D _ { f } ( \\Gamma _ { Y } , Q ) )$ (Chizat et al., 2015; Liero et al., 2015), where $\\Gamma _ { X }$ and $\\Gamma _ { Y }$ are marginals of $\\Gamma$ . In this paper we propose to relax OT in a way similar to the unbalanced optimal transport, i.e. by adding additional divergences to the objective. However, we show that in the particular context of generative modeling, only one extra divergence is necessary. ", + "bbox": [ + 173, + 334, + 825, + 546 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Literature on GANs Many of the GAN variations (including $f$ -GAN and WGAN) come without an encoder. Often it may be desirable to reconstruct the latent codes and use the learned manifold, in which cases these models are not applicable. ", + "bbox": [ + 176, + 553, + 820, + 595 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "There have been many other approaches trying to blend the adversarial training of GANs with autoencoder architectures (Zhao et al., $2 0 1 7 \\mathrm { a }$ ; Dumoulin et al., 2017; Ulyanov et al., 2017; Berthelot et al., 2017). The approach proposed by Ulyanov et al. (2017) is perhaps the most relevant to our work. The authors use the discrepancy between $Q _ { Z }$ and the distribution $\\mathbb { E } _ { Z ^ { \\prime } \\sim P _ { Z } } [ Q \\left( Z | G ( Z ^ { \\prime } ) \\right) ]$ of auto-encoded noise vectors as the objective for the max-min game between the encoder and decoder respectively. While the authors showed that the saddle points correspond to $P _ { X } = P _ { G }$ , they admit that encoders and decoders trained in this way have no incentive to be reciprocal. As a workaround they propose to include an additional reconstruction term to the objective. WAE does not necessarily lead to a min-max game, uses a different penalty, and has a clear theoretical foundation. ", + "bbox": [ + 174, + 603, + 825, + 728 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Several works used reproducing kernels in context of GANs. Li et al. (2015); Dziugaite et al. (2015) use MMD with a fixed kernel $k$ to match $P _ { X }$ and $P _ { G }$ directly in the input space $\\mathcal { X }$ . These methods have been criticised to require larger mini-batches during training: estimating $\\mathrm { M M D } _ { k } ( P _ { X } , P _ { G } )$ requires number of samples roughly proportional to the dimensionality of the input space $\\mathcal { X }$ (Reddi et al., 2015) which is typically larger than $1 0 ^ { 3 }$ . Li et al. (2017) take a similar approach but further train $k$ adversarially so as to arrive at a meaningful loss function. WAE-MMD uses MMD to match $Q _ { Z }$ to the prior $P _ { Z }$ in the latent space $\\mathcal { Z }$ . Typically $\\mathcal { Z }$ has no more than 100 dimensions and $P _ { Z }$ is Gaussian, which allows us to use regular mini-batch sizes to accurately estimate MMD. ", + "bbox": [ + 173, + 734, + 825, + 847 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/ba6eb123cbe974ac8bc98667fc71d8053d7e708a6c4e49eac087dd03ed3734c6.jpg", + "image_caption": [ + "Figure 2: VAE (left column), WAE-MMD (middle column), and WAE-GAN (right column) trained on MNIST dataset. In “test reconstructions” odd rows correspond to the real test points. " + ], + "image_footnote": [], + "bbox": [ + 178, + 97, + 820, + 539 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 603, + 326, + 619 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In this section we empirically evaluate4 the proposed WAE model. We would like to test if WAE can simultaneously achieve (i) accurate reconstructions of data points, (ii) reasonable geometry of the latent manifold, and (iii) random samples of good (visual) quality. Importantly, the model should generalize well: requirements (i) and (ii) should be met on both training and test data. We trained WAE-GAN and WAE-MMD (Algorithms 1 and 2) on two real-world datasets: MNIST (LeCun et al., 1998) consisting of $7 0 \\mathrm { k }$ images and CelebA (Liu et al., 2015) containing roughly 203k images. ", + "bbox": [ + 174, + 635, + 825, + 718 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Experimental setup In all reported experiments we used Euclidian latent spaces $\\mathcal { Z } \\ = \\ \\mathcal { R } ^ { d _ { z } }$ for various $d _ { z }$ depending on the complexity of the dataset, isotropic Gaussian prior distributions $P _ { Z } ( Z ) = \\mathcal { N } ( Z ; \\mathbf { 0 } , \\sigma _ { z } ^ { 2 } \\cdot I _ { d } )$ over $\\mathcal { Z }$ , and a squared cost function $c ( \\bar { x } , y ) = \\| x - \\bar { y } \\| _ { 2 } ^ { 2 }$ for data points $x , y \\in \\mathcal { X } = \\mathcal { R } ^ { d _ { x } }$ . We used deterministic encoder-decoder pairs, Adam (Kingma & Lei, 2014) with $\\beta _ { 1 } = 0 . 5 , \\beta _ { 2 } = 0 . 9 9 9$ , and convolutional deep neural network architectures for encoder mapping $\\mu _ { \\phi } \\colon \\mathcal { X } \\to \\mathcal { Z }$ and decoder mapping $G _ { \\theta } \\colon { \\mathcal { Z } } \\to { \\mathcal { X } }$ similar to the DCGAN ones reported by Radford et al. (2016) with batch normalization (Ioffe & Szegedy, 2015). We tried various values of $\\lambda$ and noticed that $\\lambda = 1 0$ seems to work good across all datasets we considered. ", + "bbox": [ + 173, + 726, + 825, + 837 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Since we are using deterministic encoders, choosing $d _ { z }$ larger than intrinsic dimensionality of the dataset would force the encoded distribution $Q _ { Z }$ to live on a manifold in $\\mathcal { Z }$ . This would make matching $Q _ { Z }$ to $P _ { Z }$ impossible if $P _ { Z }$ is Gaussian and may lead to numerical instabilities. We use $d _ { z } = 8$ for MNIST and $d _ { z } = 6 4$ for CelebA which seems to work reasonably well. ", + "bbox": [ + 174, + 843, + 825, + 900 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/5f9154f809ae2eb7b1b03217d0ca3922df4a01f90d50874364f5a3fe74e9b6da.jpg", + "image_caption": [ + "Figure 3: VAE (left column), WAE-MMD (middle column), and WAE-GAN (right column) trained on CelebA dataset. In “test reconstructions” odd rows correspond to the real test points. " + ], + "image_footnote": [], + "bbox": [ + 178, + 98, + 820, + 539 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We also report results of VAEs. VAEs used the same latent spaces as discussed above and standard Gaussian priors $P _ { Z } = \\mathcal { N } ( \\mathbf { 0 } , I _ { d } )$ . We used Gaussian encoders $Q ( Z | X ) = \\mathcal { N } \\big ( Z ; \\mu _ { \\phi } ( X ) , \\Sigma ( X ) \\big )$ with mean $\\mu _ { \\phi }$ and diagonal covariance $\\Sigma$ . For both MNIST and CelebA we used Bernoulli decoders parametrized by $G _ { \\theta }$ . Functions $\\mu _ { \\phi } , \\Sigma$ , and $G _ { \\theta }$ were parametrized by deep nets of the same architectures as used in WAE. ", + "bbox": [ + 174, + 614, + 825, + 684 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "WAE-GAN and WAE-MMD specifics In WAE-GAN we used discriminator $D$ composed of several fully connected layers with ReLu. We tried WAE-MMD with the RBF kernel but observed that it fails to penalize the outliers of $Q _ { Z }$ because of the quick tail decay. If the codes $\\tilde { z } = \\mu _ { \\phi } ( x )$ for some of the training points $x \\in \\mathcal { X }$ end up far away from the support of $P _ { Z }$ (which may happen in the early stages of training) the corresponding terms in the U-statistic $k ( z , \\tilde { z } ) = e ^ { - \\| \\tilde { z } - z \\| _ { 2 } ^ { 2 } / \\sigma _ { k } ^ { 2 } }$ will quickly approach zero and provide no gradient for those outliers. This could be avoided by choosing the kernel bandwidth $\\sigma _ { k } ^ { 2 }$ in a data-dependent manner, however in this case per-minibatch U-statistic would not provide an unbiased estimate for the gradient. Instead, we used the inverse multiquadratics kernel $\\bar { k } ( x , y ) = C / ( C + \\| x - y \\| _ { 2 } ^ { 2 } )$ which is also characteristic and has much heavier tails. In all experiments we used $C = 2 d _ { z } \\sigma _ { z } ^ { 2 }$ , which is the expected squared distance between two multivariate Gaussian vectors drawn from $P _ { Z }$ . This significantly improved the performance compared to the RBF kernel (even the one with $\\sigma _ { k } ^ { 2 } = 2 d _ { z } \\sigma _ { z } ^ { 2 }$ ). Trained models are presented in Figures 2 and 3. Further details are presented in Supplementary C. ", + "bbox": [ + 174, + 691, + 825, + 875 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Random samples are generated by sampling $P _ { Z }$ and decoding the resulting noise vectors $z$ into $G _ { \\theta } ( z )$ . As expected, in our experiments we observed that for both WAE-GAN and WAE-MMD the quality of samples strongly depends on how accurately $Q _ { Z }$ matches $P _ { Z }$ . To see this, notice that during training the decoder function $G _ { \\theta }$ is presented only with encoded versions $\\mu _ { \\phi } ( X )$ of the data points $X \\sim P _ { X }$ . Indeed, the decoder is trained on samples from $Q _ { Z }$ and thus there is no reason to expect good results when feeding it with samples from $P _ { Z }$ . In our experiments we noticed that even slight differences between $Q _ { Z }$ and $P _ { Z }$ may affect the quality of samples. In some cases WAE-GAN seems to lead to a better matching and generates better samples than WAE-MMD. However, due to adversarial training WAE-GAN is highly unstable, while WAE-MMD has a very stable training much like VAE. ", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 202 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In order to quantitatively assess the quality of the generated images, we use the Frechet Inception Distance´ introduced by Heusel et al. (2017) and report the results on CelebA in Table 1. These results confirm that the sampled images from WAE are of better quality than from VAE, and WAE-GAN gets a slightly better score than WAEMMD, which correlates with visual inspection of the images. ", + "bbox": [ + 174, + 215, + 552, + 325 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/bb53b755aa9224ba9656ef109a4e1d971d6a6d75d2817d17ef00984c94322e3a.jpg", + "table_caption": [ + "Table 1: FID scores for samples on CelebA (smaller is better). " + ], + "table_footnote": [], + "table_body": "
AlgorithmFID
VAE82
WAE-MMD55
WAE-GAN42
", + "bbox": [ + 617, + 217, + 772, + 290 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Test reconstructions and interpolations. We take random points $x$ from the held out test set and report their auto-encoded versions $G _ { \\theta } ( \\mu _ { \\phi } ( x ) )$ . Next, pairs $( x , y )$ of different data points are sampled randomly from the held out test set and encoded: $z _ { x } = \\mu _ { \\phi } ( x )$ , $z _ { y } = \\mu _ { \\phi } ( y )$ . We linearly interpolate between $z _ { x }$ and $z _ { y }$ with equally-sized steps in the latent space and show decoded images. ", + "bbox": [ + 174, + 333, + 823, + 388 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 410, + 318, + 426 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Using the optimal transport cost, we have derived Wasserstein auto-encoders—a new family of algorithms for building generative models. We discussed their relations to other probabilistic modeling techniques. We conducted experiments using two particular implementations of the proposed method, showing that in comparison to VAEs, the images sampled from the trained WAE models are of better quality, without compromising the stability of training and the quality of reconstruction. Future work will include further exploration of the criteria for matching the encoded distribution $Q _ { Z }$ to the prior distribution $P _ { Z }$ , assaying the possibility of adversarially training the cost function $c$ in the input space $\\mathcal { X }$ , and a theoretical analysis of the dual formulations for WAE-GAN and WAE-MMD. ", + "bbox": [ + 174, + 443, + 825, + 554 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "ACKNOWLEDGMENTS ", + "text_level": 1, + "bbox": [ + 176, + 571, + 326, + 584 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "The authors are thankful to Carl Johann Simon-Gabriel, Mateo Rojas-Carulla, Arthur Gretton, Paul Rubenstein, and Fei Sha for stimulating discussions. ", + "bbox": [ + 176, + 594, + 823, + 623 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 646, + 285, + 661 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "M. Arjovsky, S. Chintala, and L. Bottou. Wasserstein GAN, 2017. \nY. Bengio, A. Courville, and P. Vincent. Representation learning: A review and new perspectives. Pattern Analysis and Machine Intelligence, 35, 2013. \nD. Berthelot, T. Schumm, and L. Metz. Began: Boundary equilibrium generative adversarial networks, 2017. \nO. Bousquet, S. Gelly, I. Tolstikhin, C. J. Simon-Gabriel, and B. Scholkopf. From optimal transport ¨ to generative modeling: the VEGAN cookbook, 2017. \nLenaic Chizat, Gabriel Peyre, Bernhard Schmitzer, and Franc¸ois-Xavier Vialard. Unbalanced opti- ´ mal transport: geometry and kantorovich formulation. arXiv preprint arXiv:1508.05216, 2015. \nM. Cuturi. Sinkhorn distances: Lightspeed computation of optimal transport. In Advances in Neural Information Processing Systems, pp. 2292–2300, 2013. \nV. Dumoulin, I. Belghazi, B. Poole, A. Lamb, M. Arjovsky, O. Mastropietro, and A. Courville. Adversarially learned inference. In ICLR, 2017. ", + "bbox": [ + 171, + 669, + 828, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "G. K. Dziugaite, D. M. Roy, and Z. Ghahramani. Training generative neural networks via maximum mean discrepancy optimization. In UAI, 2015. ", + "bbox": [ + 169, + 103, + 823, + 132 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "A. Genevay, M. Cuturi, G. Peyre, and F. R. Bach. Stochastic optimization for large-scale optimal ´ transport. In Advances in Neural Information Processing Systems, pp. 3432–3440, 2016. ", + "bbox": [ + 171, + 140, + 823, + 170 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In NIPS, pp. 2672–2680, 2014. ", + "bbox": [ + 174, + 178, + 823, + 220 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "A. Gretton, K. M. Borgwardt, M. J. Rasch, B. Scholkopf, and A. J. Smola. A kernel two-sample ¨ test. Journal of Machine Learning Research, 13:723–773, 2012. ", + "bbox": [ + 171, + 228, + 825, + 258 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "I. Gulrajani, F. Ahmed, M. Arjovsky, V. Domoulin, and A. Courville. Improved training of wasserstein GANs, 2017. ", + "bbox": [ + 171, + 265, + 823, + 295 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Martin Heusel, Hubert Ramsauer, Thomas Unterthiner, Bernhard Nessler, Gunter Klambauer, and ¨ Sepp Hochreiter. GANs trained by a two time-scale update rule converge to a nash equilibrium. arXiv preprint arXiv:1706.08500, 2017. ", + "bbox": [ + 174, + 303, + 823, + 347 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "M. D. Hoffman and M. Johnson. Elbo surgery: yet another way to carve up the variational evidence lower bound. In NIPS Workshop on Advances in Approximate Bayesian Inference, 2016. ", + "bbox": [ + 169, + 354, + 823, + 383 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "S. Ioffe and C. Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift, 2015. ", + "bbox": [ + 171, + 392, + 823, + 421 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "D. P. Kingma and J. Lei. Adam: A method for stochastic optimization, 2014. ", + "bbox": [ + 174, + 429, + 679, + 445 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "D. P. Kingma and M. Welling. Auto-encoding variational Bayes. In ICLR, 2014. ", + "bbox": [ + 174, + 452, + 696, + 468 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Y. LeCun, L. Bottou, Y. Bengio, and P. Haffner. Gradient-based learning applied to document recognition. In Proceedings of the IEEE, volume 86(11), pp. 2278–2324, 1998. ", + "bbox": [ + 173, + 476, + 823, + 506 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "C. L. Li, W. C. Chang, Y. Cheng, Y. Yang, and B. Poczos. Mmd gan: Towards deeper understanding of moment matching network, 2017. ", + "bbox": [ + 176, + 512, + 823, + 542 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Y. Li, K. Swersky, and R. Zemel. Generative moment matching networks. In ICML, 2015. ", + "bbox": [ + 173, + 549, + 767, + 565 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Matthias Liero, Alexander Mielke, and Giuseppe Savare. Optimal entropy-transport problems and a ´ new hellinger-kantorovich distance between positive measures. arXiv preprint arXiv:1508.07941, 2015. ", + "bbox": [ + 176, + 573, + 826, + 616 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "F. Liese and K.-J. Miescke. Statistical Decision Theory. Springer, 2008. ", + "bbox": [ + 173, + 625, + 648, + 640 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ziwei Liu, Ping Luo, Xiaogang Wang, and Xiaoou Tang. Deep learning face attributes in the wild. In Proceedings of International Conference on Computer Vision (ICCV), 2015. ", + "bbox": [ + 174, + 647, + 818, + 678 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "A. Makhzani, J. Shlens, N. Jaitly, and I. Goodfellow. Adversarial autoencoders. In ICLR, 2016. ", + "bbox": [ + 173, + 685, + 799, + 702 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "L. Mescheder, S. Nowozin, and A. Geiger. Adversarial variational bayes: Unifying variational autoencoders and generative adversarial networks, 2017. ", + "bbox": [ + 174, + 708, + 820, + 738 + ], + "page_idx": 9 + }, + { + "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, + 746, + 821, + 775 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "B. Poole, A. Alemi, J. Sohl-Dickstein, and A. Angelova. Improved generator objectives for GANs, 2016. ", + "bbox": [ + 173, + 784, + 823, + 813 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "A. Radford, L. Metz, and S. Chintala. Unsupervised representation learning with deep convolutional generative adversarial networks. In ICLR, 2016. ", + "bbox": [ + 173, + 820, + 823, + 851 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "R. Reddi, A. Ramdas, A. Singh, B. Poczos, and L. Wasserman. On the high-dimensional power of a linear-time two sample test under mean-shift alternatives. In AISTATS, 2015. ", + "bbox": [ + 174, + 858, + 821, + 887 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "D. Ulyanov, A. Vedaldi, and V. Lempitsky. It takes (only) two: Adversarial generator-encoder networks, 2017. ", + "bbox": [ + 176, + 895, + 821, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "C. Villani. Topics in Optimal Transportation. AMS Graduate Studies in Mathematics, 2003. ", + "bbox": [ + 166, + 103, + 779, + 119 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "J. Zhao, M. Mathieu, and Y. LeCun. Energy-based generative adversarial network. In ICLR, 2017a. ", + "bbox": [ + 174, + 127, + 825, + 143 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "S. Zhao, J. Song, and S. Ermon. InfoVAE: Information maximizing variational autoencoders, 2017b. ", + "bbox": [ + 173, + 151, + 823, + 166 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "A IMPLICIT GENERATIVE MODELS: A SHORT TOUR OF GANS AND VAES ", + "text_level": 1, + "bbox": [ + 173, + 102, + 792, + 118 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Even though GANs and VAEs are quite different—both in terms of the conceptual frameworks and empirical performance—they share important features: (a) both can be trained by sampling from the model $P _ { G }$ without knowing an analytical form of its density and (b) both can be scaled up with SGD. As a result, it becomes possible to use highly flexible implicit models $P _ { G }$ defined by a twostep procedure, where first a code $Z$ is sampled from a fixed distribution $P _ { Z }$ on a latent space $\\mathcal { Z }$ and then $Z$ is mapped to the image $G ( Z ) \\in \\mathcal { X } = \\mathcal { R } ^ { d }$ with a (possibly random) transformation $G \\colon { \\mathcal { Z } } \\to { \\mathcal { X } }$ . This results in latent variable models $P _ { G }$ of the form (3). ", + "bbox": [ + 173, + 132, + 825, + 232 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "These models are indeed easy to sample and, provided $G$ can be differentiated analytically with respect to its parameters, $P _ { G }$ can be trained with SGD. The field is growing rapidly and numerous variations of VAEs and GANs are available in the literature. Next we introduce and compare several of them. ", + "bbox": [ + 174, + 237, + 825, + 292 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "The original generative adversarial network (GAN) Goodfellow et al. (2014) approach minimizes ", + "bbox": [ + 173, + 299, + 823, + 315 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/a59ac1d737ca8f03b353ef156dcb0aa8414c6da98612047cea30f74c36c0bb94.jpg", + "text": "$$\nD _ { \\mathrm { G A N } } ( P _ { X } , P _ { G } ) = \\operatorname* { s u p } _ { T \\in { \\mathcal T } } \\mathbb { E } _ { X \\sim P _ { X } } [ \\log T ( X ) ] + \\mathbb { E } _ { Z \\sim P _ { Z } } [ \\log \\left( 1 - T ( G ( Z ) ) \\right) ]\n$$", + "text_format": "latex", + "bbox": [ + 250, + 320, + 746, + 347 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "with respect to a deterministic decoder $G \\colon { \\mathcal { Z } } \\to { \\mathcal { X } }$ , where $\\tau$ is any non-parametric class of choice. It is known that $D _ { \\mathrm { G A N } } ( P _ { X } , P _ { G } ) \\leq 2 \\cdot D _ { \\mathrm { J S } } ( P _ { X } , P _ { G } ) - \\log ( 4 )$ and the inequality turns into identity in the nonparametric limit, that is when the class $\\tau$ becomes rich enough to represent all functions mapping $\\mathcal { X }$ to $( 0 , 1 )$ . Hence, GANs are minimizing a lower bound on the JS-divergence. However, GANs are not only linked to the JS-divergence: the $f$ -GAN approach Nowozin et al. (2016) showed that a slight modification $D _ { \\mathrm { f , G A N } }$ of the objective (5) allows to lower bound any desired $f$ -divergence in a similar way. In practice, both decoder $G$ and discriminator $T$ are trained in alternating SGD steps. Stopping criteria as well as adequate evaluation of the trained GAN models remain open questions. ", + "bbox": [ + 173, + 352, + 825, + 478 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Recently, the authors of Arjovsky et al. (2017) argued that the 1-Wasserstein distance $W _ { 1 }$ , which is known to induce a much weaker topology than $D _ { \\mathrm { J S } }$ , may be better suited for generative modeling. When $P _ { X }$ and $P _ { G }$ are supported on largely disjoint low-dimensional manifolds (which may be the case in applications), $D _ { \\mathrm { K L } } , D _ { \\mathrm { J S } }$ , and other strong distances between $P _ { X }$ and $P _ { G }$ max out and no longer provide useful gradients for $P _ { G }$ . This “vanishing gradient” problem necessitates complicated scheduling between the $G / T$ updates. In contrast, $W _ { 1 }$ is still sensible in these cases and provides stable gradients. The Wasserstein GAN (WGAN) minimizes ", + "bbox": [ + 173, + 483, + 825, + 582 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/11516a3278e745fdf04fed42048535c16a3a3250cb51ccdedea0ec2928ff1e7a.jpg", + "text": "$$\nD _ { \\mathrm { W G A N } } ( P _ { X } , P _ { G } ) = \\operatorname* { s u p } _ { T \\in \\mathcal { W } } \\mathbb { E } _ { X \\sim P _ { X } } [ T ( X ) ] - \\mathbb { E } _ { Z \\sim P _ { Z } } \\left[ T ( G ( Z ) ) \\right] ,\n$$", + "text_format": "latex", + "bbox": [ + 282, + 587, + 712, + 614 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "where $\\mathcal { W }$ is any subset of 1-Lipschitz functions on $\\mathcal { X }$ . It follows from (2) that $D _ { \\mathrm { W G A N } } ( P _ { X } , P _ { G } ) \\leq$ $W _ { 1 } ( P _ { X } , P _ { G } )$ and thus WGAN is minimizing a lower bound on the 1-Wasserstein distance. ", + "bbox": [ + 174, + 619, + 820, + 648 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Variational auto-encoders (VAE) Kingma & Welling (2014) utilize models $P _ { G }$ of the form (3) and minimize ", + "bbox": [ + 169, + 655, + 823, + 684 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/73b2d7fec2d7342b3db2f58e91ee4dc807956f98a6dfe86d99e0a7e7e00b668d.jpg", + "text": "$$\nD _ { \\mathrm { V A E } } \\big ( P _ { X } , P _ { G } \\big ) = \\operatorname* { i n f } _ { Q ( Z | X ) \\in \\mathcal { Q } } \\mathbb { E } _ { P _ { X } } \\left[ D _ { \\mathrm { K L } } \\big ( Q ( Z | X ) , P _ { Z } \\big ) - \\mathbb { E } _ { Q ( Z | X ) } [ \\log p _ { G } ( X | Z ) ] \\right]\n$$", + "text_format": "latex", + "bbox": [ + 220, + 688, + 776, + 715 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "with respect to a random decoder mapping $P _ { G } ( X | Z )$ . The conditional distribution $P _ { G } ( X | Z )$ is often parametrized by a deep net $G$ and can have any form as long as its density $p _ { G } ( x | z )$ can be computed and differentiated with respect to the parameters of $G$ . A typical choice is to use Gaussians $P _ { G } ( X | Z ) = \\mathcal { N } ( X ; G ( Z ) , \\sigma ^ { \\hat { 2 } } \\cdot I )$ . If $\\mathcal { Q }$ is the set of all conditional probability distributions $Q ( Z | X )$ , the objective of VAE coincides with the negative marginal log-likelihood $D _ { \\mathrm { V A E } } ( P _ { X } , P _ { G } ) = - \\mathbb { E } _ { P _ { X } } [ \\log P _ { G } ( X ) ]$ . However, in order to make the $D _ { \\mathrm { K L } }$ term of (6) tractable in closed form, the original implementation of VAE uses a standard normal $P _ { Z }$ and restricts $\\mathcal { Q }$ to a class of Gaussian distributions $Q ( Z | X ) = { \\mathcal { N } } { \\big ( } Z ; \\mu ( X ) , \\Sigma ( X ) { \\big ) }$ with mean $\\mu$ and diagonal covariance $\\Sigma$ parametrized by deep nets. As a consequence, VAE is minimizing an upper bound on the negative log-likelihood or, equivalently, on the KL-divergence $D _ { \\mathrm { K L } } ( P _ { X } , P _ { G } )$ . ", + "bbox": [ + 173, + 720, + 825, + 862 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "One possible way to reduce the gap between the true negative log-likelihood and the upper bound provided by $D _ { \\mathrm { V A E } }$ is to enlarge the class $\\mathcal { Q }$ . Adversarial variational Bayes (AVB) Mescheder et al. (2017) follows this argument by employing the idea of GANs. Given any point $x \\in \\mathcal { X }$ , a noise $\\epsilon \\sim \\mathcal { N } ( 0 , 1 )$ , and any fixed transformation $e \\colon \\mathcal { X } \\times \\mathcal { R } \\mathcal { Z }$ , a random variable $e ( x , \\epsilon )$ ", + "bbox": [ + 174, + 867, + 823, + 924 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "implicitly defines one particular conditional distribution $Q _ { e } ( Z | X = x )$ . AVB allows $\\mathcal { Q }$ to contain all such distributions for different choices of $e$ , replaces the intractable term $D _ { \\mathrm { K L } } \\big ( Q _ { e } ( Z | X ) , P _ { Z } \\big )$ in (6) by the adversarial approximation $D _ { \\mathrm { f , G A N } }$ corresponding to the KL-divergence, and proposes to minimize5 ", + "bbox": [ + 174, + 102, + 825, + 162 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/234379459d36ea6a3949d78f6e2e2e101d53bbec5ea6e1e381a3f7e12fbfbb4f.jpg", + "text": "$$\nD _ { \\mathrm { A V B } } ( P _ { X } , P _ { G } ) = \\operatorname* { i n f } _ { Q _ { \\epsilon } ( Z | X ) \\in \\mathcal { Q } } \\mathbb { E } _ { P _ { X } } \\left[ D _ { \\mathrm { f } , \\operatorname { G A N } } \\big ( Q _ { e } ( Z | X ) , P _ { Z } \\big ) - \\mathbb { E } _ { Q _ { \\epsilon } ( Z | X ) } [ \\log p _ { G } ( X | Z ) ] \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 187, + 167, + 789, + 194 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "The $D _ { \\mathrm { K L } }$ term in (6) may be viewed as a regularizer. Indeed, VAE reduces to the classical unregularized auto-encoder if this term is dropped, minimizing the reconstruction cost of the encoder-decoder pair $Q ( Z | X ) , P _ { G } ( X | Z )$ . This often results in different training points being encoded into nonoverlapping zones chaotically scattered all across the $\\mathcal { Z }$ space with “holes” in between where the decoder mapping $P _ { G } ( X | Z )$ has never been trained. Overall, the encoder $Q ( Z | X )$ trained in this way does not provide a useful representation and sampling from the latent space $\\mathcal { Z }$ becomes hard Bengio et al. (2013). ", + "bbox": [ + 173, + 207, + 825, + 306 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Adversarial auto-encoders (AAE) Makhzani et al. (2016) replace the $D _ { \\mathrm { K L } }$ term in (6) with another regularizer: ", + "bbox": [ + 171, + 311, + 823, + 340 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/11bed2c41516f97c0b74ab2c2d62f438bc2924db0fe43e1adcfa303325913ed1.jpg", + "text": "$$\nD _ { \\mathrm { A A E } } ( P _ { X } , P _ { G } ) = \\operatorname* { i n f } _ { Q ( Z | X ) \\in Q } D _ { \\mathrm { G A N } } ( Q _ { Z } , P _ { Z } ) - \\mathbb { E } _ { P _ { X } } \\mathbb { E } _ { Q ( Z | X ) } [ \\log p _ { G } ( X | Z ) ] ,\n$$", + "text_format": "latex", + "bbox": [ + 240, + 347, + 756, + 372 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "where $Q _ { Z }$ is the marginal distribution of $Z$ when first $X$ is sampled from $P _ { X }$ and then $Z$ is sampled from $Q ( Z | X )$ , also known as the aggregated posterior Makhzani et al. (2016). Similarly to AVB, there is no clear link to log-likelihood, as $D _ { \\mathrm { A A E } } \\leq D _ { \\mathrm { A V B } }$ . The authors of Makhzani et al. (2016) argue that matching $Q _ { Z }$ to $P _ { Z }$ in this way ensures that there are no “holes” left in the latent space $\\mathcal { Z }$ and $P _ { G } ( X | Z )$ generates reasonable samples whenever $Z \\sim P _ { Z }$ . They also report an equally good performance of different types of conditional distributions $Q ( Z | X )$ , including Gaussians as used in VAEs, implicit models $Q _ { e }$ as used in AVB, and deterministic encoder mappings, i.e. $Q ( Z | X ) =$ $\\delta _ { \\mu ( X ) }$ with $\\mu \\colon \\mathcal X \\to \\mathcal Z$ . ", + "bbox": [ + 173, + 378, + 825, + 491 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "B PROOF OF THEOREM 1 AND FURTHER DETAILS ", + "text_level": 1, + "bbox": [ + 174, + 511, + 598, + 526 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "We will consider certain sets of joint probability distributions of three random variables $( X , Y , Z ) \\in$ $\\mathcal { X } \\times \\mathcal { X } \\times \\mathcal { Z }$ . The reader may wish to think of $X$ as true images, $Y$ as images sampled from the model, and $Z$ as latent codes. We denote by $P _ { G , Z } ( Y , Z )$ a joint distribution of a variable pair $( Y , Z )$ , where $Z$ is first sampled from $P _ { Z }$ and next $Y$ from $P _ { G } ( Y | Z )$ . Note that $P _ { G }$ defined in (3) and used throughout this work is the marginal distribution of $Y$ when $( Y , Z ) \\sim P _ { G , Z }$ . ", + "bbox": [ + 173, + 541, + 825, + 613 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "In the optimal transport problem (1), we consider joint distributions $\\Gamma ( X , Y )$ which are called couplings between values of $X$ and $Y$ . Because of the marginal constraint, we can write $\\Gamma ( X , Y ) =$ $\\bar { \\Gamma } ( \\bar { Y ( X ) } P _ { X } ( X )$ and we can consider $\\Gamma ( Y | X )$ as a non-deterministic mapping from $X$ to $Y$ . Theorem 1. shows how to factor this mapping through $\\mathcal { Z }$ , i.e., decompose it into an encoding distribution $Q ( Z | X )$ and the generating distribution $P _ { G } ( Y | Z )$ . ", + "bbox": [ + 173, + 618, + 825, + 689 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "As in Section 2.2, $\\mathcal { P } ( X \\sim P _ { X } , Y \\sim P _ { G } )$ denotes the set of all joint distributions of $( X , Y )$ with marginals $P _ { X } , P _ { G }$ , and likewise for $\\mathcal { P } ( X \\sim P _ { X } , Z \\sim P _ { Z } )$ . The set of all joint distributions of $( X , Y , Z )$ such that $X \\sim P _ { X }$ , $( Y , Z ) \\sim P _ { G , Z }$ , and $( Y \\perp \\perp X ) | Z$ will be denoted by ${ \\mathcal { P } } _ { X , Y , Z }$ . Finally, we denote by $\\mathcal { P } _ { X , Y }$ and $\\mathcal { P } _ { X , Z }$ the sets of marginals on $( X , Y )$ and $( X , Z )$ (respectively) induced by distributions in ${ \\mathcal { P } } _ { X , Y , Z }$ . Note that $\\mathcal { P } ( P _ { X } , P _ { G } )$ , ${ \\mathcal { P } } _ { X , Y , Z }$ , and $\\mathcal { P } _ { X , Y }$ depend on the choice of conditional distributions $P _ { G } ( Y | Z )$ , while $\\mathcal { P } _ { X , Z }$ does not. In fact, it is easy to check that $\\mathcal { P } _ { X , Z } =$ $\\mathcal { P } ( X \\sim P _ { X } , Z \\sim P _ { Z } )$ . From the definitions it is clear that $\\mathcal { P } _ { X , Y } \\subseteq \\mathcal { P } ( P _ { X } , P _ { G } )$ and we immediately get the following upper bound: ", + "bbox": [ + 173, + 694, + 825, + 808 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/766228ca76f59ab0764a694e387d78f86a68c940c93d4443b7b327b70efb8a9e.jpg", + "text": "$$\nW _ { c } ( P _ { X } , P _ { G } ) \\leq W _ { c } ^ { \\dagger } ( P _ { X } , P _ { G } ) : = \\operatorname* { i n f } _ { P \\in \\mathcal { P } _ { X , Y } } \\mathbb { E } _ { ( X , Y ) \\sim P } \\left[ c ( X , Y ) \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 287, + 813, + 710, + 840 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "If $P _ { G } ( Y | Z )$ are Dirac measures (i.e., $Y = G ( Z ) )$ , it turns out that $\\mathcal { P } _ { X , Y } = \\mathcal { P } ( P _ { X } , P _ { G } )$ : ", + "bbox": [ + 171, + 845, + 751, + 863 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Lemma 1 $\\mathcal { P } _ { X , Y } \\subseteq \\mathcal { P } ( P _ { X } , P _ { G } )$ with identity $i f ^ { 6 } ~ P _ { G } ( Y | Z = z )$ are Dirac for all $z \\in { \\mathcal { Z } }$ . ", + "bbox": [ + 171, + 102, + 751, + 119 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Proof The first assertion is obvious. To prove the identity, note that when $Y$ is a deterministic function of $Z$ , for any $A$ in the sigma-algebra induced by $Y$ we have $\\mathbb { E } \\left[ \\mathbb { 1 } _ { [ Y \\in A ] } | X , Z \\right] = \\mathbb { E } \\left[ \\mathbb { 1 } _ { [ Y \\in A ] } | Z \\right]$ . This implies $( Y \\perp \\perp X ) | Z$ and concludes the proof. ", + "bbox": [ + 173, + 128, + 825, + 174 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We are now in place to prove Theorem 1. Lemma 1 obviously leads to ", + "bbox": [ + 173, + 200, + 635, + 217 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/5fad4c089ed46e041e888e1354250fd12c2da03691113069d45e7c34d2eb98f7.jpg", + "text": "$$\nW _ { c } ( P _ { X } , P _ { G } ) = W _ { c } ^ { \\dagger } ( P _ { X } , P _ { G } ) .\n$$", + "text_format": "latex", + "bbox": [ + 397, + 222, + 599, + 241 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "The tower rule of expectation, and the conditional independence property of ${ \\mathcal { P } } _ { X , Y , Z }$ implies ", + "bbox": [ + 173, + 246, + 776, + 261 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/653bed1e8cad7ed1de42342b9a7c0aa95c3d1fe17f75f4d5d3812d5573a3ca76.jpg", + "text": "$$\n\\begin{array} { r l } & { W _ { c } ^ { \\dagger } ( P _ { X } , P _ { G } ) = \\underset { P \\in \\mathcal { P } _ { X , Y , Z } } { \\operatorname* { i n f } } \\mathbb { E } _ { ( X , Y , Z ) \\sim P } \\left[ c ( X , Y ) \\right] } \\\\ & { \\quad \\quad \\quad = \\underset { P \\in \\mathcal { P } _ { X , Y , Z } } { \\operatorname* { i n f } } \\mathbb { E } _ { P _ { Z } } \\mathbb { E } _ { X \\sim P ( X \\mid Z ) } \\mathbb { E } _ { Y \\sim P ( Y \\mid Z ) } [ c ( X , Y ) ] } \\\\ & { \\quad \\quad \\quad = \\underset { P \\in \\mathcal { P } _ { X , Y , Z } } { \\operatorname* { i n f } } \\mathbb { E } _ { P _ { Z } } \\mathbb { E } _ { X \\sim P ( X \\mid Z ) } \\left[ c \\left( X , G ( Z ) \\right) \\right] } \\\\ & { \\quad \\quad \\quad = \\underset { P \\in \\mathcal { P } _ { X , Z } } { \\operatorname* { i n f } } \\mathbb { E } _ { ( X , Z ) \\sim P } \\left[ c \\left( X , G ( Z ) \\right) \\right] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 284, + 267, + 712, + 376 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "It remains to notice that $\\mathcal { P } _ { X , Z } = \\mathcal { P } ( X \\sim P _ { X } , Z \\sim P _ { Z } )$ as stated earlier. ", + "bbox": [ + 173, + 381, + 648, + 397 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "B.1 RANDOM DECODERS $P _ { G } ( Y | Z )$ ", + "text_level": 1, + "bbox": [ + 174, + 412, + 429, + 428 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "If the decoders are non-deterministic, Lemma 1 provides only the inclusion of sets $\\mathcal { P } _ { X , Y } \\subseteq \\mathcal { P } ( P _ { X } , P _ { G } )$ and we get the following upper bound on the OT: ", + "bbox": [ + 171, + 439, + 823, + 468 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Corollary 1 Let $\\mathcal { X } ~ = ~ \\mathcal { R } ^ { d }$ and assume the conditional distributions $P _ { G } ( Y | Z = z )$ have mean values $G ( z ) \\in \\mathcal { R } ^ { d }$ and marginal variances $\\sigma _ { 1 } ^ { 2 } , \\ldots , \\sigma _ { d } ^ { 2 } \\geq 0$ for all $z \\in { \\mathcal { Z } }$ , where $G \\colon { \\mathcal { Z } } \\to { \\mathcal { X } }$ . Take $c ( x , y ) = \\| x - y \\| _ { 2 } ^ { 2 }$ . Then ", + "bbox": [ + 174, + 479, + 825, + 525 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/3191801fdce877583d57ab64b281fe1a4a2f12b841d0bc7daead3630c2b31298.jpg", + "text": "$$\nW _ { c } ( P _ { X } , P _ { G } ) \\leq W _ { c } ^ { \\dagger } ( P _ { X } , P _ { G } ) = \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { 2 } + \\operatorname* { i n f } _ { P \\in \\mathcal { P } ( X \\setminus P _ { X } , Z \\sim P _ { Z } ) } \\mathbb { E } _ { ( X , Z ) \\sim P } \\big [ \\| X - G ( Z ) \\| ^ { 2 } \\big ] .\n$$", + "text_format": "latex", + "bbox": [ + 191, + 529, + 781, + 571 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Proof First inequality follows from (9). For the identity we proceed similarly to the proof of Theorem 1 and write ", + "bbox": [ + 173, + 583, + 826, + 612 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/435b3f67c7089dcb32fdf511c52506db9c9f938851293f40e5095673d00dd171.jpg", + "text": "$$\nW _ { c } ^ { \\dagger } ( P _ { X } , P _ { G } ) = \\operatorname* { i n f } _ { P \\in \\mathcal { P } _ { X , Y , Z } } \\mathbb { E } _ { P _ { Z } } \\mathbb { E } _ { X \\sim P ( X \\mid Z ) } \\mathbb { E } _ { Y \\sim P ( Y \\mid Z ) } \\left[ \\left\\| X - Y \\right\\| ^ { 2 } \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 272, + 616, + 725, + 643 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Note that ", + "bbox": [ + 173, + 648, + 238, + 662 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/6635a165dd4c7884d61bad12d4d8eafea9a3505f1a3845db267635dbf26e8001.jpg", + "text": "$$\n\\begin{array} { l } { \\mathbb { E } _ { Y \\sim P ( Y \\vert Z ) } \\big [ \\| X - Y \\| ^ { 2 } \\big ] = \\mathbb { E } _ { Y \\sim P ( Y \\vert Z ) } \\big [ \\| X - G ( Z ) + G ( Z ) - Y \\| ^ { 2 } \\big ] } \\\\ { = \\| X - G ( Z ) \\| ^ { 2 } + \\mathbb { E } _ { Y \\sim P ( Y \\vert Z ) } \\big [ \\langle X - G ( Z ) , G ( Z ) - Y \\rangle \\big ] + \\mathbb { E } _ { Y \\sim P ( Y \\vert Z ) } \\| G ( Z ) - Y \\| ^ { 2 } } \\\\ { = \\| X - G ( Z ) \\| ^ { 2 } + \\displaystyle \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { 2 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 205, + 666, + 792, + 753 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Together with (11) and the fact that $\\mathcal { P } _ { X , Z } = \\mathcal { P } ( X \\sim P _ { X } , Z \\sim P _ { Z } )$ this concludes the proof. ", + "bbox": [ + 168, + 757, + 779, + 775 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "C FURTHER DETAILS ON EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 173, + 814, + 517, + 830 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "C.1 MNIST ", + "text_level": 1, + "bbox": [ + 173, + 844, + 272, + 859 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We use mini-batches of size 100 and trained the models for 100 epochs. We used $\\lambda = 1 0$ and $\\sigma _ { z } ^ { 2 } = 1$ . For the encoder-decoder pair we set $\\alpha = 1 0 ^ { - 3 }$ for Adam in the beginning and for the ", + "bbox": [ + 174, + 871, + 826, + 900 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "adversary in WAE-GAN to $\\alpha = 5 \\times 1 0 ^ { - 4 }$ . After 30 epochs we decreased both by factor of 2, and after first 50 epochs further by factor of 5. ", + "bbox": [ + 173, + 103, + 825, + 132 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Both encoder and decoder used fully convolutional architectures with 4x4 convolutional filters. ", + "bbox": [ + 173, + 138, + 795, + 154 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Encoder architecture: ", + "bbox": [ + 174, + 160, + 315, + 174 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/4ec08ef2fb77f6182905c1b2463089a01ddd69b21d39057868d34af6a063a0a8.jpg", + "text": "$$\n\\begin{array} { r l } { x \\in \\mathcal { R } ^ { 2 8 \\times 2 8 } \\mathrm { C o n v _ { 1 2 8 } } \\mathrm { B N } \\mathrm { R e L U } } & { } \\\\ { \\mathrm { C o n v _ { 2 5 6 } } \\mathrm { B N } \\mathrm { R e L U } } & { } \\\\ { \\mathrm { C o n v _ { 5 1 2 } } \\mathrm { B N } \\mathrm { R e L U } } & { } \\\\ { \\mathrm { C o n v _ { 1 0 2 4 } } \\mathrm { B N } \\mathrm { R e L U } \\mathrm { F C } _ { 8 } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 325, + 175, + 673, + 248 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Decoder architecture: ", + "bbox": [ + 174, + 257, + 316, + 272 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/5f2642888c10b61733327ce52932487c854bc6e0a19397bc95bd54e41612f99b.jpg", + "text": "$$\n\\begin{array} { r l } & { z \\in \\mathcal { R } ^ { 8 } \\mathrm { F C } _ { 7 \\times 7 \\times 1 0 2 4 } } \\\\ & { \\qquad \\mathrm { F S C o n v } _ { 5 1 2 } \\mathrm { B N } \\mathrm { R e L U } } \\\\ & { \\qquad \\mathrm { F S C o n v } _ { 2 5 6 } \\mathrm { B N } \\mathrm { R e L U } \\mathrm { F S C o n v } _ { 1 } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 316, + 273, + 678, + 329 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Adversary architecture for WAE-GAN: ", + "bbox": [ + 176, + 337, + 433, + 352 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/e1f139d7840af0aceff1b6d56897c99b40596ad65bd6ff3df7eeac4824de9bbf.jpg", + "text": "$$\n\\begin{array} { r l } & { z \\in \\mathcal { R } ^ { 8 } \\mathrm { F C } _ { 5 1 2 } \\mathrm { R e L U } } \\\\ & { ~ \\mathrm { F C } _ { 5 1 2 } \\mathrm { R e L U } } \\\\ & { ~ \\mathrm { F C } _ { 5 1 2 } \\mathrm { R e L U } } \\\\ & { ~ \\mathrm { F C } _ { 5 1 2 } \\mathrm { R e L U } \\mathrm { F C } _ { 1 } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 375, + 353, + 620, + 426 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Here $\\operatorname { C o n v } _ { k }$ stands for a convolution with $k$ filters, $\\mathrm { F S C o n v } _ { k }$ for the fractional strided convolution with $k$ filters (first two of them were doubling the resolution, the third one kept it constant), BN for the batch normalization, ReLU for the rectified linear units, and $\\mathrm { F C } _ { \\mathrm { k } }$ for the fully connected layer mapping to $\\mathcal { R } ^ { k }$ . All the convolutions in the encoder used vertical and horizontal strides 2 and SAME padding. ", + "bbox": [ + 173, + 434, + 825, + 506 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Finally, we used two heuristics. First, we always pretrained separately the encoder for several minibatch steps before the main training stage so that the sample mean and covariance of $Q _ { Z }$ would try to match those of $P _ { Z }$ . Second, while training we were adding a pixel-wise Gaussian noise truncated at 0.01 to all the images before feeding them to the encoder, which was meant to make the encoders random. We played with all possible ways of combining these two heuristics and noticed that together they result in slightly (almost negligibly) better results compared to using only one or none of them. ", + "bbox": [ + 173, + 511, + 825, + 609 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Our VAE model used cross-entropy loss (Bernoulli decoder) and otherwise same architectures and hyperparameters as listed above. ", + "bbox": [ + 173, + 616, + 823, + 645 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "C.2 CELEBA ", + "text_level": 1, + "bbox": [ + 174, + 660, + 277, + 675 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We pre-processed CelebA images by first taking a $1 4 0 \\mathrm { x } 1 4 0$ center crops and then resizing to the $6 4 \\mathrm { x } 6 4$ resolution. We used mini-batches of size 100 and trained the models for various number of epochs (up to 250). All reported WAE models were trained for 55 epochs and VAE for 68 epochs. For WAE-MMD we used $\\lambda = 1 0 0$ and for WAE-GAN $\\lambda = 1$ . Both used $\\sigma _ { z } ^ { 2 } = 2$ . ", + "bbox": [ + 174, + 686, + 825, + 742 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "For WAE-MMD the learning rate of Adam was initially set to $\\alpha = 1 0 ^ { - 3 }$ . For WAE-GAN the learning rate of Adam for the encoder-decoder pair was initially set to $\\alpha = 3 \\times 1 0 ^ { - 4 }$ and for the adversary to $1 0 ^ { - 3 }$ . All learning rates were decreased by factor of 2 after 30 epochs, further by factor of 5 after 50 first epochs, and finally additional factor of 10 after 100 first epochs. ", + "bbox": [ + 173, + 750, + 825, + 806 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Both encoder and decoder used fully convolutional architectures with $5 \\mathrm { x } 5$ convolutional filters. ", + "bbox": [ + 169, + 811, + 794, + 827 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Encoder architecture: ", + "bbox": [ + 174, + 834, + 315, + 848 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/0b4a05953840371a154045fa91646c9656f16a1d3250d31dbf4bb2d438b78793.jpg", + "text": "$$\n\\begin{array} { r l } & { x \\in \\mathcal { R } ^ { 6 4 \\times 6 4 \\times 3 } \\to \\mathrm { C o n v _ { 1 2 8 } } \\to \\mathrm { B N } \\to \\mathrm { R e L U } } \\\\ & { \\qquad \\to \\mathrm { C o n v _ { 2 5 6 } } \\to \\mathrm { B N } \\to \\mathrm { R e L U } } \\\\ & { \\qquad \\to \\mathrm { C o n v _ { 5 1 2 } } \\to \\mathrm { B N } \\to \\mathrm { R e L U } } \\\\ & { \\qquad \\to \\mathrm { C o n v _ { 1 0 2 4 } } \\to \\mathrm { B N } \\to \\mathrm { R e L U } \\to \\mathrm { F C } _ { 6 4 } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 313, + 848, + 686, + 922 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Decoder architecture: ", + "bbox": [ + 174, + 103, + 316, + 117 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/3e05e6baaffed94a4836e3264097296730055df532749b1f7b051889c00086f8.jpg", + "text": "$$\n\\begin{array} { r l } { z \\in \\mathcal { R } ^ { 6 4 } \\mathrm { F C } _ { 8 \\times 8 \\times 1 0 2 4 } } & { } \\\\ { \\mathrm { F S C o n v } _ { 5 1 2 } \\mathrm { B N } \\mathrm { R e L U } } \\\\ { \\mathrm { F S C o n v } _ { 2 5 6 } \\mathrm { B N } \\mathrm { R e L U } } & { } \\\\ { \\mathrm { F S C o n v } _ { 1 2 8 } \\mathrm { B N } \\mathrm { R e L U } \\mathrm { F S C o n v } _ { 1 } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 312, + 123, + 681, + 196 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Adversary architecture for WAE-GAN: ", + "bbox": [ + 174, + 209, + 433, + 224 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/efe2c9405faf9db2c3548f178daba26ef0ed251f5b288574f892bd82ed35f8f0.jpg", + "text": "$$\n\\begin{array} { r l } { z \\in \\mathcal { R } ^ { 6 4 } \\to \\mathrm { F C } _ { 5 1 2 } \\to \\mathrm { R e L U } } \\\\ { \\to \\mathrm { F C } _ { 5 1 2 } \\to \\mathrm { R e L U } } \\\\ { \\to \\mathrm { F C } _ { 5 1 2 } \\to \\mathrm { R e L U } } \\\\ { \\to \\mathrm { F C } _ { 5 1 2 } \\to \\mathrm { R e L U } \\to \\mathrm { F C } _ { 1 } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 372, + 228, + 624, + 303 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "For WAE-GAN we used a heuristic proposed in Supplementary $\\mathrm { I V }$ of Mescheder et al. (2017). Notice that the theoretically optimal discriminator would result in $D ^ { * } ( z ) = \\log p _ { Z } ( z ) - \\log q _ { Z } ( z )$ , where $p _ { Z }$ and $q _ { Z }$ are densities of $P _ { Z }$ and $Q _ { Z }$ respectively. In our experiments we added the log prior $\\log p _ { Z } ( z )$ explicitly to the adversary output as we know it analytically. This should hopefully make it easier for the adversary to learn the remaining $Q _ { Z }$ density term. ", + "bbox": [ + 173, + 314, + 825, + 386 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Our VAE model used a cross-entropy reconstruction loss (Bernoulli decoder) and $\\alpha = 1 0 ^ { - 4 }$ as the initial Adam learning rate and the same decay schedule as explained above. Otherwise all the architectures and hyperparameters were as explained above. ", + "bbox": [ + 174, + 391, + 823, + 434 + ], + "page_idx": 15 + } +] \ No newline at end of file diff --git a/parse/train/HkL7n1-0b/HkL7n1-0b_middle.json b/parse/train/HkL7n1-0b/HkL7n1-0b_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..045332b421803b7cf1862f87f8828b3c452ade60 --- /dev/null +++ b/parse/train/HkL7n1-0b/HkL7n1-0b_middle.json @@ -0,0 +1,51913 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 349, + 96 + ], + "lines": [ + { + "bbox": [ + 106, + 77, + 351, + 99 + ], + "spans": [ + { + "bbox": [ + 106, + 77, + 351, + 99 + ], + "score": 1.0, + "content": "WASSERSTEIN AUTO-ENCODERS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 113, + 115, + 225, + 160 + ], + "lines": [ + { + "bbox": [ + 112, + 115, + 177, + 126 + ], + "spans": [ + { + "bbox": [ + 112, + 115, + 177, + 126 + ], + "score": 1.0, + "content": "Ilya Tolstikhin", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 111, + 125, + 226, + 139 + ], + "spans": [ + { + "bbox": [ + 111, + 125, + 226, + 139 + ], + "score": 1.0, + "content": "MPI for Intelligent Systems", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 111, + 136, + 195, + 150 + ], + "spans": [ + { + "bbox": [ + 111, + 136, + 195, + 150 + ], + "score": 1.0, + "content": "Tubingen, Germany ¨", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 112, + 148, + 205, + 162 + ], + "spans": [ + { + "bbox": [ + 112, + 148, + 205, + 162 + ], + "score": 1.0, + "content": "ilya@tue.mpg.de", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4.0 + }, + { + "type": "text", + "bbox": [ + 376, + 115, + 498, + 160 + ], + "lines": [ + { + "bbox": [ + 376, + 114, + 452, + 128 + ], + "spans": [ + { + "bbox": [ + 376, + 114, + 452, + 128 + ], + "score": 1.0, + "content": "Olivier Bousquet", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 376, + 126, + 434, + 139 + ], + "spans": [ + { + "bbox": [ + 376, + 126, + 434, + 139 + ], + "score": 1.0, + "content": "Google Brain", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 376, + 137, + 459, + 149 + ], + "spans": [ + { + "bbox": [ + 376, + 137, + 459, + 149 + ], + "score": 1.0, + "content": "Zurich, Switzerland ¨", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 377, + 149, + 499, + 160 + ], + "spans": [ + { + "bbox": [ + 377, + 149, + 499, + 160 + ], + "score": 1.0, + "content": "obousquet@google.com", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.0 + }, + { + "type": "text", + "bbox": [ + 113, + 176, + 252, + 221 + ], + "lines": [ + { + "bbox": [ + 111, + 174, + 172, + 191 + ], + "spans": [ + { + "bbox": [ + 111, + 174, + 172, + 191 + ], + "score": 1.0, + "content": "Sylvain Gelly", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 111, + 187, + 170, + 199 + ], + "spans": [ + { + "bbox": [ + 111, + 187, + 170, + 199 + ], + "score": 1.0, + "content": "Google Brain", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 112, + 198, + 194, + 209 + ], + "spans": [ + { + "bbox": [ + 112, + 198, + 194, + 209 + ], + "score": 1.0, + "content": "Zurich, Switzerland¨", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 113, + 210, + 252, + 221 + ], + "spans": [ + { + "bbox": [ + 113, + 210, + 252, + 221 + ], + "score": 1.0, + "content": "sylvaingelly@google.com", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12.0 + }, + { + "type": "text", + "bbox": [ + 324, + 176, + 436, + 220 + ], + "lines": [ + { + "bbox": [ + 323, + 175, + 413, + 190 + ], + "spans": [ + { + "bbox": [ + 323, + 175, + 413, + 190 + ], + "score": 1.0, + "content": "Bernhard Scholkopf ¨", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 323, + 186, + 437, + 200 + ], + "spans": [ + { + "bbox": [ + 323, + 186, + 437, + 200 + ], + "score": 1.0, + "content": "MPI for Intelligent Systems", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 322, + 198, + 406, + 212 + ], + "spans": [ + { + "bbox": [ + 322, + 198, + 406, + 212 + ], + "score": 1.0, + "content": "Tubingen, Germany ¨", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 322, + 209, + 404, + 223 + ], + "spans": [ + { + "bbox": [ + 322, + 209, + 404, + 223 + ], + "score": 1.0, + "content": "bs@tue.mpg.de", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.0 + }, + { + "type": "title", + "bbox": [ + 278, + 250, + 333, + 262 + ], + "lines": [ + { + "bbox": [ + 276, + 249, + 335, + 263 + ], + "spans": [ + { + "bbox": [ + 276, + 249, + 335, + 263 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 143, + 279, + 468, + 400 + ], + "lines": [ + { + "bbox": [ + 142, + 279, + 469, + 293 + ], + "spans": [ + { + "bbox": [ + 142, + 279, + 469, + 293 + ], + "score": 1.0, + "content": "We propose the Wasserstein Auto-Encoder (WAE)—a new algorithm for building", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 140, + 290, + 470, + 302 + ], + "spans": [ + { + "bbox": [ + 140, + 290, + 470, + 302 + ], + "score": 1.0, + "content": "a generative model of the data distribution. WAE minimizes a penalized form of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 302, + 469, + 313 + ], + "spans": [ + { + "bbox": [ + 141, + 302, + 469, + 313 + ], + "score": 1.0, + "content": "the Wasserstein distance between the model distribution and the target distribu-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 312, + 469, + 324 + ], + "spans": [ + { + "bbox": [ + 141, + 312, + 469, + 324 + ], + "score": 1.0, + "content": "tion, which leads to a different regularizer than the one used by the Variational", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 322, + 470, + 336 + ], + "spans": [ + { + "bbox": [ + 141, + 322, + 470, + 336 + ], + "score": 1.0, + "content": "Auto-Encoder (VAE) (Kingma & Welling, 2014). This regularizer encourages", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 334, + 469, + 346 + ], + "spans": [ + { + "bbox": [ + 141, + 334, + 469, + 346 + ], + "score": 1.0, + "content": "the encoded training distribution to match the prior. We compare our algorithm", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 344, + 470, + 358 + ], + "spans": [ + { + "bbox": [ + 141, + 344, + 470, + 358 + ], + "score": 1.0, + "content": "with several other techniques and show that it is a generalization of adversarial", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 356, + 470, + 369 + ], + "spans": [ + { + "bbox": [ + 141, + 356, + 470, + 369 + ], + "score": 1.0, + "content": "auto-encoders (AAE) (Makhzani et al., 2016). Our experiments show that WAE", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 142, + 367, + 469, + 379 + ], + "spans": [ + { + "bbox": [ + 142, + 367, + 469, + 379 + ], + "score": 1.0, + "content": "shares many of the properties of VAEs (stable training, encoder-decoder architec-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 378, + 469, + 391 + ], + "spans": [ + { + "bbox": [ + 141, + 378, + 469, + 391 + ], + "score": 1.0, + "content": "ture, nice latent manifold structure) while generating samples of better quality, as", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 389, + 255, + 402 + ], + "spans": [ + { + "bbox": [ + 141, + 389, + 255, + 402 + ], + "score": 1.0, + "content": "measured by the FID score.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 108, + 433, + 206, + 446 + ], + "lines": [ + { + "bbox": [ + 105, + 432, + 208, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 208, + 449 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 462, + 505, + 605 + ], + "lines": [ + { + "bbox": [ + 105, + 461, + 506, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 506, + 476 + ], + "score": 1.0, + "content": "The field of representation learning was initially driven by supervised approaches, with impressive", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "score": 1.0, + "content": "results using large labelled datasets. Unsupervised generative modeling, in contrast, used to be a", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "score": 1.0, + "content": "domain governed by probabilistic approaches focusing on low-dimensional data. Recent years have", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "score": 1.0, + "content": "seen a convergence of those two approaches. In the new field that formed at the intersection, vari-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "ational auto-encoders (VAEs) (Kingma & Welling, 2014) constitute one well-established approach,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 517, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 505, + 530 + ], + "score": 1.0, + "content": "theoretically elegant yet with the drawback that they tend to generate blurry samples when applied", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 528, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 506, + 541 + ], + "score": 1.0, + "content": "to natural images. In contrast, generative adversarial networks (GANs) (Goodfellow et al., 2014)", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "turned out to be more impressive in terms of the visual quality of images sampled from the model,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 551, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 562 + ], + "score": 1.0, + "content": "but come without an encoder, have been reported harder to train, and suffer from the “mode col-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "lapse” problem where the resulting model is unable to capture all the variability in the true data", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "distribution. There has been a flurry of activity in assaying numerous configurations of GANs as", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "well as combinations of VAEs and GANs. A unifying framework combining the best of GANs and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 595, + 304, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 304, + 606 + ], + "score": 1.0, + "content": "VAEs in a principled way is yet to be discovered.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 611, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 610, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 624 + ], + "score": 1.0, + "content": "This work builds up on the theoretical analysis presented in Bousquet et al. (2017). Following", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "score": 1.0, + "content": "Arjovsky et al. (2017); Bousquet et al. (2017), we approach generative modeling from the opti-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 632, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 646 + ], + "score": 1.0, + "content": "mal transport (OT) point of view. The OT cost (Villani, 2003) is a way to measure a distance", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 643, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 658 + ], + "score": 1.0, + "content": "between probability distributions and provides a much weaker topology than many others, including", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 107, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 107, + 655, + 114, + 667 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "-divergences associated with the original GAN algorithms (Nowozin et al., 2016). This is partic-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 665, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 680 + ], + "score": 1.0, + "content": "ularly important in applications, where data is usually supported on low dimensional manifolds in", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 169, + 690 + ], + "score": 1.0, + "content": "the input space", + "type": "text" + }, + { + "bbox": [ + 169, + 677, + 179, + 687 + ], + "score": 0.73, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 677, + 384, + 690 + ], + "score": 1.0, + "content": ". As a result, stronger notions of distances (such as", + "type": "text" + }, + { + "bbox": [ + 385, + 677, + 392, + 689 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "-divergences, which capture", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 688, + 504, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 504, + 700 + ], + "score": 1.0, + "content": "the density ratio between distributions) often max out, providing no useful gradients for training. In", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "contrast, OT was claimed to have a nicer behaviour (Arjovsky et al., 2017; Gulrajani et al., 2017)", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "although it requires, in its GAN-like implementation, the addition of a constraint or a regularization", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 722, + 200, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 722, + 200, + 733 + ], + "score": 1.0, + "content": "term into the objective.", + "type": "text" + } + ], + "index": 53 + } + ], + "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 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 303, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 349, + 96 + ], + "lines": [ + { + "bbox": [ + 106, + 77, + 351, + 99 + ], + "spans": [ + { + "bbox": [ + 106, + 77, + 351, + 99 + ], + "score": 1.0, + "content": "WASSERSTEIN AUTO-ENCODERS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 113, + 115, + 225, + 160 + ], + "lines": [ + { + "bbox": [ + 112, + 115, + 177, + 126 + ], + "spans": [ + { + "bbox": [ + 112, + 115, + 177, + 126 + ], + "score": 1.0, + "content": "Ilya Tolstikhin", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 111, + 125, + 226, + 139 + ], + "spans": [ + { + "bbox": [ + 111, + 125, + 226, + 139 + ], + "score": 1.0, + "content": "MPI for Intelligent Systems", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 111, + 136, + 195, + 150 + ], + "spans": [ + { + "bbox": [ + 111, + 136, + 195, + 150 + ], + "score": 1.0, + "content": "Tubingen, Germany ¨", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 112, + 148, + 205, + 162 + ], + "spans": [ + { + "bbox": [ + 112, + 148, + 205, + 162 + ], + "score": 1.0, + "content": "ilya@tue.mpg.de", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4.0, + "bbox_fs": [ + 111, + 115, + 226, + 162 + ] + }, + { + "type": "list", + "bbox": [ + 376, + 115, + 498, + 160 + ], + "lines": [ + { + "bbox": [ + 376, + 114, + 452, + 128 + ], + "spans": [ + { + "bbox": [ + 376, + 114, + 452, + 128 + ], + "score": 1.0, + "content": "Olivier Bousquet", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 376, + 126, + 434, + 139 + ], + "spans": [ + { + "bbox": [ + 376, + 126, + 434, + 139 + ], + "score": 1.0, + "content": "Google Brain", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 376, + 137, + 459, + 149 + ], + "spans": [ + { + "bbox": [ + 376, + 137, + 459, + 149 + ], + "score": 1.0, + "content": "Zurich, Switzerland ¨", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 377, + 149, + 499, + 160 + ], + "spans": [ + { + "bbox": [ + 377, + 149, + 499, + 160 + ], + "score": 1.0, + "content": "obousquet@google.com", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 174, + 172, + 191 + ], + "spans": [ + { + "bbox": [ + 111, + 174, + 172, + 191 + ], + "score": 1.0, + "content": "Sylvain Gelly", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 187, + 170, + 199 + ], + "spans": [ + { + "bbox": [ + 111, + 187, + 170, + 199 + ], + "score": 1.0, + "content": "Google Brain", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 112, + 198, + 194, + 209 + ], + "spans": [ + { + "bbox": [ + 112, + 198, + 194, + 209 + ], + "score": 1.0, + "content": "Zurich, Switzerland¨", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 210, + 252, + 221 + ], + "spans": [ + { + "bbox": [ + 113, + 210, + 252, + 221 + ], + "score": 1.0, + "content": "sylvaingelly@google.com", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + } + ], + "index": 5.0, + "bbox_fs": [ + 376, + 114, + 499, + 160 + ] + }, + { + "type": "list", + "bbox": [ + 113, + 176, + 252, + 221 + ], + "lines": [], + "index": 12.0, + "bbox_fs": [ + 111, + 174, + 252, + 221 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 324, + 176, + 436, + 220 + ], + "lines": [ + { + "bbox": [ + 323, + 175, + 413, + 190 + ], + "spans": [ + { + "bbox": [ + 323, + 175, + 413, + 190 + ], + "score": 1.0, + "content": "Bernhard Scholkopf ¨", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 323, + 186, + 437, + 200 + ], + "spans": [ + { + "bbox": [ + 323, + 186, + 437, + 200 + ], + "score": 1.0, + "content": "MPI for Intelligent Systems", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 322, + 198, + 406, + 212 + ], + "spans": [ + { + "bbox": [ + 322, + 198, + 406, + 212 + ], + "score": 1.0, + "content": "Tubingen, Germany ¨", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 322, + 209, + 404, + 223 + ], + "spans": [ + { + "bbox": [ + 322, + 209, + 404, + 223 + ], + "score": 1.0, + "content": "bs@tue.mpg.de", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.0, + "bbox_fs": [ + 322, + 175, + 437, + 223 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 250, + 333, + 262 + ], + "lines": [ + { + "bbox": [ + 276, + 249, + 335, + 263 + ], + "spans": [ + { + "bbox": [ + 276, + 249, + 335, + 263 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 143, + 279, + 468, + 400 + ], + "lines": [ + { + "bbox": [ + 142, + 279, + 469, + 293 + ], + "spans": [ + { + "bbox": [ + 142, + 279, + 469, + 293 + ], + "score": 1.0, + "content": "We propose the Wasserstein Auto-Encoder (WAE)—a new algorithm for building", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 140, + 290, + 470, + 302 + ], + "spans": [ + { + "bbox": [ + 140, + 290, + 470, + 302 + ], + "score": 1.0, + "content": "a generative model of the data distribution. WAE minimizes a penalized form of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 302, + 469, + 313 + ], + "spans": [ + { + "bbox": [ + 141, + 302, + 469, + 313 + ], + "score": 1.0, + "content": "the Wasserstein distance between the model distribution and the target distribu-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 312, + 469, + 324 + ], + "spans": [ + { + "bbox": [ + 141, + 312, + 469, + 324 + ], + "score": 1.0, + "content": "tion, which leads to a different regularizer than the one used by the Variational", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 322, + 470, + 336 + ], + "spans": [ + { + "bbox": [ + 141, + 322, + 470, + 336 + ], + "score": 1.0, + "content": "Auto-Encoder (VAE) (Kingma & Welling, 2014). This regularizer encourages", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 334, + 469, + 346 + ], + "spans": [ + { + "bbox": [ + 141, + 334, + 469, + 346 + ], + "score": 1.0, + "content": "the encoded training distribution to match the prior. We compare our algorithm", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 344, + 470, + 358 + ], + "spans": [ + { + "bbox": [ + 141, + 344, + 470, + 358 + ], + "score": 1.0, + "content": "with several other techniques and show that it is a generalization of adversarial", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 356, + 470, + 369 + ], + "spans": [ + { + "bbox": [ + 141, + 356, + 470, + 369 + ], + "score": 1.0, + "content": "auto-encoders (AAE) (Makhzani et al., 2016). Our experiments show that WAE", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 142, + 367, + 469, + 379 + ], + "spans": [ + { + "bbox": [ + 142, + 367, + 469, + 379 + ], + "score": 1.0, + "content": "shares many of the properties of VAEs (stable training, encoder-decoder architec-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 378, + 469, + 391 + ], + "spans": [ + { + "bbox": [ + 141, + 378, + 469, + 391 + ], + "score": 1.0, + "content": "ture, nice latent manifold structure) while generating samples of better quality, as", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 389, + 255, + 402 + ], + "spans": [ + { + "bbox": [ + 141, + 389, + 255, + 402 + ], + "score": 1.0, + "content": "measured by the FID score.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 23, + "bbox_fs": [ + 140, + 279, + 470, + 402 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 433, + 206, + 446 + ], + "lines": [ + { + "bbox": [ + 105, + 432, + 208, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 208, + 449 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 462, + 505, + 605 + ], + "lines": [ + { + "bbox": [ + 105, + 461, + 506, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 506, + 476 + ], + "score": 1.0, + "content": "The field of representation learning was initially driven by supervised approaches, with impressive", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "score": 1.0, + "content": "results using large labelled datasets. Unsupervised generative modeling, in contrast, used to be a", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "score": 1.0, + "content": "domain governed by probabilistic approaches focusing on low-dimensional data. Recent years have", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "score": 1.0, + "content": "seen a convergence of those two approaches. In the new field that formed at the intersection, vari-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "ational auto-encoders (VAEs) (Kingma & Welling, 2014) constitute one well-established approach,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 517, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 505, + 530 + ], + "score": 1.0, + "content": "theoretically elegant yet with the drawback that they tend to generate blurry samples when applied", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 528, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 506, + 541 + ], + "score": 1.0, + "content": "to natural images. In contrast, generative adversarial networks (GANs) (Goodfellow et al., 2014)", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "turned out to be more impressive in terms of the visual quality of images sampled from the model,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 551, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 562 + ], + "score": 1.0, + "content": "but come without an encoder, have been reported harder to train, and suffer from the “mode col-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "lapse” problem where the resulting model is unable to capture all the variability in the true data", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "distribution. There has been a flurry of activity in assaying numerous configurations of GANs as", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "well as combinations of VAEs and GANs. A unifying framework combining the best of GANs and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 595, + 304, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 304, + 606 + ], + "score": 1.0, + "content": "VAEs in a principled way is yet to be discovered.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 461, + 506, + 606 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 611, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 610, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 624 + ], + "score": 1.0, + "content": "This work builds up on the theoretical analysis presented in Bousquet et al. (2017). Following", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "score": 1.0, + "content": "Arjovsky et al. (2017); Bousquet et al. (2017), we approach generative modeling from the opti-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 632, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 646 + ], + "score": 1.0, + "content": "mal transport (OT) point of view. The OT cost (Villani, 2003) is a way to measure a distance", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 643, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 658 + ], + "score": 1.0, + "content": "between probability distributions and provides a much weaker topology than many others, including", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 107, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 107, + 655, + 114, + 667 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "-divergences associated with the original GAN algorithms (Nowozin et al., 2016). This is partic-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 665, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 680 + ], + "score": 1.0, + "content": "ularly important in applications, where data is usually supported on low dimensional manifolds in", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 169, + 690 + ], + "score": 1.0, + "content": "the input space", + "type": "text" + }, + { + "bbox": [ + 169, + 677, + 179, + 687 + ], + "score": 0.73, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 677, + 384, + 690 + ], + "score": 1.0, + "content": ". As a result, stronger notions of distances (such as", + "type": "text" + }, + { + "bbox": [ + 385, + 677, + 392, + 689 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "-divergences, which capture", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 688, + 504, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 504, + 700 + ], + "score": 1.0, + "content": "the density ratio between distributions) often max out, providing no useful gradients for training. In", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "contrast, OT was claimed to have a nicer behaviour (Arjovsky et al., 2017; Gulrajani et al., 2017)", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "although it requires, in its GAN-like implementation, the addition of a constraint or a regularization", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 722, + 200, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 722, + 200, + 733 + ], + "score": 1.0, + "content": "term into the objective.", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 48, + "bbox_fs": [ + 105, + 610, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 119, + 79, + 492, + 231 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 119, + 79, + 492, + 231 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 119, + 79, + 492, + 231 + ], + "spans": [ + { + "bbox": [ + 119, + 79, + 492, + 231 + ], + "score": 0.967, + "type": "image", + "image_path": "dfbfcc5b3c4f8ecaf5bcf4d077a22aa437f7aa7791df942b76efddc7ab3c527b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 119, + 79, + 492, + 129.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 119, + 129.66666666666666, + 492, + 180.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 119, + 180.33333333333331, + 492, + 230.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 243, + 505, + 331 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 244, + 504, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 504, + 256 + ], + "score": 1.0, + "content": "Figure 1: Both VAE and WAE minimize two terms: the reconstruction cost and the regularizer penal-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 254, + 504, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 213, + 268 + ], + "score": 1.0, + "content": "izing discrepancy between", + "type": "text" + }, + { + "bbox": [ + 214, + 255, + 228, + 266 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 254, + 387, + 268 + ], + "score": 1.0, + "content": "and distribution induced by the encoder", + "type": "text" + }, + { + "bbox": [ + 387, + 255, + 397, + 266 + ], + "score": 0.79, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 254, + 448, + 268 + ], + "score": 1.0, + "content": ". VAE forces", + "type": "text" + }, + { + "bbox": [ + 449, + 255, + 504, + 267 + ], + "score": 0.91, + "content": "Q ( Z | X = x )", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 266, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 145, + 278 + ], + "score": 1.0, + "content": "to match", + "type": "text" + }, + { + "bbox": [ + 145, + 266, + 159, + 277 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 266, + 306, + 278 + ], + "score": 1.0, + "content": "for all the different input examples", + "type": "text" + }, + { + "bbox": [ + 306, + 268, + 313, + 276 + ], + "score": 0.7, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 266, + 366, + 278 + ], + "score": 1.0, + "content": "drawn from", + "type": "text" + }, + { + "bbox": [ + 366, + 266, + 381, + 277 + ], + "score": 0.89, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 266, + 506, + 278 + ], + "score": 1.0, + "content": ". This is illustrated on picture", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 277, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 311, + 289 + ], + "score": 1.0, + "content": "(a), where every single red ball is forced to match", + "type": "text" + }, + { + "bbox": [ + 311, + 277, + 325, + 288 + ], + "score": 0.88, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 277, + 506, + 289 + ], + "score": 1.0, + "content": "depicted as the white shape. Red balls start", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 287, + 506, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 506, + 301 + ], + "score": 1.0, + "content": "intersecting, which leads to problems with reconstruction. In contrast, WAE forces the continuous", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 298, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 140, + 312 + ], + "score": 1.0, + "content": "mixture", + "type": "text" + }, + { + "bbox": [ + 141, + 298, + 237, + 311 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\dot { Q _ { Z } } : = \\int Q ( Z | X ) \\dot { d } P _ { X } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 298, + 277, + 312 + ], + "score": 1.0, + "content": "to match", + "type": "text" + }, + { + "bbox": [ + 277, + 299, + 291, + 310 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 298, + 506, + 312 + ], + "score": 1.0, + "content": ", as depicted with the green ball in picture (b). As a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 309, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 506, + 322 + ], + "score": 1.0, + "content": "result latent codes of different examples get a chance to stay far away from each other, promoting a", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 321, + 193, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 193, + 332 + ], + "score": 1.0, + "content": "better reconstruction.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5 + } + ], + "index": 3.75 + }, + { + "type": "text", + "bbox": [ + 108, + 356, + 505, + 401 + ], + "lines": [ + { + "bbox": [ + 105, + 356, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 258, + 370 + ], + "score": 1.0, + "content": "In this work we aim at minimizing OT", + "type": "text" + }, + { + "bbox": [ + 258, + 357, + 311, + 369 + ], + "score": 0.93, + "content": "W _ { c } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 356, + 505, + 370 + ], + "score": 1.0, + "content": "between the true (but unknown) data distribution", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 368, + 504, + 380 + ], + "spans": [ + { + "bbox": [ + 107, + 369, + 122, + 379 + ], + "score": 0.88, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 122, + 368, + 239, + 380 + ], + "score": 1.0, + "content": "and a latent variable model", + "type": "text" + }, + { + "bbox": [ + 239, + 369, + 253, + 379 + ], + "score": 0.88, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 368, + 393, + 380 + ], + "score": 1.0, + "content": "specified by the prior distribution", + "type": "text" + }, + { + "bbox": [ + 394, + 369, + 408, + 379 + ], + "score": 0.9, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 368, + 472, + 380 + ], + "score": 1.0, + "content": "of latent codes", + "type": "text" + }, + { + "bbox": [ + 472, + 368, + 504, + 379 + ], + "score": 0.92, + "content": "Z \\in { \\mathcal { Z } }", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 378, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 209, + 392 + ], + "score": 1.0, + "content": "and the generative model", + "type": "text" + }, + { + "bbox": [ + 210, + 379, + 251, + 391 + ], + "score": 0.92, + "content": "P _ { G } ( X | Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 378, + 324, + 392 + ], + "score": 1.0, + "content": "of the data points", + "type": "text" + }, + { + "bbox": [ + 324, + 379, + 356, + 389 + ], + "score": 0.9, + "content": "X \\in { \\mathcal { X } }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 378, + 381, + 392 + ], + "score": 1.0, + "content": "given", + "type": "text" + }, + { + "bbox": [ + 381, + 380, + 390, + 389 + ], + "score": 0.77, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 378, + 506, + 392 + ], + "score": 1.0, + "content": ". Our main contributions are", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 390, + 234, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 234, + 403 + ], + "score": 1.0, + "content": "listed below (cf. also Figure 1):", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 131, + 412, + 505, + 655 + ], + "lines": [ + { + "bbox": [ + 133, + 412, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 133, + 412, + 505, + 425 + ], + "score": 1.0, + "content": "• A new family of regularized auto-encoders (Algorithms 1, 2 and Eq. 4), which we call", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 423, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 141, + 423, + 435, + 437 + ], + "score": 1.0, + "content": "Wasserstein Auto-Encoders (WAE), that minimize the optimal transport", + "type": "text" + }, + { + "bbox": [ + 435, + 424, + 489, + 436 + ], + "score": 0.92, + "content": "W _ { c } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 423, + 506, + 437 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 434, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 141, + 434, + 213, + 447 + ], + "score": 1.0, + "content": "any cost function", + "type": "text" + }, + { + "bbox": [ + 213, + 437, + 218, + 444 + ], + "score": 0.45, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 434, + 506, + 447 + ], + "score": 1.0, + "content": ". Similarly to VAE, the objective of WAE is composed of two terms: the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 143, + 445, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 143, + 449, + 148, + 456 + ], + "score": 0.66, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 445, + 296, + 459 + ], + "score": 1.0, + "content": "-reconstruction cost and a regularizer", + "type": "text" + }, + { + "bbox": [ + 297, + 446, + 351, + 457 + ], + "score": 0.94, + "content": "\\mathcal { D } _ { Z } ( P _ { Z } , Q _ { Z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 445, + 506, + 459 + ], + "score": 1.0, + "content": "penalizing a discrepancy between two", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 456, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 141, + 456, + 204, + 469 + ], + "score": 1.0, + "content": "distributions in", + "type": "text" + }, + { + "bbox": [ + 204, + 457, + 213, + 467 + ], + "score": 0.28, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 456, + 217, + 469 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 217, + 457, + 231, + 468 + ], + "score": 0.7, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 456, + 410, + 469 + ], + "score": 1.0, + "content": "and a distribution of encoded data points, i.e.", + "type": "text" + }, + { + "bbox": [ + 411, + 456, + 501, + 469 + ], + "score": 0.93, + "content": "Q _ { Z } \\backslash = \\dot { \\mathbb { E } } _ { P _ { X } } [ Q ( Z | X ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 456, + 505, + 469 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 467, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 142, + 467, + 168, + 479 + ], + "score": 1.0, + "content": "When", + "type": "text" + }, + { + "bbox": [ + 169, + 469, + 175, + 477 + ], + "score": 0.73, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 467, + 268, + 479 + ], + "score": 1.0, + "content": "is the squared cost and", + "type": "text" + }, + { + "bbox": [ + 268, + 468, + 284, + 479 + ], + "score": 0.9, + "content": "\\mathcal { D } _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 467, + 505, + 479 + ], + "score": 1.0, + "content": "is the GAN objective, WAE coincides with adversarial", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 479, + 307, + 490 + ], + "spans": [ + { + "bbox": [ + 142, + 479, + 307, + 490 + ], + "score": 1.0, + "content": "auto-encoders of Makhzani et al. (2016).", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 139, + 496, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 139, + 496, + 464, + 510 + ], + "score": 1.0, + "content": "Empirical evaluation of WAE on MNIST and CelebA datasets with squared cost", + "type": "text" + }, + { + "bbox": [ + 465, + 497, + 505, + 509 + ], + "score": 0.91, + "content": "c ( x , y ) =", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 507, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 142, + 507, + 182, + 520 + ], + "score": 0.91, + "content": "\\| x - y \\| _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 507, + 506, + 520 + ], + "score": 1.0, + "content": ". Our experiments show that WAE keeps the good properties of VAEs (stable", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 142, + 520, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 142, + 520, + 505, + 531 + ], + "score": 1.0, + "content": "training, encoder-decoder architecture, and a nice latent manifold structure) while generat-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 530, + 378, + 542 + ], + "spans": [ + { + "bbox": [ + 141, + 530, + 378, + 542 + ], + "score": 1.0, + "content": "ing samples of better quality, approaching those of GANs.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 132, + 548, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 132, + 548, + 350, + 560 + ], + "score": 1.0, + "content": "• We propose and examine two different regularizers", + "type": "text" + }, + { + "bbox": [ + 351, + 548, + 405, + 560 + ], + "score": 0.93, + "content": "\\mathcal { D } _ { Z } ( P _ { Z } , Q _ { Z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 548, + 505, + 560 + ], + "score": 1.0, + "content": ". One is based on GANs", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 558, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 141, + 558, + 314, + 573 + ], + "score": 1.0, + "content": "and adversarial training in the latent space", + "type": "text" + }, + { + "bbox": [ + 315, + 560, + 324, + 569 + ], + "score": 0.72, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 558, + 505, + 573 + ], + "score": 1.0, + "content": ". The other uses the maximum mean discrep-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 570, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 141, + 570, + 505, + 582 + ], + "score": 1.0, + "content": "ancy, which is known to perform well when matching high-dimensional standard normal", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 142, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 142, + 581, + 195, + 594 + ], + "score": 1.0, + "content": "distributions", + "type": "text" + }, + { + "bbox": [ + 196, + 581, + 210, + 592 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "(Gretton et al., 2012). Importantly, the second option leads to a fully", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 141, + 592, + 330, + 604 + ], + "spans": [ + { + "bbox": [ + 141, + 592, + 330, + 604 + ], + "score": 1.0, + "content": "adversary-free min-min optimization problem.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 132, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 132, + 610, + 505, + 623 + ], + "score": 1.0, + "content": "• Finally, the theoretical considerations presented in Bousquet et al. (2017) and used here to", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 621, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 141, + 621, + 505, + 633 + ], + "score": 1.0, + "content": "derive the WAE objective might be interesting in their own right. In particular, Theorem 1", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 141, + 632, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 141, + 632, + 397, + 645 + ], + "score": 1.0, + "content": "shows that in the case of generative models, the primal form of", + "type": "text" + }, + { + "bbox": [ + 397, + 632, + 451, + 644 + ], + "score": 0.91, + "content": "W _ { c } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 632, + 506, + 645 + ], + "score": 1.0, + "content": "is equivalent", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 141, + 643, + 449, + 655 + ], + "spans": [ + { + "bbox": [ + 141, + 643, + 407, + 655 + ], + "score": 1.0, + "content": "to a problem involving the optimization of a probabilistic encoder", + "type": "text" + }, + { + "bbox": [ + 407, + 644, + 443, + 655 + ], + "score": 0.92, + "content": "Q ( Z | X )", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 643, + 449, + 655 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "The paper is structured as follows. In Section 2 we review a novel auto-encoder formulation for", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 158, + 690 + ], + "score": 1.0, + "content": "OT between", + "type": "text" + }, + { + "bbox": [ + 158, + 677, + 173, + 688 + ], + "score": 0.89, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 676, + 295, + 690 + ], + "score": 1.0, + "content": "and the latent variable model", + "type": "text" + }, + { + "bbox": [ + 295, + 677, + 310, + 688 + ], + "score": 0.88, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "derived in Bousquet et al. (2017). Relaxing the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 688, + 504, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 504, + 700 + ], + "score": 1.0, + "content": "resulting constrained optimization problem we arrive at an objective of Wasserstein auto-encoders.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "We propose two different regularizers, leading to WAE-GAN and WAE-MMD algorithms. Section", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "3 discusses the related work. We present the experimental results in Section 4 and conclude by", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 721, + 331, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 331, + 733 + ], + "score": 1.0, + "content": "pointing out some promising directions for future work.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.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": "image", + "bbox": [ + 119, + 79, + 492, + 231 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 119, + 79, + 492, + 231 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 119, + 79, + 492, + 231 + ], + "spans": [ + { + "bbox": [ + 119, + 79, + 492, + 231 + ], + "score": 0.967, + "type": "image", + "image_path": "dfbfcc5b3c4f8ecaf5bcf4d077a22aa437f7aa7791df942b76efddc7ab3c527b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 119, + 79, + 492, + 129.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 119, + 129.66666666666666, + 492, + 180.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 119, + 180.33333333333331, + 492, + 230.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 243, + 505, + 331 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 244, + 504, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 504, + 256 + ], + "score": 1.0, + "content": "Figure 1: Both VAE and WAE minimize two terms: the reconstruction cost and the regularizer penal-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 254, + 504, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 213, + 268 + ], + "score": 1.0, + "content": "izing discrepancy between", + "type": "text" + }, + { + "bbox": [ + 214, + 255, + 228, + 266 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 254, + 387, + 268 + ], + "score": 1.0, + "content": "and distribution induced by the encoder", + "type": "text" + }, + { + "bbox": [ + 387, + 255, + 397, + 266 + ], + "score": 0.79, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 254, + 448, + 268 + ], + "score": 1.0, + "content": ". VAE forces", + "type": "text" + }, + { + "bbox": [ + 449, + 255, + 504, + 267 + ], + "score": 0.91, + "content": "Q ( Z | X = x )", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 266, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 145, + 278 + ], + "score": 1.0, + "content": "to match", + "type": "text" + }, + { + "bbox": [ + 145, + 266, + 159, + 277 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 266, + 306, + 278 + ], + "score": 1.0, + "content": "for all the different input examples", + "type": "text" + }, + { + "bbox": [ + 306, + 268, + 313, + 276 + ], + "score": 0.7, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 266, + 366, + 278 + ], + "score": 1.0, + "content": "drawn from", + "type": "text" + }, + { + "bbox": [ + 366, + 266, + 381, + 277 + ], + "score": 0.89, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 266, + 506, + 278 + ], + "score": 1.0, + "content": ". This is illustrated on picture", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 277, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 311, + 289 + ], + "score": 1.0, + "content": "(a), where every single red ball is forced to match", + "type": "text" + }, + { + "bbox": [ + 311, + 277, + 325, + 288 + ], + "score": 0.88, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 277, + 506, + 289 + ], + "score": 1.0, + "content": "depicted as the white shape. Red balls start", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 287, + 506, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 506, + 301 + ], + "score": 1.0, + "content": "intersecting, which leads to problems with reconstruction. In contrast, WAE forces the continuous", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 298, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 140, + 312 + ], + "score": 1.0, + "content": "mixture", + "type": "text" + }, + { + "bbox": [ + 141, + 298, + 237, + 311 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\dot { Q _ { Z } } : = \\int Q ( Z | X ) \\dot { d } P _ { X } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 298, + 277, + 312 + ], + "score": 1.0, + "content": "to match", + "type": "text" + }, + { + "bbox": [ + 277, + 299, + 291, + 310 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 298, + 506, + 312 + ], + "score": 1.0, + "content": ", as depicted with the green ball in picture (b). As a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 309, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 506, + 322 + ], + "score": 1.0, + "content": "result latent codes of different examples get a chance to stay far away from each other, promoting a", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 321, + 193, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 193, + 332 + ], + "score": 1.0, + "content": "better reconstruction.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5 + } + ], + "index": 3.75 + }, + { + "type": "text", + "bbox": [ + 108, + 356, + 505, + 401 + ], + "lines": [ + { + "bbox": [ + 105, + 356, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 258, + 370 + ], + "score": 1.0, + "content": "In this work we aim at minimizing OT", + "type": "text" + }, + { + "bbox": [ + 258, + 357, + 311, + 369 + ], + "score": 0.93, + "content": "W _ { c } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 356, + 505, + 370 + ], + "score": 1.0, + "content": "between the true (but unknown) data distribution", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 368, + 504, + 380 + ], + "spans": [ + { + "bbox": [ + 107, + 369, + 122, + 379 + ], + "score": 0.88, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 122, + 368, + 239, + 380 + ], + "score": 1.0, + "content": "and a latent variable model", + "type": "text" + }, + { + "bbox": [ + 239, + 369, + 253, + 379 + ], + "score": 0.88, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 368, + 393, + 380 + ], + "score": 1.0, + "content": "specified by the prior distribution", + "type": "text" + }, + { + "bbox": [ + 394, + 369, + 408, + 379 + ], + "score": 0.9, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 368, + 472, + 380 + ], + "score": 1.0, + "content": "of latent codes", + "type": "text" + }, + { + "bbox": [ + 472, + 368, + 504, + 379 + ], + "score": 0.92, + "content": "Z \\in { \\mathcal { Z } }", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 378, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 209, + 392 + ], + "score": 1.0, + "content": "and the generative model", + "type": "text" + }, + { + "bbox": [ + 210, + 379, + 251, + 391 + ], + "score": 0.92, + "content": "P _ { G } ( X | Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 378, + 324, + 392 + ], + "score": 1.0, + "content": "of the data points", + "type": "text" + }, + { + "bbox": [ + 324, + 379, + 356, + 389 + ], + "score": 0.9, + "content": "X \\in { \\mathcal { X } }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 378, + 381, + 392 + ], + "score": 1.0, + "content": "given", + "type": "text" + }, + { + "bbox": [ + 381, + 380, + 390, + 389 + ], + "score": 0.77, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 378, + 506, + 392 + ], + "score": 1.0, + "content": ". Our main contributions are", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 390, + 234, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 234, + 403 + ], + "score": 1.0, + "content": "listed below (cf. also Figure 1):", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 356, + 506, + 403 + ] + }, + { + "type": "list", + "bbox": [ + 131, + 412, + 505, + 655 + ], + "lines": [ + { + "bbox": [ + 133, + 412, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 133, + 412, + 505, + 425 + ], + "score": 1.0, + "content": "• A new family of regularized auto-encoders (Algorithms 1, 2 and Eq. 4), which we call", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 423, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 141, + 423, + 435, + 437 + ], + "score": 1.0, + "content": "Wasserstein Auto-Encoders (WAE), that minimize the optimal transport", + "type": "text" + }, + { + "bbox": [ + 435, + 424, + 489, + 436 + ], + "score": 0.92, + "content": "W _ { c } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 423, + 506, + 437 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 434, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 141, + 434, + 213, + 447 + ], + "score": 1.0, + "content": "any cost function", + "type": "text" + }, + { + "bbox": [ + 213, + 437, + 218, + 444 + ], + "score": 0.45, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 434, + 506, + 447 + ], + "score": 1.0, + "content": ". Similarly to VAE, the objective of WAE is composed of two terms: the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 143, + 445, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 143, + 449, + 148, + 456 + ], + "score": 0.66, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 445, + 296, + 459 + ], + "score": 1.0, + "content": "-reconstruction cost and a regularizer", + "type": "text" + }, + { + "bbox": [ + 297, + 446, + 351, + 457 + ], + "score": 0.94, + "content": "\\mathcal { D } _ { Z } ( P _ { Z } , Q _ { Z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 445, + 506, + 459 + ], + "score": 1.0, + "content": "penalizing a discrepancy between two", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 456, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 141, + 456, + 204, + 469 + ], + "score": 1.0, + "content": "distributions in", + "type": "text" + }, + { + "bbox": [ + 204, + 457, + 213, + 467 + ], + "score": 0.28, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 456, + 217, + 469 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 217, + 457, + 231, + 468 + ], + "score": 0.7, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 456, + 410, + 469 + ], + "score": 1.0, + "content": "and a distribution of encoded data points, i.e.", + "type": "text" + }, + { + "bbox": [ + 411, + 456, + 501, + 469 + ], + "score": 0.93, + "content": "Q _ { Z } \\backslash = \\dot { \\mathbb { E } } _ { P _ { X } } [ Q ( Z | X ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 456, + 505, + 469 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 467, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 142, + 467, + 168, + 479 + ], + "score": 1.0, + "content": "When", + "type": "text" + }, + { + "bbox": [ + 169, + 469, + 175, + 477 + ], + "score": 0.73, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 467, + 268, + 479 + ], + "score": 1.0, + "content": "is the squared cost and", + "type": "text" + }, + { + "bbox": [ + 268, + 468, + 284, + 479 + ], + "score": 0.9, + "content": "\\mathcal { D } _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 467, + 505, + 479 + ], + "score": 1.0, + "content": "is the GAN objective, WAE coincides with adversarial", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 479, + 307, + 490 + ], + "spans": [ + { + "bbox": [ + 142, + 479, + 307, + 490 + ], + "score": 1.0, + "content": "auto-encoders of Makhzani et al. (2016).", + "type": "text" + } + ], + "index": 21, + "is_list_end_line": true + }, + { + "bbox": [ + 139, + 496, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 139, + 496, + 464, + 510 + ], + "score": 1.0, + "content": "Empirical evaluation of WAE on MNIST and CelebA datasets with squared cost", + "type": "text" + }, + { + "bbox": [ + 465, + 497, + 505, + 509 + ], + "score": 0.91, + "content": "c ( x , y ) =", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 507, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 142, + 507, + 182, + 520 + ], + "score": 0.91, + "content": "\\| x - y \\| _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 507, + 506, + 520 + ], + "score": 1.0, + "content": ". Our experiments show that WAE keeps the good properties of VAEs (stable", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 142, + 520, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 142, + 520, + 505, + 531 + ], + "score": 1.0, + "content": "training, encoder-decoder architecture, and a nice latent manifold structure) while generat-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 530, + 378, + 542 + ], + "spans": [ + { + "bbox": [ + 141, + 530, + 378, + 542 + ], + "score": 1.0, + "content": "ing samples of better quality, approaching those of GANs.", + "type": "text" + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 548, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 132, + 548, + 350, + 560 + ], + "score": 1.0, + "content": "• We propose and examine two different regularizers", + "type": "text" + }, + { + "bbox": [ + 351, + 548, + 405, + 560 + ], + "score": 0.93, + "content": "\\mathcal { D } _ { Z } ( P _ { Z } , Q _ { Z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 548, + 505, + 560 + ], + "score": 1.0, + "content": ". One is based on GANs", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 558, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 141, + 558, + 314, + 573 + ], + "score": 1.0, + "content": "and adversarial training in the latent space", + "type": "text" + }, + { + "bbox": [ + 315, + 560, + 324, + 569 + ], + "score": 0.72, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 558, + 505, + 573 + ], + "score": 1.0, + "content": ". The other uses the maximum mean discrep-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 570, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 141, + 570, + 505, + 582 + ], + "score": 1.0, + "content": "ancy, which is known to perform well when matching high-dimensional standard normal", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 142, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 142, + 581, + 195, + 594 + ], + "score": 1.0, + "content": "distributions", + "type": "text" + }, + { + "bbox": [ + 196, + 581, + 210, + 592 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "(Gretton et al., 2012). Importantly, the second option leads to a fully", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 141, + 592, + 330, + 604 + ], + "spans": [ + { + "bbox": [ + 141, + 592, + 330, + 604 + ], + "score": 1.0, + "content": "adversary-free min-min optimization problem.", + "type": "text" + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 132, + 610, + 505, + 623 + ], + "score": 1.0, + "content": "• Finally, the theoretical considerations presented in Bousquet et al. (2017) and used here to", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 621, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 141, + 621, + 505, + 633 + ], + "score": 1.0, + "content": "derive the WAE objective might be interesting in their own right. In particular, Theorem 1", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 141, + 632, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 141, + 632, + 397, + 645 + ], + "score": 1.0, + "content": "shows that in the case of generative models, the primal form of", + "type": "text" + }, + { + "bbox": [ + 397, + 632, + 451, + 644 + ], + "score": 0.91, + "content": "W _ { c } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 632, + 506, + 645 + ], + "score": 1.0, + "content": "is equivalent", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 141, + 643, + 449, + 655 + ], + "spans": [ + { + "bbox": [ + 141, + 643, + 407, + 655 + ], + "score": 1.0, + "content": "to a problem involving the optimization of a probabilistic encoder", + "type": "text" + }, + { + "bbox": [ + 407, + 644, + 443, + 655 + ], + "score": 0.92, + "content": "Q ( Z | X )", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 643, + 449, + 655 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 34, + "is_list_end_line": true + } + ], + "index": 24.5, + "bbox_fs": [ + 132, + 412, + 506, + 655 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "The paper is structured as follows. In Section 2 we review a novel auto-encoder formulation for", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 158, + 690 + ], + "score": 1.0, + "content": "OT between", + "type": "text" + }, + { + "bbox": [ + 158, + 677, + 173, + 688 + ], + "score": 0.89, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 676, + 295, + 690 + ], + "score": 1.0, + "content": "and the latent variable model", + "type": "text" + }, + { + "bbox": [ + 295, + 677, + 310, + 688 + ], + "score": 0.88, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "derived in Bousquet et al. (2017). Relaxing the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 688, + 504, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 504, + 700 + ], + "score": 1.0, + "content": "resulting constrained optimization problem we arrive at an objective of Wasserstein auto-encoders.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "We propose two different regularizers, leading to WAE-GAN and WAE-MMD algorithms. Section", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "3 discusses the related work. We present the experimental results in Section 4 and conclude by", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 721, + 331, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 331, + 733 + ], + "score": 1.0, + "content": "pointing out some promising directions for future work.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 665, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 228, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 229, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 229, + 96 + ], + "score": 1.0, + "content": "2 PROPOSED METHOD", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 106, + 505, + 185 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 506, + 121 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 321, + 121 + ], + "score": 1.0, + "content": "Our new method minimizes the optimal transport cost", + "type": "text" + }, + { + "bbox": [ + 321, + 107, + 374, + 119 + ], + "score": 0.95, + "content": "W _ { c } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 106, + 506, + 121 + ], + "score": 1.0, + "content": "based on the novel auto-encoder", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 505, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 505, + 131 + ], + "score": 1.0, + "content": "formulation (see Theorem 1 below). In the resulting optimization problem the decoder tries to ac-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 129, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 443, + 141 + ], + "score": 1.0, + "content": "curately reconstruct the encoded training examples as measured by the cost function", + "type": "text" + }, + { + "bbox": [ + 443, + 131, + 449, + 139 + ], + "score": 0.59, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 129, + 505, + 141 + ], + "score": 1.0, + "content": ". The encoder", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 140, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 106, + 140, + 505, + 153 + ], + "score": 1.0, + "content": "tries to simultaneously achieve two conflicting goals: it tries to match the encoded distribution", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 150, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 194, + 164 + ], + "score": 1.0, + "content": "of training examples", + "type": "text" + }, + { + "bbox": [ + 194, + 151, + 288, + 163 + ], + "score": 0.93, + "content": "{ \\dot { Q } } _ { Z } : = \\mathbb { E } _ { P _ { X } } [ Q ( Z | X ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 150, + 339, + 164 + ], + "score": 1.0, + "content": "to the prior", + "type": "text" + }, + { + "bbox": [ + 340, + 151, + 354, + 162 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 150, + 505, + 164 + ], + "score": 1.0, + "content": "as measured by any specified diver-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 162, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 132, + 174 + ], + "score": 1.0, + "content": "gence", + "type": "text" + }, + { + "bbox": [ + 132, + 162, + 186, + 174 + ], + "score": 0.93, + "content": "\\mathcal { D } _ { Z } ( Q _ { Z } , P _ { Z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 162, + 506, + 174 + ], + "score": 1.0, + "content": ", while making sure that the latent codes provided to the decoder are informative", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 173, + 486, + 186 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 486, + 186 + ], + "score": 1.0, + "content": "enough to reconstruct the encoded training examples. This is schematically depicted on Fig. 1.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4 + }, + { + "type": "title", + "bbox": [ + 108, + 199, + 271, + 210 + ], + "lines": [ + { + "bbox": [ + 106, + 199, + 272, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 272, + 212 + ], + "score": 1.0, + "content": "2.1 PRELIMINARIES AND NOTATIONS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 220, + 505, + 303 + ], + "lines": [ + { + "bbox": [ + 106, + 219, + 506, + 233 + ], + "spans": [ + { + "bbox": [ + 106, + 219, + 241, + 233 + ], + "score": 1.0, + "content": "We use calligraphic letters (i.e.", + "type": "text" + }, + { + "bbox": [ + 241, + 221, + 253, + 231 + ], + "score": 0.48, + "content": "\\mathcal { X } )", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 219, + 375, + 233 + ], + "score": 1.0, + "content": "for sets, capital letters (i.e.", + "type": "text" + }, + { + "bbox": [ + 376, + 221, + 389, + 231 + ], + "score": 0.62, + "content": "X )", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 219, + 506, + 233 + ], + "score": 1.0, + "content": "for random variables, and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 198, + 244 + ], + "score": 1.0, + "content": "lower case letters (i.e.", + "type": "text" + }, + { + "bbox": [ + 198, + 233, + 206, + 242 + ], + "score": 0.55, + "content": "x _ { \\mathrm { . } }", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 231, + 505, + 244 + ], + "score": 1.0, + "content": ") for their values. We denote probability distributions with capital letters", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 243, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 124, + 255 + ], + "score": 1.0, + "content": "(i.e.", + "type": "text" + }, + { + "bbox": [ + 124, + 243, + 153, + 255 + ], + "score": 0.9, + "content": "P ( X ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 243, + 387, + 255 + ], + "score": 1.0, + "content": "and corresponding densities with lower case letters (i.e.", + "type": "text" + }, + { + "bbox": [ + 387, + 243, + 408, + 254 + ], + "score": 0.88, + "content": "p ( x ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 243, + 505, + 255 + ], + "score": 1.0, + "content": "). In this work we will", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 252, + 506, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 410, + 267 + ], + "score": 1.0, + "content": "consider several measures of discrepancy between probability distributions", + "type": "text" + }, + { + "bbox": [ + 411, + 254, + 425, + 264 + ], + "score": 0.88, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 252, + 445, + 267 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 445, + 254, + 459, + 264 + ], + "score": 0.87, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 252, + 506, + 267 + ], + "score": 1.0, + "content": ". The class", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 101, + 258, + 502, + 293 + ], + "spans": [ + { + "bbox": [ + 101, + 258, + 118, + 293 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 119, + 267, + 126, + 279 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 258, + 134, + 293 + ], + "score": 1.0, + "content": "-d", + "type": "text" + }, + { + "bbox": [ + 200, + 258, + 335, + 293 + ], + "score": 1.0, + "content": "e & Miescke, 2008) is defined b", + "type": "text" + }, + { + "bbox": [ + 343, + 265, + 502, + 281 + ], + "score": 0.92, + "content": "\\begin{array} { r } { D _ { f } ( P _ { X } \\| P _ { G } ) : = \\int f \\big ( \\frac { p _ { X } ( x ) } { p _ { G } ( x ) } \\big ) p _ { G } ( x ) d x } \\end{array}", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 134, + 280, + 375, + 293 + ], + "spans": [ + { + "bbox": [ + 134, + 280, + 200, + 292 + ], + "score": 0.91, + "content": "f \\colon ( 0 , \\infty ) \\to { \\mathcal { R } }", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 280, + 375, + 293 + ], + "score": 0.92, + "content": "f ( 1 ) = 0", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 291, + 355, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 177, + 304 + ], + "score": 1.0, + "content": "Kullback-Leibler", + "type": "text" + }, + { + "bbox": [ + 178, + 292, + 199, + 302 + ], + "score": 0.88, + "content": "D _ { \\mathrm { K L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 291, + 284, + 304 + ], + "score": 1.0, + "content": "and Jensen-Shannon", + "type": "text" + }, + { + "bbox": [ + 284, + 291, + 302, + 303 + ], + "score": 0.9, + "content": "D _ { \\mathrm { J S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 291, + 355, + 304 + ], + "score": 1.0, + "content": "divergences.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 107, + 318, + 359, + 329 + ], + "lines": [ + { + "bbox": [ + 106, + 318, + 360, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 360, + 330 + ], + "score": 1.0, + "content": "2.2 OPTIMAL TRANSPORT AND ITS DUAL FORMULATIONS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 105, + 339, + 503, + 362 + ], + "lines": [ + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "score": 1.0, + "content": "A rich class of divergences between probability distributions is induced by the optimal trans-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 349, + 463, + 363 + ], + "spans": [ + { + "bbox": [ + 104, + 349, + 463, + 363 + ], + "score": 1.0, + "content": "port (OT) problem (Villani, 2003). Kantorovich’s formulation of the problem is given by", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "interline_equation", + "bbox": [ + 190, + 368, + 419, + 388 + ], + "lines": [ + { + "bbox": [ + 190, + 368, + 419, + 388 + ], + "spans": [ + { + "bbox": [ + 190, + 368, + 419, + 388 + ], + "score": 0.92, + "content": "W _ { c } ( P _ { X } , P _ { G } ) : = \\operatorname* { i n f } _ { \\Gamma \\in { \\mathcal { P } } ( X \\sim P _ { X } , Y \\sim P _ { G } ) } \\mathbb { E } _ { ( X , Y ) \\sim \\Gamma } [ c ( X , Y ) ] ,", + "type": "interline_equation", + "image_path": "d4e9d952b993474bb949c7d0c4312c3cb190b0ca448977e1d3bb429ba4007def.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 190, + 368, + 419, + 388 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 395, + 505, + 440 + ], + "lines": [ + { + "bbox": [ + 105, + 395, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 133, + 408 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 396, + 227, + 407 + ], + "score": 0.91, + "content": "c ( x , y ) \\colon \\mathcal { X } \\times \\mathcal { X } \\to \\mathcal { R } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 395, + 372, + 408 + ], + "score": 1.0, + "content": "is any measurable cost function and", + "type": "text" + }, + { + "bbox": [ + 372, + 396, + 464, + 407 + ], + "score": 0.91, + "content": "{ \\mathcal { P } } ( X \\sim P _ { X } , Y \\sim P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 395, + 506, + 408 + ], + "score": 1.0, + "content": "is a set of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 204, + 419 + ], + "score": 1.0, + "content": "all joint distributions of", + "type": "text" + }, + { + "bbox": [ + 205, + 407, + 234, + 419 + ], + "score": 0.91, + "content": "( X , Y )", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 406, + 298, + 419 + ], + "score": 1.0, + "content": "with marginals", + "type": "text" + }, + { + "bbox": [ + 298, + 407, + 313, + 417 + ], + "score": 0.89, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 406, + 332, + 419 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 332, + 407, + 346, + 418 + ], + "score": 0.88, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "respectively. A particularly interesting", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 161, + 430 + ], + "score": 1.0, + "content": "case is when", + "type": "text" + }, + { + "bbox": [ + 162, + 418, + 188, + 430 + ], + "score": 0.92, + "content": "( \\mathcal { X } , d )", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 417, + 278, + 430 + ], + "score": 1.0, + "content": "is a metric space and", + "type": "text" + }, + { + "bbox": [ + 278, + 418, + 354, + 430 + ], + "score": 0.92, + "content": "c ( x , y ) = d ^ { p } ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 417, + 370, + 430 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 371, + 418, + 397, + 429 + ], + "score": 0.9, + "content": "p \\geq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 417, + 452, + 430 + ], + "score": 1.0, + "content": ". In this case", + "type": "text" + }, + { + "bbox": [ + 452, + 418, + 466, + 430 + ], + "score": 0.89, + "content": "W _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 417, + 486, + 430 + ], + "score": 1.0, + "content": ", the", + "type": "text" + }, + { + "bbox": [ + 486, + 419, + 493, + 429 + ], + "score": 0.81, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "-th", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 429, + 302, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 136, + 442 + ], + "score": 1.0, + "content": "root of", + "type": "text" + }, + { + "bbox": [ + 136, + 429, + 150, + 440 + ], + "score": 0.87, + "content": "W _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 429, + 204, + 442 + ], + "score": 1.0, + "content": ", is called the", + "type": "text" + }, + { + "bbox": [ + 205, + 431, + 210, + 441 + ], + "score": 0.79, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 429, + 302, + 442 + ], + "score": 1.0, + "content": "-Wasserstein distance.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 445, + 419, + 457 + ], + "lines": [ + { + "bbox": [ + 106, + 444, + 420, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 133, + 459 + ], + "score": 1.0, + "content": "When", + "type": "text" + }, + { + "bbox": [ + 133, + 446, + 203, + 458 + ], + "score": 0.93, + "content": "c ( x , y ) = d ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 444, + 420, + 459 + ], + "score": 1.0, + "content": "the following Kantorovich-Rubinstein duality holds1:", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "interline_equation", + "bbox": [ + 193, + 463, + 417, + 486 + ], + "lines": [ + { + "bbox": [ + 193, + 463, + 417, + 486 + ], + "spans": [ + { + "bbox": [ + 193, + 463, + 417, + 486 + ], + "score": 0.93, + "content": "W _ { 1 } ( P _ { X } , P _ { G } ) = \\operatorname* { s u p } _ { f \\in { \\mathcal { F } } _ { L } } \\mathbb { E } _ { X \\sim P _ { X } } [ f ( X ) ] - \\mathbb { E } _ { Y \\sim P _ { G } } [ f ( Y ) ] ,", + "type": "interline_equation", + "image_path": "18b31c033b1150941ed4f04e8e9e413b9559579c3c06661edc65fd560d526be3.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 193, + 463, + 417, + 486 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 492, + 384, + 504 + ], + "lines": [ + { + "bbox": [ + 105, + 490, + 381, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 133, + 506 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 493, + 147, + 504 + ], + "score": 0.89, + "content": "\\mathcal { F } _ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 490, + 355, + 506 + ], + "score": 1.0, + "content": "is the class of all bounded 1-Lipschitz functions on", + "type": "text" + }, + { + "bbox": [ + 355, + 492, + 381, + 505 + ], + "score": 0.92, + "content": "( \\mathcal { X } , d )", + "type": "inline_equation" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "title", + "bbox": [ + 108, + 519, + 443, + 531 + ], + "lines": [ + { + "bbox": [ + 105, + 518, + 444, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 444, + 532 + ], + "score": 1.0, + "content": "2.3 APPLICATION TO GENERATIVE MODELS: WASSERSTEIN AUTO-ENCODERS", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 540, + 505, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 539, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 554 + ], + "score": 1.0, + "content": "One way to look at modern generative models like VAEs and GANs is to postulate that they are try-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 549, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 411, + 565 + ], + "score": 1.0, + "content": "ing to minimize certain discrepancy measures between the data distribution", + "type": "text" + }, + { + "bbox": [ + 411, + 552, + 426, + 562 + ], + "score": 0.9, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 549, + 487, + 565 + ], + "score": 1.0, + "content": "and the model", + "type": "text" + }, + { + "bbox": [ + 487, + 552, + 501, + 562 + ], + "score": 0.9, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 549, + 506, + 565 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 560, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 506, + 576 + ], + "score": 1.0, + "content": "Unfortunately, most of the standard divergences known in the literature, including those listed above,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 572, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 104, + 572, + 333, + 587 + ], + "score": 1.0, + "content": "are hard or even impossible to compute, especially when", + "type": "text" + }, + { + "bbox": [ + 333, + 574, + 348, + 584 + ], + "score": 0.9, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 572, + 414, + 587 + ], + "score": 1.0, + "content": "is unknown and", + "type": "text" + }, + { + "bbox": [ + 414, + 574, + 428, + 584 + ], + "score": 0.89, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 572, + 505, + 587 + ], + "score": 1.0, + "content": "is parametrized by", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 585, + 446, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 446, + 597 + ], + "score": 1.0, + "content": "deep neural networks. Previous research provides several tricks to address this issue.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 600, + 505, + 700 + ], + "lines": [ + { + "bbox": [ + 105, + 600, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 275, + 615 + ], + "score": 1.0, + "content": "In case of minimizing the KL-divergence", + "type": "text" + }, + { + "bbox": [ + 275, + 601, + 335, + 613 + ], + "score": 0.93, + "content": "D _ { \\mathrm { K L } } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 600, + 506, + 615 + ], + "score": 1.0, + "content": ", or equivalently maximizing the marginal", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 612, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 168, + 625 + ], + "score": 1.0, + "content": "log-likelihood", + "type": "text" + }, + { + "bbox": [ + 168, + 612, + 236, + 624 + ], + "score": 0.93, + "content": "E _ { P _ { X } } [ \\bar { \\log { p _ { G } ( X ) } } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 612, + 505, + 625 + ], + "score": 1.0, + "content": ", the famous variational lower bound provides a theoretically", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 623, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 104, + 623, + 506, + 636 + ], + "score": 1.0, + "content": "grounded framework successfully employed by VAEs (Kingma & Welling, 2014; Mescheder et al.,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 633, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 318, + 647 + ], + "score": 1.0, + "content": "2017). More generally, if the goal is to minimize the", + "type": "text" + }, + { + "bbox": [ + 318, + 635, + 325, + 646 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 633, + 373, + 647 + ], + "score": 1.0, + "content": "-divergence", + "type": "text" + }, + { + "bbox": [ + 374, + 634, + 427, + 646 + ], + "score": 0.92, + "content": "D _ { f } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 633, + 505, + 647 + ], + "score": 1.0, + "content": "(with one example", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 645, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 132, + 658 + ], + "score": 1.0, + "content": "being", + "type": "text" + }, + { + "bbox": [ + 132, + 645, + 154, + 656 + ], + "score": 0.91, + "content": "D _ { \\mathrm { K L } } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 645, + 385, + 658 + ], + "score": 1.0, + "content": "), one can resort to its dual formulation and make use of", + "type": "text" + }, + { + "bbox": [ + 386, + 646, + 393, + 657 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 645, + 505, + 658 + ], + "score": 1.0, + "content": "-GANs and the adversarial", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 655, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 304, + 669 + ], + "score": 1.0, + "content": "training (Nowozin et al., 2016). Finally, OT cost", + "type": "text" + }, + { + "bbox": [ + 305, + 656, + 358, + 668 + ], + "score": 0.93, + "content": "W _ { c } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 655, + 505, + 669 + ], + "score": 1.0, + "content": "is yet another option, which can be,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 666, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 680 + ], + "score": 1.0, + "content": "thanks to the celebrated Kantorovich-Rubinstein duality (2), expressed as an adversarial objective", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "score": 1.0, + "content": "as implemented by the Wasserstein-GAN (Arjovsky et al., 2017). We include an extended review of", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 689, + 263, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 263, + 702 + ], + "score": 1.0, + "content": "all these methods in Supplementary A.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 711, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 119, + 710, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 119, + 710, + 260, + 723 + ], + "score": 1.0, + "content": "1Note that the same symbol is used for", + "type": "text" + }, + { + "bbox": [ + 260, + 713, + 273, + 722 + ], + "score": 0.88, + "content": "W _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 710, + 290, + 723 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 290, + 712, + 303, + 721 + ], + "score": 0.85, + "content": "W _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 710, + 339, + 723 + ], + "score": 1.0, + "content": ", but only", + "type": "text" + }, + { + "bbox": [ + 339, + 715, + 344, + 722 + ], + "score": 0.77, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 710, + 458, + 723 + ], + "score": 1.0, + "content": "is a number and thus the above", + "type": "text" + }, + { + "bbox": [ + 458, + 712, + 471, + 721 + ], + "score": 0.86, + "content": "W _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 710, + 506, + 723 + ], + "score": 1.0, + "content": "refers to", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 720, + 206, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 206, + 732 + ], + "score": 1.0, + "content": "the 1-Wasserstein distance.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 228, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 229, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 229, + 96 + ], + "score": 1.0, + "content": "2 PROPOSED METHOD", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 106, + 505, + 185 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 506, + 121 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 321, + 121 + ], + "score": 1.0, + "content": "Our new method minimizes the optimal transport cost", + "type": "text" + }, + { + "bbox": [ + 321, + 107, + 374, + 119 + ], + "score": 0.95, + "content": "W _ { c } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 106, + 506, + 121 + ], + "score": 1.0, + "content": "based on the novel auto-encoder", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 505, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 505, + 131 + ], + "score": 1.0, + "content": "formulation (see Theorem 1 below). In the resulting optimization problem the decoder tries to ac-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 129, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 443, + 141 + ], + "score": 1.0, + "content": "curately reconstruct the encoded training examples as measured by the cost function", + "type": "text" + }, + { + "bbox": [ + 443, + 131, + 449, + 139 + ], + "score": 0.59, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 129, + 505, + 141 + ], + "score": 1.0, + "content": ". The encoder", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 140, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 106, + 140, + 505, + 153 + ], + "score": 1.0, + "content": "tries to simultaneously achieve two conflicting goals: it tries to match the encoded distribution", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 150, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 194, + 164 + ], + "score": 1.0, + "content": "of training examples", + "type": "text" + }, + { + "bbox": [ + 194, + 151, + 288, + 163 + ], + "score": 0.93, + "content": "{ \\dot { Q } } _ { Z } : = \\mathbb { E } _ { P _ { X } } [ Q ( Z | X ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 150, + 339, + 164 + ], + "score": 1.0, + "content": "to the prior", + "type": "text" + }, + { + "bbox": [ + 340, + 151, + 354, + 162 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 150, + 505, + 164 + ], + "score": 1.0, + "content": "as measured by any specified diver-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 162, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 132, + 174 + ], + "score": 1.0, + "content": "gence", + "type": "text" + }, + { + "bbox": [ + 132, + 162, + 186, + 174 + ], + "score": 0.93, + "content": "\\mathcal { D } _ { Z } ( Q _ { Z } , P _ { Z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 162, + 506, + 174 + ], + "score": 1.0, + "content": ", while making sure that the latent codes provided to the decoder are informative", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 173, + 486, + 186 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 486, + 186 + ], + "score": 1.0, + "content": "enough to reconstruct the encoded training examples. This is schematically depicted on Fig. 1.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 106, + 506, + 186 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 199, + 271, + 210 + ], + "lines": [ + { + "bbox": [ + 106, + 199, + 272, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 272, + 212 + ], + "score": 1.0, + "content": "2.1 PRELIMINARIES AND NOTATIONS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "list", + "bbox": [ + 106, + 220, + 505, + 303 + ], + "lines": [ + { + "bbox": [ + 106, + 219, + 506, + 233 + ], + "spans": [ + { + "bbox": [ + 106, + 219, + 241, + 233 + ], + "score": 1.0, + "content": "We use calligraphic letters (i.e.", + "type": "text" + }, + { + "bbox": [ + 241, + 221, + 253, + 231 + ], + "score": 0.48, + "content": "\\mathcal { X } )", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 219, + 375, + 233 + ], + "score": 1.0, + "content": "for sets, capital letters (i.e.", + "type": "text" + }, + { + "bbox": [ + 376, + 221, + 389, + 231 + ], + "score": 0.62, + "content": "X )", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 219, + 506, + 233 + ], + "score": 1.0, + "content": "for random variables, and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 198, + 244 + ], + "score": 1.0, + "content": "lower case letters (i.e.", + "type": "text" + }, + { + "bbox": [ + 198, + 233, + 206, + 242 + ], + "score": 0.55, + "content": "x _ { \\mathrm { . } }", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 231, + 505, + 244 + ], + "score": 1.0, + "content": ") for their values. We denote probability distributions with capital letters", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 243, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 124, + 255 + ], + "score": 1.0, + "content": "(i.e.", + "type": "text" + }, + { + "bbox": [ + 124, + 243, + 153, + 255 + ], + "score": 0.9, + "content": "P ( X ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 243, + 387, + 255 + ], + "score": 1.0, + "content": "and corresponding densities with lower case letters (i.e.", + "type": "text" + }, + { + "bbox": [ + 387, + 243, + 408, + 254 + ], + "score": 0.88, + "content": "p ( x ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 243, + 505, + 255 + ], + "score": 1.0, + "content": "). In this work we will", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 252, + 506, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 410, + 267 + ], + "score": 1.0, + "content": "consider several measures of discrepancy between probability distributions", + "type": "text" + }, + { + "bbox": [ + 411, + 254, + 425, + 264 + ], + "score": 0.88, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 252, + 445, + 267 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 445, + 254, + 459, + 264 + ], + "score": 0.87, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 252, + 506, + 267 + ], + "score": 1.0, + "content": ". The class", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 101, + 258, + 502, + 293 + ], + "spans": [ + { + "bbox": [ + 101, + 258, + 118, + 293 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 119, + 267, + 126, + 279 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 258, + 134, + 293 + ], + "score": 1.0, + "content": "-d", + "type": "text" + }, + { + "bbox": [ + 200, + 258, + 335, + 293 + ], + "score": 1.0, + "content": "e & Miescke, 2008) is defined b", + "type": "text" + }, + { + "bbox": [ + 343, + 265, + 502, + 281 + ], + "score": 0.92, + "content": "\\begin{array} { r } { D _ { f } ( P _ { X } \\| P _ { G } ) : = \\int f \\big ( \\frac { p _ { X } ( x ) } { p _ { G } ( x ) } \\big ) p _ { G } ( x ) d x } \\end{array}", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 134, + 280, + 375, + 293 + ], + "spans": [ + { + "bbox": [ + 134, + 280, + 200, + 292 + ], + "score": 0.91, + "content": "f \\colon ( 0 , \\infty ) \\to { \\mathcal { R } }", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 280, + 375, + 293 + ], + "score": 0.92, + "content": "f ( 1 ) = 0", + "type": "inline_equation" + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 291, + 355, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 177, + 304 + ], + "score": 1.0, + "content": "Kullback-Leibler", + "type": "text" + }, + { + "bbox": [ + 178, + 292, + 199, + 302 + ], + "score": 0.88, + "content": "D _ { \\mathrm { K L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 291, + 284, + 304 + ], + "score": 1.0, + "content": "and Jensen-Shannon", + "type": "text" + }, + { + "bbox": [ + 284, + 291, + 302, + 303 + ], + "score": 0.9, + "content": "D _ { \\mathrm { J S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 291, + 355, + 304 + ], + "score": 1.0, + "content": "divergences.", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 12, + "bbox_fs": [ + 101, + 219, + 506, + 304 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 318, + 359, + 329 + ], + "lines": [ + { + "bbox": [ + 106, + 318, + 360, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 360, + 330 + ], + "score": 1.0, + "content": "2.2 OPTIMAL TRANSPORT AND ITS DUAL FORMULATIONS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 105, + 339, + 503, + 362 + ], + "lines": [ + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "score": 1.0, + "content": "A rich class of divergences between probability distributions is induced by the optimal trans-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 349, + 463, + 363 + ], + "spans": [ + { + "bbox": [ + 104, + 349, + 463, + 363 + ], + "score": 1.0, + "content": "port (OT) problem (Villani, 2003). Kantorovich’s formulation of the problem is given by", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 104, + 338, + 505, + 363 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 190, + 368, + 419, + 388 + ], + "lines": [ + { + "bbox": [ + 190, + 368, + 419, + 388 + ], + "spans": [ + { + "bbox": [ + 190, + 368, + 419, + 388 + ], + "score": 0.92, + "content": "W _ { c } ( P _ { X } , P _ { G } ) : = \\operatorname* { i n f } _ { \\Gamma \\in { \\mathcal { P } } ( X \\sim P _ { X } , Y \\sim P _ { G } ) } \\mathbb { E } _ { ( X , Y ) \\sim \\Gamma } [ c ( X , Y ) ] ,", + "type": "interline_equation", + "image_path": "d4e9d952b993474bb949c7d0c4312c3cb190b0ca448977e1d3bb429ba4007def.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 190, + 368, + 419, + 388 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 395, + 505, + 440 + ], + "lines": [ + { + "bbox": [ + 105, + 395, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 133, + 408 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 396, + 227, + 407 + ], + "score": 0.91, + "content": "c ( x , y ) \\colon \\mathcal { X } \\times \\mathcal { X } \\to \\mathcal { R } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 395, + 372, + 408 + ], + "score": 1.0, + "content": "is any measurable cost function and", + "type": "text" + }, + { + "bbox": [ + 372, + 396, + 464, + 407 + ], + "score": 0.91, + "content": "{ \\mathcal { P } } ( X \\sim P _ { X } , Y \\sim P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 395, + 506, + 408 + ], + "score": 1.0, + "content": "is a set of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 204, + 419 + ], + "score": 1.0, + "content": "all joint distributions of", + "type": "text" + }, + { + "bbox": [ + 205, + 407, + 234, + 419 + ], + "score": 0.91, + "content": "( X , Y )", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 406, + 298, + 419 + ], + "score": 1.0, + "content": "with marginals", + "type": "text" + }, + { + "bbox": [ + 298, + 407, + 313, + 417 + ], + "score": 0.89, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 406, + 332, + 419 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 332, + 407, + 346, + 418 + ], + "score": 0.88, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "respectively. A particularly interesting", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 161, + 430 + ], + "score": 1.0, + "content": "case is when", + "type": "text" + }, + { + "bbox": [ + 162, + 418, + 188, + 430 + ], + "score": 0.92, + "content": "( \\mathcal { X } , d )", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 417, + 278, + 430 + ], + "score": 1.0, + "content": "is a metric space and", + "type": "text" + }, + { + "bbox": [ + 278, + 418, + 354, + 430 + ], + "score": 0.92, + "content": "c ( x , y ) = d ^ { p } ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 417, + 370, + 430 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 371, + 418, + 397, + 429 + ], + "score": 0.9, + "content": "p \\geq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 417, + 452, + 430 + ], + "score": 1.0, + "content": ". In this case", + "type": "text" + }, + { + "bbox": [ + 452, + 418, + 466, + 430 + ], + "score": 0.89, + "content": "W _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 417, + 486, + 430 + ], + "score": 1.0, + "content": ", the", + "type": "text" + }, + { + "bbox": [ + 486, + 419, + 493, + 429 + ], + "score": 0.81, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "-th", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 429, + 302, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 136, + 442 + ], + "score": 1.0, + "content": "root of", + "type": "text" + }, + { + "bbox": [ + 136, + 429, + 150, + 440 + ], + "score": 0.87, + "content": "W _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 429, + 204, + 442 + ], + "score": 1.0, + "content": ", is called the", + "type": "text" + }, + { + "bbox": [ + 205, + 431, + 210, + 441 + ], + "score": 0.79, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 429, + 302, + 442 + ], + "score": 1.0, + "content": "-Wasserstein distance.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 395, + 506, + 442 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 445, + 419, + 457 + ], + "lines": [ + { + "bbox": [ + 106, + 444, + 420, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 133, + 459 + ], + "score": 1.0, + "content": "When", + "type": "text" + }, + { + "bbox": [ + 133, + 446, + 203, + 458 + ], + "score": 0.93, + "content": "c ( x , y ) = d ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 444, + 420, + 459 + ], + "score": 1.0, + "content": "the following Kantorovich-Rubinstein duality holds1:", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 106, + 444, + 420, + 459 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 193, + 463, + 417, + 486 + ], + "lines": [ + { + "bbox": [ + 193, + 463, + 417, + 486 + ], + "spans": [ + { + "bbox": [ + 193, + 463, + 417, + 486 + ], + "score": 0.93, + "content": "W _ { 1 } ( P _ { X } , P _ { G } ) = \\operatorname* { s u p } _ { f \\in { \\mathcal { F } } _ { L } } \\mathbb { E } _ { X \\sim P _ { X } } [ f ( X ) ] - \\mathbb { E } _ { Y \\sim P _ { G } } [ f ( Y ) ] ,", + "type": "interline_equation", + "image_path": "18b31c033b1150941ed4f04e8e9e413b9559579c3c06661edc65fd560d526be3.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 193, + 463, + 417, + 486 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 492, + 384, + 504 + ], + "lines": [ + { + "bbox": [ + 105, + 490, + 381, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 133, + 506 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 493, + 147, + 504 + ], + "score": 0.89, + "content": "\\mathcal { F } _ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 490, + 355, + 506 + ], + "score": 1.0, + "content": "is the class of all bounded 1-Lipschitz functions on", + "type": "text" + }, + { + "bbox": [ + 355, + 492, + 381, + 505 + ], + "score": 0.92, + "content": "( \\mathcal { X } , d )", + "type": "inline_equation" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 490, + 381, + 506 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 519, + 443, + 531 + ], + "lines": [ + { + "bbox": [ + 105, + 518, + 444, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 444, + 532 + ], + "score": 1.0, + "content": "2.3 APPLICATION TO GENERATIVE MODELS: WASSERSTEIN AUTO-ENCODERS", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 540, + 505, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 539, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 554 + ], + "score": 1.0, + "content": "One way to look at modern generative models like VAEs and GANs is to postulate that they are try-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 549, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 411, + 565 + ], + "score": 1.0, + "content": "ing to minimize certain discrepancy measures between the data distribution", + "type": "text" + }, + { + "bbox": [ + 411, + 552, + 426, + 562 + ], + "score": 0.9, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 549, + 487, + 565 + ], + "score": 1.0, + "content": "and the model", + "type": "text" + }, + { + "bbox": [ + 487, + 552, + 501, + 562 + ], + "score": 0.9, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 549, + 506, + 565 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 560, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 506, + 576 + ], + "score": 1.0, + "content": "Unfortunately, most of the standard divergences known in the literature, including those listed above,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 572, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 104, + 572, + 333, + 587 + ], + "score": 1.0, + "content": "are hard or even impossible to compute, especially when", + "type": "text" + }, + { + "bbox": [ + 333, + 574, + 348, + 584 + ], + "score": 0.9, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 572, + 414, + 587 + ], + "score": 1.0, + "content": "is unknown and", + "type": "text" + }, + { + "bbox": [ + 414, + 574, + 428, + 584 + ], + "score": 0.89, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 572, + 505, + 587 + ], + "score": 1.0, + "content": "is parametrized by", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 585, + 446, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 446, + 597 + ], + "score": 1.0, + "content": "deep neural networks. Previous research provides several tricks to address this issue.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30, + "bbox_fs": [ + 104, + 539, + 506, + 597 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 600, + 505, + 700 + ], + "lines": [ + { + "bbox": [ + 105, + 600, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 275, + 615 + ], + "score": 1.0, + "content": "In case of minimizing the KL-divergence", + "type": "text" + }, + { + "bbox": [ + 275, + 601, + 335, + 613 + ], + "score": 0.93, + "content": "D _ { \\mathrm { K L } } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 600, + 506, + 615 + ], + "score": 1.0, + "content": ", or equivalently maximizing the marginal", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 612, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 168, + 625 + ], + "score": 1.0, + "content": "log-likelihood", + "type": "text" + }, + { + "bbox": [ + 168, + 612, + 236, + 624 + ], + "score": 0.93, + "content": "E _ { P _ { X } } [ \\bar { \\log { p _ { G } ( X ) } } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 612, + 505, + 625 + ], + "score": 1.0, + "content": ", the famous variational lower bound provides a theoretically", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 623, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 104, + 623, + 506, + 636 + ], + "score": 1.0, + "content": "grounded framework successfully employed by VAEs (Kingma & Welling, 2014; Mescheder et al.,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 633, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 318, + 647 + ], + "score": 1.0, + "content": "2017). More generally, if the goal is to minimize the", + "type": "text" + }, + { + "bbox": [ + 318, + 635, + 325, + 646 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 633, + 373, + 647 + ], + "score": 1.0, + "content": "-divergence", + "type": "text" + }, + { + "bbox": [ + 374, + 634, + 427, + 646 + ], + "score": 0.92, + "content": "D _ { f } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 633, + 505, + 647 + ], + "score": 1.0, + "content": "(with one example", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 645, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 132, + 658 + ], + "score": 1.0, + "content": "being", + "type": "text" + }, + { + "bbox": [ + 132, + 645, + 154, + 656 + ], + "score": 0.91, + "content": "D _ { \\mathrm { K L } } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 645, + 385, + 658 + ], + "score": 1.0, + "content": "), one can resort to its dual formulation and make use of", + "type": "text" + }, + { + "bbox": [ + 386, + 646, + 393, + 657 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 645, + 505, + 658 + ], + "score": 1.0, + "content": "-GANs and the adversarial", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 655, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 304, + 669 + ], + "score": 1.0, + "content": "training (Nowozin et al., 2016). Finally, OT cost", + "type": "text" + }, + { + "bbox": [ + 305, + 656, + 358, + 668 + ], + "score": 0.93, + "content": "W _ { c } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 655, + 505, + 669 + ], + "score": 1.0, + "content": "is yet another option, which can be,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 666, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 680 + ], + "score": 1.0, + "content": "thanks to the celebrated Kantorovich-Rubinstein duality (2), expressed as an adversarial objective", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "score": 1.0, + "content": "as implemented by the Wasserstein-GAN (Arjovsky et al., 2017). We include an extended review of", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 689, + 263, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 263, + 702 + ], + "score": 1.0, + "content": "all these methods in Supplementary A.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37, + "bbox_fs": [ + 104, + 600, + 506, + 702 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 314, + 95 + ], + "score": 1.0, + "content": "In this work we will focus on latent variable models", + "type": "text" + }, + { + "bbox": [ + 314, + 83, + 328, + 93 + ], + "score": 0.88, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "defined by a two-step procedure, where first", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 135, + 106 + ], + "score": 1.0, + "content": "a code", + "type": "text" + }, + { + "bbox": [ + 136, + 94, + 144, + 104 + ], + "score": 0.83, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 93, + 292, + 106 + ], + "score": 1.0, + "content": "is sampled from a fixed distribution", + "type": "text" + }, + { + "bbox": [ + 292, + 94, + 306, + 105 + ], + "score": 0.88, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 93, + 377, + 106 + ], + "score": 1.0, + "content": "on a latent space", + "type": "text" + }, + { + "bbox": [ + 378, + 94, + 387, + 104 + ], + "score": 0.81, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 93, + 425, + 106 + ], + "score": 1.0, + "content": "and then", + "type": "text" + }, + { + "bbox": [ + 426, + 94, + 434, + 104 + ], + "score": 0.83, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "is mapped to the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 504, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 133, + 117 + ], + "score": 1.0, + "content": "image", + "type": "text" + }, + { + "bbox": [ + 133, + 104, + 191, + 115 + ], + "score": 0.91, + "content": "X \\in \\mathcal { X } \\overset { = } { = } \\mathcal { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 104, + 504, + 117 + ], + "score": 1.0, + "content": "with a (possibly random) transformation. This results in a density of the form", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 121, + 391, + 147 + ], + "lines": [ + { + "bbox": [ + 219, + 121, + 391, + 147 + ], + "spans": [ + { + "bbox": [ + 219, + 121, + 391, + 147 + ], + "score": 0.94, + "content": "p _ { G } ( x ) : = \\int _ { \\mathcal { Z } } p _ { G } ( x | \\boldsymbol { z } ) p _ { z } ( \\boldsymbol { z } ) d \\boldsymbol { z } , \\quad \\forall \\boldsymbol { x } \\in \\mathcal { X } ,", + "type": "interline_equation", + "image_path": "3019688d70fec01fd4fd85529d1fd5d624b67899e63195cca6422579a2a212b2.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 219, + 121, + 391, + 147 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 151, + 506, + 185 + ], + "lines": [ + { + "bbox": [ + 106, + 151, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 505, + 164 + ], + "score": 1.0, + "content": "assuming all involved densities are properly defined. For simplicity we will focus on non-random", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 162, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 237, + 176 + ], + "score": 1.0, + "content": "decoders, i.e. generative models", + "type": "text" + }, + { + "bbox": [ + 238, + 163, + 279, + 174 + ], + "score": 0.92, + "content": "P _ { G } ( X | Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 162, + 388, + 176 + ], + "score": 1.0, + "content": "deterministically mapping", + "type": "text" + }, + { + "bbox": [ + 388, + 163, + 397, + 172 + ], + "score": 0.83, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 162, + 409, + 176 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 410, + 163, + 457, + 174 + ], + "score": 0.92, + "content": "X = G ( Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 162, + 506, + 176 + ], + "score": 1.0, + "content": "for a given", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 173, + 470, + 187 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 126, + 187 + ], + "score": 1.0, + "content": "map", + "type": "text" + }, + { + "bbox": [ + 127, + 174, + 174, + 184 + ], + "score": 0.83, + "content": "G \\colon { \\mathcal { Z } } \\to { \\mathcal { X } }", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 173, + 470, + 187 + ], + "score": 1.0, + "content": ". Similar results for random decoders can be found in Supplementary B.1.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 190, + 505, + 257 + ], + "lines": [ + { + "bbox": [ + 105, + 190, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 505, + 203 + ], + "score": 1.0, + "content": "It turns out that under this model, the OT cost takes a simpler form as the transportation plan factors", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 200, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 175, + 214 + ], + "score": 1.0, + "content": "through the map", + "type": "text" + }, + { + "bbox": [ + 176, + 202, + 185, + 212 + ], + "score": 0.76, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 200, + 308, + 214 + ], + "score": 1.0, + "content": ": instead of finding a coupling", + "type": "text" + }, + { + "bbox": [ + 309, + 202, + 316, + 211 + ], + "score": 0.73, + "content": "\\Gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 200, + 505, + 214 + ], + "score": 1.0, + "content": "in (1) between two random variables living in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 212, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 121, + 225 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 122, + 213, + 132, + 222 + ], + "score": 0.82, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 212, + 276, + 225 + ], + "score": 1.0, + "content": "space, one distributed according to", + "type": "text" + }, + { + "bbox": [ + 276, + 213, + 291, + 223 + ], + "score": 0.9, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 212, + 419, + 225 + ], + "score": 1.0, + "content": "and the other one according to", + "type": "text" + }, + { + "bbox": [ + 419, + 213, + 433, + 223 + ], + "score": 0.87, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 212, + 506, + 225 + ], + "score": 1.0, + "content": ", it is sufficient to", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 222, + 506, + 237 + ], + "spans": [ + { + "bbox": [ + 104, + 222, + 230, + 237 + ], + "score": 1.0, + "content": "find a conditional distribution", + "type": "text" + }, + { + "bbox": [ + 230, + 223, + 266, + 235 + ], + "score": 0.93, + "content": "Q ( Z | X )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 222, + 321, + 237 + ], + "score": 1.0, + "content": "such that its", + "type": "text" + }, + { + "bbox": [ + 321, + 224, + 330, + 233 + ], + "score": 0.8, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 222, + 370, + 237 + ], + "score": 1.0, + "content": "marginal", + "type": "text" + }, + { + "bbox": [ + 370, + 223, + 494, + 235 + ], + "score": 0.85, + "content": "Q _ { Z } ( Z ) \\setminus : = \\mathbb { E } _ { X \\sim P _ { X } } \\left[ Q ( Z | X ) \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 222, + 506, + 237 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 234, + 506, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 240, + 247 + ], + "score": 1.0, + "content": "identical to the prior distribution", + "type": "text" + }, + { + "bbox": [ + 240, + 235, + 253, + 245 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 234, + 506, + 247 + ], + "score": 1.0, + "content": ". This is the content of the theorem below proved in Bousquet", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 245, + 461, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 461, + 258 + ], + "score": 1.0, + "content": "et al. (2017). To make this paper self contained we repeat the proof in Supplementary B.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 266, + 493, + 279 + ], + "lines": [ + { + "bbox": [ + 106, + 266, + 493, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 174, + 280 + ], + "score": 1.0, + "content": "Theorem 1 For", + "type": "text" + }, + { + "bbox": [ + 174, + 268, + 188, + 278 + ], + "score": 0.87, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 266, + 332, + 280 + ], + "score": 1.0, + "content": "as defined above with deterministic", + "type": "text" + }, + { + "bbox": [ + 333, + 267, + 374, + 279 + ], + "score": 0.94, + "content": "P _ { G } ( X | Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 266, + 444, + 280 + ], + "score": 1.0, + "content": "and any function", + "type": "text" + }, + { + "bbox": [ + 445, + 267, + 493, + 277 + ], + "score": 0.84, + "content": "G \\colon { \\mathcal { Z } } \\to { \\mathcal { X } }", + "type": "inline_equation" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "interline_equation", + "bbox": [ + 136, + 283, + 473, + 305 + ], + "lines": [ + { + "bbox": [ + 136, + 283, + 473, + 305 + ], + "spans": [ + { + "bbox": [ + 136, + 283, + 473, + 305 + ], + "score": 0.89, + "content": "\\operatorname* { i n f } _ { \\substack { \\Gamma \\in \\mathcal { P } ( X \\sim P _ { X } , Y \\sim P _ { G } ) } } \\mathbb { E } _ { ( X , Y ) \\sim \\Gamma } \\left[ c \\big ( X , Y \\big ) \\right] = \\operatorname* { i n f } _ { Q \\colon Q z = P _ { Z } } \\mathbb { E } _ { P _ { X } } \\mathbb { E } _ { Q ( Z | X ) } \\left[ c \\big ( X , G ( Z ) \\big ) \\right] ,", + "type": "interline_equation", + "image_path": "8760809b4a0490a2ea8ce6048266b52ba82d2494672ba947592689aae44a6fa0.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 136, + 283, + 473, + 305 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 310, + 420, + 322 + ], + "lines": [ + { + "bbox": [ + 106, + 309, + 417, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 133, + 325 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 311, + 148, + 322 + ], + "score": 0.89, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 309, + 271, + 325 + ], + "score": 1.0, + "content": "is the marginal distribution of", + "type": "text" + }, + { + "bbox": [ + 272, + 311, + 280, + 321 + ], + "score": 0.79, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 309, + 304, + 325 + ], + "score": 1.0, + "content": "when", + "type": "text" + }, + { + "bbox": [ + 305, + 311, + 342, + 322 + ], + "score": 0.91, + "content": "X \\sim P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 309, + 361, + 325 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 361, + 311, + 417, + 323 + ], + "score": 0.92, + "content": "Z \\sim Q ( Z | X )", + "type": "inline_equation" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 332, + 505, + 377 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 341, + 345 + ], + "score": 1.0, + "content": "This result allows us to optimize over random encoders", + "type": "text" + }, + { + "bbox": [ + 342, + 333, + 377, + 345 + ], + "score": 0.93, + "content": "Q ( Z | X )", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 333, + 505, + 345 + ], + "score": 1.0, + "content": "instead of optimizing over all", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 344, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 183, + 356 + ], + "score": 1.0, + "content": "couplings between", + "type": "text" + }, + { + "bbox": [ + 184, + 344, + 194, + 353 + ], + "score": 0.84, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 344, + 212, + 356 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 213, + 344, + 222, + 353 + ], + "score": 0.79, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 344, + 505, + 356 + ], + "score": 1.0, + "content": ". Of course, both problems are still constrained. In order to implement", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 354, + 504, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 296, + 366 + ], + "score": 1.0, + "content": "a numerical solution we relax the constraints on", + "type": "text" + }, + { + "bbox": [ + 296, + 354, + 312, + 366 + ], + "score": 0.9, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 355, + 504, + 366 + ], + "score": 1.0, + "content": "by adding a penalty to the objective. This finally", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 365, + 231, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 231, + 378 + ], + "score": 1.0, + "content": "leads us to the WAE objective:", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5 + }, + { + "type": "interline_equation", + "bbox": [ + 146, + 381, + 465, + 402 + ], + "lines": [ + { + "bbox": [ + 146, + 381, + 465, + 402 + ], + "spans": [ + { + "bbox": [ + 146, + 381, + 465, + 402 + ], + "score": 0.91, + "content": "D _ { \\mathrm { W A E } } ( P _ { X } , P _ { G } ) : = \\operatorname* { i n f } _ { Q ( Z | X ) \\in \\mathcal { Q } } \\mathbb { E } _ { P _ { X } } \\mathbb { E } _ { Q ( Z | X ) } \\left[ c \\bigl ( X , G ( Z ) \\bigr ) \\right] + \\lambda \\cdot \\mathcal { D } _ { Z } ( Q _ { Z } , P _ { Z } ) ,", + "type": "interline_equation", + "image_path": "5360a52f9d5d2fbad8fcb31a5590250f91d309607420486ac7e194c2be63a660.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 146, + 381, + 465, + 402 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 407, + 505, + 452 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 133, + 421 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 408, + 143, + 418 + ], + "score": 0.84, + "content": "\\mathcal { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 406, + 348, + 421 + ], + "score": 1.0, + "content": "is any nonparametric set of probabilistic encoders,", + "type": "text" + }, + { + "bbox": [ + 348, + 407, + 364, + 419 + ], + "score": 0.9, + "content": "\\mathcal { D } _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 406, + 506, + 421 + ], + "score": 1.0, + "content": "is an arbitrary divergence between", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 417, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 122, + 430 + ], + "score": 0.89, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 122, + 417, + 142, + 431 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 142, + 419, + 156, + 429 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 417, + 179, + 431 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 179, + 419, + 209, + 429 + ], + "score": 0.91, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 417, + 505, + 431 + ], + "score": 1.0, + "content": "is a hyperparameter. Similarly to VAE, we propose to use deep neural", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 429, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 104, + 429, + 263, + 442 + ], + "score": 1.0, + "content": "networks to parametrize both encoders", + "type": "text" + }, + { + "bbox": [ + 263, + 430, + 273, + 441 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 429, + 329, + 442 + ], + "score": 1.0, + "content": "and decoders", + "type": "text" + }, + { + "bbox": [ + 329, + 430, + 338, + 439 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 429, + 506, + 442 + ], + "score": 1.0, + "content": ". Note that as opposed to VAEs, the WAE", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 440, + 504, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 504, + 453 + ], + "score": 1.0, + "content": "formulation allows for non-random encoders deterministically mapping inputs to their latent codes.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 109, + 457, + 305, + 469 + ], + "lines": [ + { + "bbox": [ + 106, + 456, + 302, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 248, + 471 + ], + "score": 1.0, + "content": "We propose two different penalties", + "type": "text" + }, + { + "bbox": [ + 248, + 457, + 302, + 469 + ], + "score": 0.92, + "content": "\\mathcal { D } _ { Z } ( Q _ { Z } , P _ { Z } )", + "type": "inline_equation" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 473, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 105, + 473, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 158, + 488 + ], + "score": 1.0, + "content": "GAN-based", + "type": "text" + }, + { + "bbox": [ + 158, + 474, + 173, + 485 + ], + "score": 0.88, + "content": "\\mathcal { D } _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 473, + 288, + 488 + ], + "score": 1.0, + "content": ". The first option is to choose", + "type": "text" + }, + { + "bbox": [ + 288, + 474, + 412, + 486 + ], + "score": 0.93, + "content": "\\mathcal { D } _ { Z } ( Q _ { Z } , P _ { Z } ) = D _ { \\mathrm { J S } } ( Q _ { Z } , P _ { Z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 473, + 506, + 488 + ], + "score": 1.0, + "content": "and use the adversarial", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 484, + 504, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 494, + 498 + ], + "score": 1.0, + "content": "training to estimate it. Specifically, we introduce an adversary (discriminator) in the latent space", + "type": "text" + }, + { + "bbox": [ + 495, + 486, + 504, + 495 + ], + "score": 0.78, + "content": "\\mathcal { Z }", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 295, + 509 + ], + "score": 1.0, + "content": "trying to separate2 “true” points sampled from", + "type": "text" + }, + { + "bbox": [ + 295, + 496, + 309, + 507 + ], + "score": 0.88, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 496, + 435, + 509 + ], + "score": 1.0, + "content": "and “fake” ones sampled from", + "type": "text" + }, + { + "bbox": [ + 435, + 496, + 450, + 507 + ], + "score": 0.89, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 496, + 506, + 509 + ], + "score": 1.0, + "content": "(Goodfellow", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 507, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 505, + 519 + ], + "score": 1.0, + "content": "et al., 2014). This results in the WAE-GAN described in Algorithm 1. Even though WAE-GAN falls", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 443, + 530 + ], + "score": 1.0, + "content": "back to the min-max problem, we move the adversary from the input (pixel) space", + "type": "text" + }, + { + "bbox": [ + 443, + 519, + 453, + 528 + ], + "score": 0.81, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "to the latent", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 131, + 542 + ], + "score": 1.0, + "content": "space", + "type": "text" + }, + { + "bbox": [ + 132, + 529, + 141, + 539 + ], + "score": 0.75, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 528, + 210, + 542 + ], + "score": 1.0, + "content": ". On top of that,", + "type": "text" + }, + { + "bbox": [ + 210, + 529, + 224, + 540 + ], + "score": 0.88, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 528, + 506, + 542 + ], + "score": 1.0, + "content": "may have a nice shape with a single mode (for a Gaussian prior), in", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "which case the task should be easier than matching an unknown, complex, and possibly multi-modal", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 550, + 441, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 441, + 564 + ], + "score": 1.0, + "content": "distributions as usually done in GANs. This is also a reason for our second penalty:", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 105, + 567, + 503, + 590 + ], + "lines": [ + { + "bbox": [ + 105, + 567, + 504, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 163, + 581 + ], + "score": 1.0, + "content": "MMD-based", + "type": "text" + }, + { + "bbox": [ + 163, + 568, + 178, + 579 + ], + "score": 0.88, + "content": "\\mathcal { D } _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 567, + 350, + 581 + ], + "score": 1.0, + "content": ". For a positive-definite reproducing kernel", + "type": "text" + }, + { + "bbox": [ + 351, + 568, + 416, + 578 + ], + "score": 0.9, + "content": "k \\colon \\mathcal { Z } \\times \\mathcal { Z } \\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 567, + 504, + 581 + ], + "score": 1.0, + "content": "the following expres-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 578, + 327, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 327, + 591 + ], + "score": 1.0, + "content": "sion is called the maximum mean discrepancy (MMD):", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "interline_equation", + "bbox": [ + 172, + 595, + 438, + 621 + ], + "lines": [ + { + "bbox": [ + 172, + 595, + 438, + 621 + ], + "spans": [ + { + "bbox": [ + 172, + 595, + 438, + 621 + ], + "score": 0.94, + "content": "\\mathrm { M M D } _ { k } ( P _ { Z } , Q _ { Z } ) = \\big \\lVert \\int _ { \\mathcal { Z } } k ( z , \\cdot ) d P _ { Z } ( z ) - \\int _ { \\mathcal { Z } } k ( z , \\cdot ) d Q _ { Z } ( z ) \\big \\rVert _ { \\mathcal { H } _ { k } } ,", + "type": "interline_equation", + "image_path": "1d5147f8e2176e1d2251c84ae0803c2fb6f0af4b7beee6cc89f3b9b737729f82.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 172, + 595, + 438, + 621 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 625, + 505, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 504, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 133, + 639 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 626, + 147, + 637 + ], + "score": 0.89, + "content": "\\mathcal { H } _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 624, + 335, + 639 + ], + "score": 1.0, + "content": "is the RKHS of real-valued functions mapping", + "type": "text" + }, + { + "bbox": [ + 335, + 626, + 344, + 636 + ], + "score": 0.83, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 624, + 355, + 639 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 356, + 626, + 365, + 636 + ], + "score": 0.81, + "content": "\\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 624, + 378, + 639 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 378, + 626, + 385, + 636 + ], + "score": 0.83, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 624, + 471, + 639 + ], + "score": 1.0, + "content": "is characteristic then", + "type": "text" + }, + { + "bbox": [ + 472, + 626, + 504, + 637 + ], + "score": 0.86, + "content": "{ \\mathrm { M M D } } _ { k }", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 636, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 436, + 650 + ], + "score": 1.0, + "content": "defines a metric and can be used as a divergence measure. We propose to use", + "type": "text" + }, + { + "bbox": [ + 437, + 637, + 505, + 649 + ], + "score": 0.9, + "content": "\\mathcal { D } _ { Z } ( P _ { Z } , Q _ { Z } ) =", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 107, + 648, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 107, + 648, + 177, + 660 + ], + "score": 0.92, + "content": "\\mathrm { M M D } _ { k } ( P _ { Z } , Q _ { Z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 648, + 506, + 660 + ], + "score": 1.0, + "content": ". Fortunately, MMD has an unbiased U-statistic estimator, which can be used", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 659, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 505, + 671 + ], + "score": 1.0, + "content": "in conjunction with stochastic gradient descent (SGD) methods. This results in the WAE-MMD", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 669, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 505, + 682 + ], + "score": 1.0, + "content": "described in Algorithm 2. It is well known that the maximum mean discrepancy performs well", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 681, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 506, + 694 + ], + "score": 1.0, + "content": "when matching high-dimensional standard normal distributions (Gretton et al., 2012) so we expect", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 692, + 399, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 382, + 704 + ], + "score": 1.0, + "content": "this penalty to work especially well working with the Gaussian prior", + "type": "text" + }, + { + "bbox": [ + 382, + 693, + 396, + 703 + ], + "score": 0.88, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 692, + 399, + 704 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 711, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 709, + 505, + 724 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 505, + 724 + ], + "score": 1.0, + "content": "2We noticed that the famous “log trick” (also called “non saturating loss”) proposed by Goodfellow et al.", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 213, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 213, + 732 + ], + "score": 1.0, + "content": "(2014) leads to better results.", + "type": "text" + } + ] + } + ] + }, + { + "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, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 9 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 314, + 95 + ], + "score": 1.0, + "content": "In this work we will focus on latent variable models", + "type": "text" + }, + { + "bbox": [ + 314, + 83, + 328, + 93 + ], + "score": 0.88, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "defined by a two-step procedure, where first", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 135, + 106 + ], + "score": 1.0, + "content": "a code", + "type": "text" + }, + { + "bbox": [ + 136, + 94, + 144, + 104 + ], + "score": 0.83, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 93, + 292, + 106 + ], + "score": 1.0, + "content": "is sampled from a fixed distribution", + "type": "text" + }, + { + "bbox": [ + 292, + 94, + 306, + 105 + ], + "score": 0.88, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 93, + 377, + 106 + ], + "score": 1.0, + "content": "on a latent space", + "type": "text" + }, + { + "bbox": [ + 378, + 94, + 387, + 104 + ], + "score": 0.81, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 93, + 425, + 106 + ], + "score": 1.0, + "content": "and then", + "type": "text" + }, + { + "bbox": [ + 426, + 94, + 434, + 104 + ], + "score": 0.83, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "is mapped to the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 504, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 133, + 117 + ], + "score": 1.0, + "content": "image", + "type": "text" + }, + { + "bbox": [ + 133, + 104, + 191, + 115 + ], + "score": 0.91, + "content": "X \\in \\mathcal { X } \\overset { = } { = } \\mathcal { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 104, + 504, + 117 + ], + "score": 1.0, + "content": "with a (possibly random) transformation. This results in a density of the form", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 82, + 505, + 117 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 121, + 391, + 147 + ], + "lines": [ + { + "bbox": [ + 219, + 121, + 391, + 147 + ], + "spans": [ + { + "bbox": [ + 219, + 121, + 391, + 147 + ], + "score": 0.94, + "content": "p _ { G } ( x ) : = \\int _ { \\mathcal { Z } } p _ { G } ( x | \\boldsymbol { z } ) p _ { z } ( \\boldsymbol { z } ) d \\boldsymbol { z } , \\quad \\forall \\boldsymbol { x } \\in \\mathcal { X } ,", + "type": "interline_equation", + "image_path": "3019688d70fec01fd4fd85529d1fd5d624b67899e63195cca6422579a2a212b2.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 219, + 121, + 391, + 147 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 151, + 506, + 185 + ], + "lines": [ + { + "bbox": [ + 106, + 151, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 505, + 164 + ], + "score": 1.0, + "content": "assuming all involved densities are properly defined. For simplicity we will focus on non-random", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 162, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 237, + 176 + ], + "score": 1.0, + "content": "decoders, i.e. generative models", + "type": "text" + }, + { + "bbox": [ + 238, + 163, + 279, + 174 + ], + "score": 0.92, + "content": "P _ { G } ( X | Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 162, + 388, + 176 + ], + "score": 1.0, + "content": "deterministically mapping", + "type": "text" + }, + { + "bbox": [ + 388, + 163, + 397, + 172 + ], + "score": 0.83, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 162, + 409, + 176 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 410, + 163, + 457, + 174 + ], + "score": 0.92, + "content": "X = G ( Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 162, + 506, + 176 + ], + "score": 1.0, + "content": "for a given", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 173, + 470, + 187 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 126, + 187 + ], + "score": 1.0, + "content": "map", + "type": "text" + }, + { + "bbox": [ + 127, + 174, + 174, + 184 + ], + "score": 0.83, + "content": "G \\colon { \\mathcal { Z } } \\to { \\mathcal { X } }", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 173, + 470, + 187 + ], + "score": 1.0, + "content": ". Similar results for random decoders can be found in Supplementary B.1.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 151, + 506, + 187 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 190, + 505, + 257 + ], + "lines": [ + { + "bbox": [ + 105, + 190, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 505, + 203 + ], + "score": 1.0, + "content": "It turns out that under this model, the OT cost takes a simpler form as the transportation plan factors", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 200, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 175, + 214 + ], + "score": 1.0, + "content": "through the map", + "type": "text" + }, + { + "bbox": [ + 176, + 202, + 185, + 212 + ], + "score": 0.76, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 200, + 308, + 214 + ], + "score": 1.0, + "content": ": instead of finding a coupling", + "type": "text" + }, + { + "bbox": [ + 309, + 202, + 316, + 211 + ], + "score": 0.73, + "content": "\\Gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 200, + 505, + 214 + ], + "score": 1.0, + "content": "in (1) between two random variables living in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 212, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 121, + 225 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 122, + 213, + 132, + 222 + ], + "score": 0.82, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 212, + 276, + 225 + ], + "score": 1.0, + "content": "space, one distributed according to", + "type": "text" + }, + { + "bbox": [ + 276, + 213, + 291, + 223 + ], + "score": 0.9, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 212, + 419, + 225 + ], + "score": 1.0, + "content": "and the other one according to", + "type": "text" + }, + { + "bbox": [ + 419, + 213, + 433, + 223 + ], + "score": 0.87, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 212, + 506, + 225 + ], + "score": 1.0, + "content": ", it is sufficient to", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 222, + 506, + 237 + ], + "spans": [ + { + "bbox": [ + 104, + 222, + 230, + 237 + ], + "score": 1.0, + "content": "find a conditional distribution", + "type": "text" + }, + { + "bbox": [ + 230, + 223, + 266, + 235 + ], + "score": 0.93, + "content": "Q ( Z | X )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 222, + 321, + 237 + ], + "score": 1.0, + "content": "such that its", + "type": "text" + }, + { + "bbox": [ + 321, + 224, + 330, + 233 + ], + "score": 0.8, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 222, + 370, + 237 + ], + "score": 1.0, + "content": "marginal", + "type": "text" + }, + { + "bbox": [ + 370, + 223, + 494, + 235 + ], + "score": 0.85, + "content": "Q _ { Z } ( Z ) \\setminus : = \\mathbb { E } _ { X \\sim P _ { X } } \\left[ Q ( Z | X ) \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 222, + 506, + 237 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 234, + 506, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 240, + 247 + ], + "score": 1.0, + "content": "identical to the prior distribution", + "type": "text" + }, + { + "bbox": [ + 240, + 235, + 253, + 245 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 234, + 506, + 247 + ], + "score": 1.0, + "content": ". This is the content of the theorem below proved in Bousquet", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 245, + 461, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 461, + 258 + ], + "score": 1.0, + "content": "et al. (2017). To make this paper self contained we repeat the proof in Supplementary B.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9.5, + "bbox_fs": [ + 104, + 190, + 506, + 258 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 266, + 493, + 279 + ], + "lines": [ + { + "bbox": [ + 106, + 266, + 493, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 174, + 280 + ], + "score": 1.0, + "content": "Theorem 1 For", + "type": "text" + }, + { + "bbox": [ + 174, + 268, + 188, + 278 + ], + "score": 0.87, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 266, + 332, + 280 + ], + "score": 1.0, + "content": "as defined above with deterministic", + "type": "text" + }, + { + "bbox": [ + 333, + 267, + 374, + 279 + ], + "score": 0.94, + "content": "P _ { G } ( X | Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 266, + 444, + 280 + ], + "score": 1.0, + "content": "and any function", + "type": "text" + }, + { + "bbox": [ + 445, + 267, + 493, + 277 + ], + "score": 0.84, + "content": "G \\colon { \\mathcal { Z } } \\to { \\mathcal { X } }", + "type": "inline_equation" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 266, + 493, + 280 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 136, + 283, + 473, + 305 + ], + "lines": [ + { + "bbox": [ + 136, + 283, + 473, + 305 + ], + "spans": [ + { + "bbox": [ + 136, + 283, + 473, + 305 + ], + "score": 0.89, + "content": "\\operatorname* { i n f } _ { \\substack { \\Gamma \\in \\mathcal { P } ( X \\sim P _ { X } , Y \\sim P _ { G } ) } } \\mathbb { E } _ { ( X , Y ) \\sim \\Gamma } \\left[ c \\big ( X , Y \\big ) \\right] = \\operatorname* { i n f } _ { Q \\colon Q z = P _ { Z } } \\mathbb { E } _ { P _ { X } } \\mathbb { E } _ { Q ( Z | X ) } \\left[ c \\big ( X , G ( Z ) \\big ) \\right] ,", + "type": "interline_equation", + "image_path": "8760809b4a0490a2ea8ce6048266b52ba82d2494672ba947592689aae44a6fa0.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 136, + 283, + 473, + 305 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 310, + 420, + 322 + ], + "lines": [ + { + "bbox": [ + 106, + 309, + 417, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 133, + 325 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 311, + 148, + 322 + ], + "score": 0.89, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 309, + 271, + 325 + ], + "score": 1.0, + "content": "is the marginal distribution of", + "type": "text" + }, + { + "bbox": [ + 272, + 311, + 280, + 321 + ], + "score": 0.79, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 309, + 304, + 325 + ], + "score": 1.0, + "content": "when", + "type": "text" + }, + { + "bbox": [ + 305, + 311, + 342, + 322 + ], + "score": 0.91, + "content": "X \\sim P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 309, + 361, + 325 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 361, + 311, + 417, + 323 + ], + "score": 0.92, + "content": "Z \\sim Q ( Z | X )", + "type": "inline_equation" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 106, + 309, + 417, + 325 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 332, + 505, + 377 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 341, + 345 + ], + "score": 1.0, + "content": "This result allows us to optimize over random encoders", + "type": "text" + }, + { + "bbox": [ + 342, + 333, + 377, + 345 + ], + "score": 0.93, + "content": "Q ( Z | X )", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 333, + 505, + 345 + ], + "score": 1.0, + "content": "instead of optimizing over all", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 344, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 183, + 356 + ], + "score": 1.0, + "content": "couplings between", + "type": "text" + }, + { + "bbox": [ + 184, + 344, + 194, + 353 + ], + "score": 0.84, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 344, + 212, + 356 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 213, + 344, + 222, + 353 + ], + "score": 0.79, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 344, + 505, + 356 + ], + "score": 1.0, + "content": ". Of course, both problems are still constrained. In order to implement", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 354, + 504, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 296, + 366 + ], + "score": 1.0, + "content": "a numerical solution we relax the constraints on", + "type": "text" + }, + { + "bbox": [ + 296, + 354, + 312, + 366 + ], + "score": 0.9, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 355, + 504, + 366 + ], + "score": 1.0, + "content": "by adding a penalty to the objective. This finally", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 365, + 231, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 231, + 378 + ], + "score": 1.0, + "content": "leads us to the WAE objective:", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 333, + 505, + 378 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 146, + 381, + 465, + 402 + ], + "lines": [ + { + "bbox": [ + 146, + 381, + 465, + 402 + ], + "spans": [ + { + "bbox": [ + 146, + 381, + 465, + 402 + ], + "score": 0.91, + "content": "D _ { \\mathrm { W A E } } ( P _ { X } , P _ { G } ) : = \\operatorname* { i n f } _ { Q ( Z | X ) \\in \\mathcal { Q } } \\mathbb { E } _ { P _ { X } } \\mathbb { E } _ { Q ( Z | X ) } \\left[ c \\bigl ( X , G ( Z ) \\bigr ) \\right] + \\lambda \\cdot \\mathcal { D } _ { Z } ( Q _ { Z } , P _ { Z } ) ,", + "type": "interline_equation", + "image_path": "5360a52f9d5d2fbad8fcb31a5590250f91d309607420486ac7e194c2be63a660.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 146, + 381, + 465, + 402 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 407, + 505, + 452 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 133, + 421 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 408, + 143, + 418 + ], + "score": 0.84, + "content": "\\mathcal { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 406, + 348, + 421 + ], + "score": 1.0, + "content": "is any nonparametric set of probabilistic encoders,", + "type": "text" + }, + { + "bbox": [ + 348, + 407, + 364, + 419 + ], + "score": 0.9, + "content": "\\mathcal { D } _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 406, + 506, + 421 + ], + "score": 1.0, + "content": "is an arbitrary divergence between", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 417, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 122, + 430 + ], + "score": 0.89, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 122, + 417, + 142, + 431 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 142, + 419, + 156, + 429 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 417, + 179, + 431 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 179, + 419, + 209, + 429 + ], + "score": 0.91, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 417, + 505, + 431 + ], + "score": 1.0, + "content": "is a hyperparameter. Similarly to VAE, we propose to use deep neural", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 429, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 104, + 429, + 263, + 442 + ], + "score": 1.0, + "content": "networks to parametrize both encoders", + "type": "text" + }, + { + "bbox": [ + 263, + 430, + 273, + 441 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 429, + 329, + 442 + ], + "score": 1.0, + "content": "and decoders", + "type": "text" + }, + { + "bbox": [ + 329, + 430, + 338, + 439 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 429, + 506, + 442 + ], + "score": 1.0, + "content": ". Note that as opposed to VAEs, the WAE", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 440, + 504, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 504, + 453 + ], + "score": 1.0, + "content": "formulation allows for non-random encoders deterministically mapping inputs to their latent codes.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5, + "bbox_fs": [ + 104, + 406, + 506, + 453 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 457, + 305, + 469 + ], + "lines": [ + { + "bbox": [ + 106, + 456, + 302, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 248, + 471 + ], + "score": 1.0, + "content": "We propose two different penalties", + "type": "text" + }, + { + "bbox": [ + 248, + 457, + 302, + 469 + ], + "score": 0.92, + "content": "\\mathcal { D } _ { Z } ( Q _ { Z } , P _ { Z } )", + "type": "inline_equation" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 106, + 456, + 302, + 471 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 473, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 105, + 473, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 158, + 488 + ], + "score": 1.0, + "content": "GAN-based", + "type": "text" + }, + { + "bbox": [ + 158, + 474, + 173, + 485 + ], + "score": 0.88, + "content": "\\mathcal { D } _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 473, + 288, + 488 + ], + "score": 1.0, + "content": ". The first option is to choose", + "type": "text" + }, + { + "bbox": [ + 288, + 474, + 412, + 486 + ], + "score": 0.93, + "content": "\\mathcal { D } _ { Z } ( Q _ { Z } , P _ { Z } ) = D _ { \\mathrm { J S } } ( Q _ { Z } , P _ { Z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 473, + 506, + 488 + ], + "score": 1.0, + "content": "and use the adversarial", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 484, + 504, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 494, + 498 + ], + "score": 1.0, + "content": "training to estimate it. Specifically, we introduce an adversary (discriminator) in the latent space", + "type": "text" + }, + { + "bbox": [ + 495, + 486, + 504, + 495 + ], + "score": 0.78, + "content": "\\mathcal { Z }", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 295, + 509 + ], + "score": 1.0, + "content": "trying to separate2 “true” points sampled from", + "type": "text" + }, + { + "bbox": [ + 295, + 496, + 309, + 507 + ], + "score": 0.88, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 496, + 435, + 509 + ], + "score": 1.0, + "content": "and “fake” ones sampled from", + "type": "text" + }, + { + "bbox": [ + 435, + 496, + 450, + 507 + ], + "score": 0.89, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 496, + 506, + 509 + ], + "score": 1.0, + "content": "(Goodfellow", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 507, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 505, + 519 + ], + "score": 1.0, + "content": "et al., 2014). This results in the WAE-GAN described in Algorithm 1. Even though WAE-GAN falls", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 443, + 530 + ], + "score": 1.0, + "content": "back to the min-max problem, we move the adversary from the input (pixel) space", + "type": "text" + }, + { + "bbox": [ + 443, + 519, + 453, + 528 + ], + "score": 0.81, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "to the latent", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 131, + 542 + ], + "score": 1.0, + "content": "space", + "type": "text" + }, + { + "bbox": [ + 132, + 529, + 141, + 539 + ], + "score": 0.75, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 528, + 210, + 542 + ], + "score": 1.0, + "content": ". On top of that,", + "type": "text" + }, + { + "bbox": [ + 210, + 529, + 224, + 540 + ], + "score": 0.88, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 528, + 506, + 542 + ], + "score": 1.0, + "content": "may have a nice shape with a single mode (for a Gaussian prior), in", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "which case the task should be easier than matching an unknown, complex, and possibly multi-modal", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 550, + 441, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 441, + 564 + ], + "score": 1.0, + "content": "distributions as usually done in GANs. This is also a reason for our second penalty:", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 473, + 506, + 564 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 567, + 503, + 590 + ], + "lines": [ + { + "bbox": [ + 105, + 567, + 504, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 163, + 581 + ], + "score": 1.0, + "content": "MMD-based", + "type": "text" + }, + { + "bbox": [ + 163, + 568, + 178, + 579 + ], + "score": 0.88, + "content": "\\mathcal { D } _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 567, + 350, + 581 + ], + "score": 1.0, + "content": ". For a positive-definite reproducing kernel", + "type": "text" + }, + { + "bbox": [ + 351, + 568, + 416, + 578 + ], + "score": 0.9, + "content": "k \\colon \\mathcal { Z } \\times \\mathcal { Z } \\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 567, + 504, + 581 + ], + "score": 1.0, + "content": "the following expres-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 578, + 327, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 327, + 591 + ], + "score": 1.0, + "content": "sion is called the maximum mean discrepancy (MMD):", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 567, + 504, + 591 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 172, + 595, + 438, + 621 + ], + "lines": [ + { + "bbox": [ + 172, + 595, + 438, + 621 + ], + "spans": [ + { + "bbox": [ + 172, + 595, + 438, + 621 + ], + "score": 0.94, + "content": "\\mathrm { M M D } _ { k } ( P _ { Z } , Q _ { Z } ) = \\big \\lVert \\int _ { \\mathcal { Z } } k ( z , \\cdot ) d P _ { Z } ( z ) - \\int _ { \\mathcal { Z } } k ( z , \\cdot ) d Q _ { Z } ( z ) \\big \\rVert _ { \\mathcal { H } _ { k } } ,", + "type": "interline_equation", + "image_path": "1d5147f8e2176e1d2251c84ae0803c2fb6f0af4b7beee6cc89f3b9b737729f82.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 172, + 595, + 438, + 621 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 625, + 505, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 504, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 133, + 639 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 626, + 147, + 637 + ], + "score": 0.89, + "content": "\\mathcal { H } _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 624, + 335, + 639 + ], + "score": 1.0, + "content": "is the RKHS of real-valued functions mapping", + "type": "text" + }, + { + "bbox": [ + 335, + 626, + 344, + 636 + ], + "score": 0.83, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 624, + 355, + 639 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 356, + 626, + 365, + 636 + ], + "score": 0.81, + "content": "\\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 624, + 378, + 639 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 378, + 626, + 385, + 636 + ], + "score": 0.83, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 624, + 471, + 639 + ], + "score": 1.0, + "content": "is characteristic then", + "type": "text" + }, + { + "bbox": [ + 472, + 626, + 504, + 637 + ], + "score": 0.86, + "content": "{ \\mathrm { M M D } } _ { k }", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 636, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 436, + 650 + ], + "score": 1.0, + "content": "defines a metric and can be used as a divergence measure. We propose to use", + "type": "text" + }, + { + "bbox": [ + 437, + 637, + 505, + 649 + ], + "score": 0.9, + "content": "\\mathcal { D } _ { Z } ( P _ { Z } , Q _ { Z } ) =", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 107, + 648, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 107, + 648, + 177, + 660 + ], + "score": 0.92, + "content": "\\mathrm { M M D } _ { k } ( P _ { Z } , Q _ { Z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 648, + 506, + 660 + ], + "score": 1.0, + "content": ". Fortunately, MMD has an unbiased U-statistic estimator, which can be used", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 659, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 505, + 671 + ], + "score": 1.0, + "content": "in conjunction with stochastic gradient descent (SGD) methods. This results in the WAE-MMD", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 669, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 505, + 682 + ], + "score": 1.0, + "content": "described in Algorithm 2. It is well known that the maximum mean discrepancy performs well", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 681, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 506, + 694 + ], + "score": 1.0, + "content": "when matching high-dimensional standard normal distributions (Gretton et al., 2012) so we expect", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 692, + 399, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 382, + 704 + ], + "score": 1.0, + "content": "this penalty to work especially well working with the Gaussian prior", + "type": "text" + }, + { + "bbox": [ + 382, + 693, + 396, + 703 + ], + "score": 0.88, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 692, + 399, + 704 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 624, + 506, + 704 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 105, + 92, + 488, + 326 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 105, + 92, + 488, + 326 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 92, + 488, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 488, + 326 + ], + "score": 0.786, + "html": "
ALGORITHM1Wasserstein Auto-Encoder with GAN-based penalty (WAE-GAN).ALGORITHM 2Wasserstein Auto-Encoder withMMD-based penalty (WAE-MMD).
Require:Regularization coefficient 入>0. Initialize the parameters of the encoder Q, decoder Gθ,and latent discriminator Dy. while(,θ) not converged do Sample {x1,...,xn} from the training set Sample {z1,...,zn} from the prior PzRequire:Regularization coefficient入> O,char- acteristic positive-definite kernel k. Initialize the parameters of the encoder Q𝜙, decoder Gθ,and latent discriminator D. while (,0) not converged do
Sample zi from Q(Z|xi) fori=1,...,n Update D, by ascending:Sample {x1,...,xn} from the training set Sample {z1,..., zn} from the prior Pz Sample z from Q(Z|xi) fori=1,...,n
入 n ? logDγ(zi)+log(1-Dγ(i)) n i=1Update Q and Ge by descending: 1 n 入
Update Q and Ge by descending: 1 n c(xi,Ge(zi))-λ·logDγ(zi) nc(xi,Gθ(zi)) > k(ze,zj) n(n-1) n i=1 +j
i=1 end while入 2入 > k(2e,) + > k(ze,2j) n
n(n-1) l≠j e,j
", + "type": "table", + "image_path": "bcf7713db4e4ab8f9945bd4430e63166f921e294945aa8f6d9b61f272d4dc57a.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 105, + 92, + 488, + 170.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 105, + 170.0, + 488, + 248.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 105, + 248.0, + 488, + 326.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 331, + 505, + 367 + ], + "lines": [ + { + "bbox": [ + 106, + 331, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 284, + 345 + ], + "score": 1.0, + "content": "We point out once again that the encoders", + "type": "text" + }, + { + "bbox": [ + 285, + 332, + 322, + 344 + ], + "score": 0.94, + "content": "Q _ { \\phi } ( Z | x )", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 331, + 505, + 345 + ], + "score": 1.0, + "content": "in Algorithms 1 and 2 can be non-random,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 342, + 507, + 358 + ], + "spans": [ + { + "bbox": [ + 104, + 342, + 405, + 358 + ], + "score": 1.0, + "content": "i.e. deterministically mapping input points to the latent codes. In this case", + "type": "text" + }, + { + "bbox": [ + 405, + 343, + 482, + 356 + ], + "score": 0.91, + "content": "Q _ { \\phi } ( Z | x ) = \\delta _ { \\mu _ { \\phi } ( x ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 342, + 507, + 358 + ], + "score": 1.0, + "content": "fo r a", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 355, + 484, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 142, + 369 + ], + "score": 1.0, + "content": "function", + "type": "text" + }, + { + "bbox": [ + 142, + 356, + 194, + 368 + ], + "score": 0.91, + "content": "\\mu _ { \\phi } \\colon \\mathcal { X } \\to \\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 355, + 286, + 369 + ], + "score": 1.0, + "content": "and in order to sample", + "type": "text" + }, + { + "bbox": [ + 287, + 356, + 296, + 366 + ], + "score": 0.86, + "content": "\\tilde { z } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 355, + 319, + 369 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 319, + 355, + 360, + 368 + ], + "score": 0.94, + "content": "Q _ { \\phi } ( Z | x _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 355, + 451, + 369 + ], + "score": 1.0, + "content": "we just need to return", + "type": "text" + }, + { + "bbox": [ + 451, + 356, + 479, + 368 + ], + "score": 0.91, + "content": "\\mu _ { \\phi } ( x _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 355, + 484, + 369 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "title", + "bbox": [ + 108, + 384, + 209, + 397 + ], + "lines": [ + { + "bbox": [ + 105, + 383, + 210, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 210, + 399 + ], + "score": 1.0, + "content": "3 RELATED WORK", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 410, + 504, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 410, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 424 + ], + "score": 1.0, + "content": "Literature on auto-encoders Classical unregularized auto-encoders minimize only the reconstruc-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 421, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 505, + 435 + ], + "score": 1.0, + "content": "tion cost. This results in different training points being encoded into non-overlapping zones chaoti-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 432, + 504, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 219, + 446 + ], + "score": 1.0, + "content": "cally scattered all across the", + "type": "text" + }, + { + "bbox": [ + 219, + 433, + 228, + 443 + ], + "score": 0.77, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 432, + 462, + 446 + ], + "score": 1.0, + "content": "space with “holes” in between where the decoder mapping", + "type": "text" + }, + { + "bbox": [ + 462, + 433, + 504, + 445 + ], + "score": 0.93, + "content": "P _ { G } ( X | Z )", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 286, + 456 + ], + "score": 1.0, + "content": "has never been trained. Overall, the encoder", + "type": "text" + }, + { + "bbox": [ + 287, + 443, + 323, + 456 + ], + "score": 0.93, + "content": "Q ( Z | X )", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 443, + 506, + 456 + ], + "score": 1.0, + "content": "trained in this way does not provide a useful", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 454, + 462, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 307, + 466 + ], + "score": 1.0, + "content": "representation and sampling from the latent space", + "type": "text" + }, + { + "bbox": [ + 307, + 456, + 316, + 464 + ], + "score": 0.78, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 454, + 462, + 466 + ], + "score": 1.0, + "content": "becomes hard (Bengio et al., 2013).", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 505, + 570 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 484 + ], + "score": 1.0, + "content": "Variational auto-encoders (Kingma & Welling, 2014) minimize a variational bound on the KL-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 482, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 154, + 496 + ], + "score": 1.0, + "content": "divergence", + "type": "text" + }, + { + "bbox": [ + 155, + 482, + 215, + 494 + ], + "score": 0.91, + "content": "D _ { \\mathrm { K L } } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 482, + 506, + 496 + ], + "score": 1.0, + "content": "which is composed of the reconstruction cost plus the regularizer", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 493, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 213, + 505 + ], + "score": 0.87, + "content": "\\mathbb { E } _ { P _ { X } } \\left[ D _ { \\mathrm { K L } } ( Q ( Z | X ) , P _ { Z } ) \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 493, + 506, + 507 + ], + "score": 1.0, + "content": ". The regularizer captures how distinct the image by the encoder of each", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 504, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 249, + 517 + ], + "score": 1.0, + "content": "training example is from the prior", + "type": "text" + }, + { + "bbox": [ + 249, + 505, + 263, + 515 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 504, + 505, + 517 + ], + "score": 1.0, + "content": ", which is not guaranteeing that the overall encoded distri-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 514, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 135, + 529 + ], + "score": 1.0, + "content": "bution", + "type": "text" + }, + { + "bbox": [ + 135, + 515, + 154, + 527 + ], + "score": 0.62, + "content": "\\mathbb { E } _ { P _ { X } }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 515, + 197, + 527 + ], + "score": 0.83, + "content": "\\mathinner { \\langle { Q \\mathopen { \\left( Z \\vert X \\right) } } \\rvert }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 514, + 235, + 529 + ], + "score": 1.0, + "content": "matches", + "type": "text" + }, + { + "bbox": [ + 235, + 516, + 249, + 526 + ], + "score": 0.88, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 514, + 506, + 529 + ], + "score": 1.0, + "content": "like WAE does. Also, VAEs require non-degenerate (i.e. non-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 525, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 404, + 540 + ], + "score": 1.0, + "content": "deterministic) Gaussian encoders and random decoders for which the term", + "type": "text" + }, + { + "bbox": [ + 405, + 526, + 453, + 538 + ], + "score": 0.92, + "content": "\\log p _ { G } ( x | z )", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 525, + 505, + 540 + ], + "score": 1.0, + "content": "can be com-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 536, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 551 + ], + "score": 1.0, + "content": "puted and differentiated with respect to the parameters. Later Mescheder et al. (2017) proposed a", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 547, + 504, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 450, + 562 + ], + "score": 1.0, + "content": "way to use VAE with non-Gaussian encoders. WAE minimizes the optimal transport", + "type": "text" + }, + { + "bbox": [ + 450, + 548, + 504, + 560 + ], + "score": 0.92, + "content": "W _ { c } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 559, + 436, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 436, + 572 + ], + "score": 1.0, + "content": "and allows both probabilistic and deterministic encoder-decoder pairs of any kind.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 576, + 505, + 631 + ], + "lines": [ + { + "bbox": [ + 106, + 575, + 506, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 506, + 589 + ], + "score": 1.0, + "content": "The VAE regularizer can be also equivalently written (Hoffman & Johnson, 2016) as a sum of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 107, + 586, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 107, + 587, + 167, + 599 + ], + "score": 0.92, + "content": "D _ { \\mathrm { K L } } ( Q _ { Z } , P _ { Z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 586, + 269, + 601 + ], + "score": 1.0, + "content": "and a mutual information", + "type": "text" + }, + { + "bbox": [ + 270, + 587, + 309, + 599 + ], + "score": 0.93, + "content": "\\mathbb { I } _ { Q } ( X , Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 586, + 390, + 601 + ], + "score": 1.0, + "content": "between the images", + "type": "text" + }, + { + "bbox": [ + 390, + 588, + 400, + 597 + ], + "score": 0.8, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 586, + 467, + 601 + ], + "score": 1.0, + "content": "and latent codes", + "type": "text" + }, + { + "bbox": [ + 467, + 588, + 476, + 597 + ], + "score": 0.75, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 586, + 505, + 601 + ], + "score": 1.0, + "content": "jointly", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 597, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 204, + 611 + ], + "score": 1.0, + "content": "distributed according to", + "type": "text" + }, + { + "bbox": [ + 204, + 598, + 266, + 610 + ], + "score": 0.92, + "content": "P _ { X } \\times Q ( Z | X )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 597, + 505, + 611 + ], + "score": 1.0, + "content": ". This observation provides another intuitive way to explain", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "score": 1.0, + "content": "a difference between our algorithm and VAEs: WAEs simply drop the mutual information term", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 620, + 242, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 620, + 146, + 632 + ], + "score": 0.93, + "content": "\\mathbb { I } _ { Q } ( X , Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 620, + 242, + 633 + ], + "score": 1.0, + "content": "in the VAE regularizer.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 637, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 175, + 651 + ], + "score": 1.0, + "content": "When used with", + "type": "text" + }, + { + "bbox": [ + 175, + 637, + 255, + 650 + ], + "score": 0.92, + "content": "c ( x , y ) = \\| x - y \\| _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 638, + 505, + 651 + ], + "score": 1.0, + "content": "WAE-GAN is equivalent to adversarial auto-encoders (AAE)", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "score": 1.0, + "content": "proposed by Makhzani et al. (2016). Theory of Bousquet et al. (2017) (and in particular Theorem 1)", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 393, + 672 + ], + "score": 1.0, + "content": "thus suggests that AAEs minimize the 2-Wasserstein distance between", + "type": "text" + }, + { + "bbox": [ + 394, + 660, + 409, + 671 + ], + "score": 0.9, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 660, + 428, + 672 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 428, + 660, + 442, + 671 + ], + "score": 0.89, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 660, + 505, + 672 + ], + "score": 1.0, + "content": ". This provides", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 669, + 505, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 505, + 685 + ], + "score": 1.0, + "content": "the first theoretical justification for AAEs known to the authors. WAE generalizes AAE in two ways:", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 681, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 237, + 695 + ], + "score": 1.0, + "content": "first, it can use any cost function", + "type": "text" + }, + { + "bbox": [ + 238, + 684, + 243, + 691 + ], + "score": 0.74, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 681, + 316, + 695 + ], + "score": 1.0, + "content": "in the input space", + "type": "text" + }, + { + "bbox": [ + 317, + 682, + 326, + 691 + ], + "score": 0.81, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 681, + 505, + 695 + ], + "score": 1.0, + "content": "; second, it can use any discrepancy measure", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 692, + 496, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 122, + 704 + ], + "score": 0.88, + "content": "\\mathcal { D } _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 122, + 692, + 197, + 705 + ], + "score": 1.0, + "content": "in the latent space", + "type": "text" + }, + { + "bbox": [ + 198, + 693, + 207, + 703 + ], + "score": 0.81, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 692, + 496, + 705 + ], + "score": 1.0, + "content": "(for instance MMD), not necessarily the adversarial one of WAE-GAN.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Finally, Zhao et al. (2017b) independently proposed a regularized auto-encoder objective similar to", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 719, + 505, + 735 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 505, + 735 + ], + "score": 1.0, + "content": "Bousquet et al. (2017) and our (4) based on very different motivations and arguments. Following", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 105, + 92, + 488, + 326 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 105, + 92, + 488, + 326 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 92, + 488, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 488, + 326 + ], + "score": 0.786, + "html": "
ALGORITHM1Wasserstein Auto-Encoder with GAN-based penalty (WAE-GAN).ALGORITHM 2Wasserstein Auto-Encoder withMMD-based penalty (WAE-MMD).
Require:Regularization coefficient 入>0. Initialize the parameters of the encoder Q, decoder Gθ,and latent discriminator Dy. while(,θ) not converged do Sample {x1,...,xn} from the training set Sample {z1,...,zn} from the prior PzRequire:Regularization coefficient入> O,char- acteristic positive-definite kernel k. Initialize the parameters of the encoder Q𝜙, decoder Gθ,and latent discriminator D. while (,0) not converged do
Sample zi from Q(Z|xi) fori=1,...,n Update D, by ascending:Sample {x1,...,xn} from the training set Sample {z1,..., zn} from the prior Pz Sample z from Q(Z|xi) fori=1,...,n
入 n ? logDγ(zi)+log(1-Dγ(i)) n i=1Update Q and Ge by descending: 1 n 入
Update Q and Ge by descending: 1 n c(xi,Ge(zi))-λ·logDγ(zi) nc(xi,Gθ(zi)) > k(ze,zj) n(n-1) n i=1 +j
i=1 end while入 2入 > k(2e,) + > k(ze,2j) n
n(n-1) l≠j e,j
", + "type": "table", + "image_path": "bcf7713db4e4ab8f9945bd4430e63166f921e294945aa8f6d9b61f272d4dc57a.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 105, + 92, + 488, + 170.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 105, + 170.0, + 488, + 248.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 105, + 248.0, + 488, + 326.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 331, + 505, + 367 + ], + "lines": [ + { + "bbox": [ + 106, + 331, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 284, + 345 + ], + "score": 1.0, + "content": "We point out once again that the encoders", + "type": "text" + }, + { + "bbox": [ + 285, + 332, + 322, + 344 + ], + "score": 0.94, + "content": "Q _ { \\phi } ( Z | x )", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 331, + 505, + 345 + ], + "score": 1.0, + "content": "in Algorithms 1 and 2 can be non-random,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 342, + 507, + 358 + ], + "spans": [ + { + "bbox": [ + 104, + 342, + 405, + 358 + ], + "score": 1.0, + "content": "i.e. deterministically mapping input points to the latent codes. In this case", + "type": "text" + }, + { + "bbox": [ + 405, + 343, + 482, + 356 + ], + "score": 0.91, + "content": "Q _ { \\phi } ( Z | x ) = \\delta _ { \\mu _ { \\phi } ( x ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 342, + 507, + 358 + ], + "score": 1.0, + "content": "fo r a", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 355, + 484, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 142, + 369 + ], + "score": 1.0, + "content": "function", + "type": "text" + }, + { + "bbox": [ + 142, + 356, + 194, + 368 + ], + "score": 0.91, + "content": "\\mu _ { \\phi } \\colon \\mathcal { X } \\to \\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 355, + 286, + 369 + ], + "score": 1.0, + "content": "and in order to sample", + "type": "text" + }, + { + "bbox": [ + 287, + 356, + 296, + 366 + ], + "score": 0.86, + "content": "\\tilde { z } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 355, + 319, + 369 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 319, + 355, + 360, + 368 + ], + "score": 0.94, + "content": "Q _ { \\phi } ( Z | x _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 355, + 451, + 369 + ], + "score": 1.0, + "content": "we just need to return", + "type": "text" + }, + { + "bbox": [ + 451, + 356, + 479, + 368 + ], + "score": 0.91, + "content": "\\mu _ { \\phi } ( x _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 355, + 484, + 369 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 104, + 331, + 507, + 369 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 384, + 209, + 397 + ], + "lines": [ + { + "bbox": [ + 105, + 383, + 210, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 210, + 399 + ], + "score": 1.0, + "content": "3 RELATED WORK", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 410, + 504, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 410, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 424 + ], + "score": 1.0, + "content": "Literature on auto-encoders Classical unregularized auto-encoders minimize only the reconstruc-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 421, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 505, + 435 + ], + "score": 1.0, + "content": "tion cost. This results in different training points being encoded into non-overlapping zones chaoti-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 432, + 504, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 219, + 446 + ], + "score": 1.0, + "content": "cally scattered all across the", + "type": "text" + }, + { + "bbox": [ + 219, + 433, + 228, + 443 + ], + "score": 0.77, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 432, + 462, + 446 + ], + "score": 1.0, + "content": "space with “holes” in between where the decoder mapping", + "type": "text" + }, + { + "bbox": [ + 462, + 433, + 504, + 445 + ], + "score": 0.93, + "content": "P _ { G } ( X | Z )", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 286, + 456 + ], + "score": 1.0, + "content": "has never been trained. Overall, the encoder", + "type": "text" + }, + { + "bbox": [ + 287, + 443, + 323, + 456 + ], + "score": 0.93, + "content": "Q ( Z | X )", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 443, + 506, + 456 + ], + "score": 1.0, + "content": "trained in this way does not provide a useful", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 454, + 462, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 307, + 466 + ], + "score": 1.0, + "content": "representation and sampling from the latent space", + "type": "text" + }, + { + "bbox": [ + 307, + 456, + 316, + 464 + ], + "score": 0.78, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 454, + 462, + 466 + ], + "score": 1.0, + "content": "becomes hard (Bengio et al., 2013).", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 410, + 506, + 466 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 505, + 570 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 484 + ], + "score": 1.0, + "content": "Variational auto-encoders (Kingma & Welling, 2014) minimize a variational bound on the KL-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 482, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 154, + 496 + ], + "score": 1.0, + "content": "divergence", + "type": "text" + }, + { + "bbox": [ + 155, + 482, + 215, + 494 + ], + "score": 0.91, + "content": "D _ { \\mathrm { K L } } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 482, + 506, + 496 + ], + "score": 1.0, + "content": "which is composed of the reconstruction cost plus the regularizer", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 493, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 213, + 505 + ], + "score": 0.87, + "content": "\\mathbb { E } _ { P _ { X } } \\left[ D _ { \\mathrm { K L } } ( Q ( Z | X ) , P _ { Z } ) \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 493, + 506, + 507 + ], + "score": 1.0, + "content": ". The regularizer captures how distinct the image by the encoder of each", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 504, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 249, + 517 + ], + "score": 1.0, + "content": "training example is from the prior", + "type": "text" + }, + { + "bbox": [ + 249, + 505, + 263, + 515 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 504, + 505, + 517 + ], + "score": 1.0, + "content": ", which is not guaranteeing that the overall encoded distri-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 514, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 135, + 529 + ], + "score": 1.0, + "content": "bution", + "type": "text" + }, + { + "bbox": [ + 135, + 515, + 154, + 527 + ], + "score": 0.62, + "content": "\\mathbb { E } _ { P _ { X } }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 515, + 197, + 527 + ], + "score": 0.83, + "content": "\\mathinner { \\langle { Q \\mathopen { \\left( Z \\vert X \\right) } } \\rvert }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 514, + 235, + 529 + ], + "score": 1.0, + "content": "matches", + "type": "text" + }, + { + "bbox": [ + 235, + 516, + 249, + 526 + ], + "score": 0.88, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 514, + 506, + 529 + ], + "score": 1.0, + "content": "like WAE does. Also, VAEs require non-degenerate (i.e. non-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 525, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 404, + 540 + ], + "score": 1.0, + "content": "deterministic) Gaussian encoders and random decoders for which the term", + "type": "text" + }, + { + "bbox": [ + 405, + 526, + 453, + 538 + ], + "score": 0.92, + "content": "\\log p _ { G } ( x | z )", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 525, + 505, + 540 + ], + "score": 1.0, + "content": "can be com-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 536, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 551 + ], + "score": 1.0, + "content": "puted and differentiated with respect to the parameters. Later Mescheder et al. (2017) proposed a", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 547, + 504, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 450, + 562 + ], + "score": 1.0, + "content": "way to use VAE with non-Gaussian encoders. WAE minimizes the optimal transport", + "type": "text" + }, + { + "bbox": [ + 450, + 548, + 504, + 560 + ], + "score": 0.92, + "content": "W _ { c } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 559, + 436, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 436, + 572 + ], + "score": 1.0, + "content": "and allows both probabilistic and deterministic encoder-decoder pairs of any kind.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 471, + 506, + 572 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 576, + 505, + 631 + ], + "lines": [ + { + "bbox": [ + 106, + 575, + 506, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 506, + 589 + ], + "score": 1.0, + "content": "The VAE regularizer can be also equivalently written (Hoffman & Johnson, 2016) as a sum of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 107, + 586, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 107, + 587, + 167, + 599 + ], + "score": 0.92, + "content": "D _ { \\mathrm { K L } } ( Q _ { Z } , P _ { Z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 586, + 269, + 601 + ], + "score": 1.0, + "content": "and a mutual information", + "type": "text" + }, + { + "bbox": [ + 270, + 587, + 309, + 599 + ], + "score": 0.93, + "content": "\\mathbb { I } _ { Q } ( X , Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 586, + 390, + 601 + ], + "score": 1.0, + "content": "between the images", + "type": "text" + }, + { + "bbox": [ + 390, + 588, + 400, + 597 + ], + "score": 0.8, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 586, + 467, + 601 + ], + "score": 1.0, + "content": "and latent codes", + "type": "text" + }, + { + "bbox": [ + 467, + 588, + 476, + 597 + ], + "score": 0.75, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 586, + 505, + 601 + ], + "score": 1.0, + "content": "jointly", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 597, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 204, + 611 + ], + "score": 1.0, + "content": "distributed according to", + "type": "text" + }, + { + "bbox": [ + 204, + 598, + 266, + 610 + ], + "score": 0.92, + "content": "P _ { X } \\times Q ( Z | X )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 597, + 505, + 611 + ], + "score": 1.0, + "content": ". This observation provides another intuitive way to explain", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "score": 1.0, + "content": "a difference between our algorithm and VAEs: WAEs simply drop the mutual information term", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 620, + 242, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 620, + 146, + 632 + ], + "score": 0.93, + "content": "\\mathbb { I } _ { Q } ( X , Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 620, + 242, + 633 + ], + "score": 1.0, + "content": "in the VAE regularizer.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 575, + 506, + 633 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 637, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 175, + 651 + ], + "score": 1.0, + "content": "When used with", + "type": "text" + }, + { + "bbox": [ + 175, + 637, + 255, + 650 + ], + "score": 0.92, + "content": "c ( x , y ) = \\| x - y \\| _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 638, + 505, + 651 + ], + "score": 1.0, + "content": "WAE-GAN is equivalent to adversarial auto-encoders (AAE)", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "score": 1.0, + "content": "proposed by Makhzani et al. (2016). Theory of Bousquet et al. (2017) (and in particular Theorem 1)", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 393, + 672 + ], + "score": 1.0, + "content": "thus suggests that AAEs minimize the 2-Wasserstein distance between", + "type": "text" + }, + { + "bbox": [ + 394, + 660, + 409, + 671 + ], + "score": 0.9, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 660, + 428, + 672 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 428, + 660, + 442, + 671 + ], + "score": 0.89, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 660, + 505, + 672 + ], + "score": 1.0, + "content": ". This provides", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 669, + 505, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 505, + 685 + ], + "score": 1.0, + "content": "the first theoretical justification for AAEs known to the authors. WAE generalizes AAE in two ways:", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 681, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 237, + 695 + ], + "score": 1.0, + "content": "first, it can use any cost function", + "type": "text" + }, + { + "bbox": [ + 238, + 684, + 243, + 691 + ], + "score": 0.74, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 681, + 316, + 695 + ], + "score": 1.0, + "content": "in the input space", + "type": "text" + }, + { + "bbox": [ + 317, + 682, + 326, + 691 + ], + "score": 0.81, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 681, + 505, + 695 + ], + "score": 1.0, + "content": "; second, it can use any discrepancy measure", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 692, + 496, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 122, + 704 + ], + "score": 0.88, + "content": "\\mathcal { D } _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 122, + 692, + 197, + 705 + ], + "score": 1.0, + "content": "in the latent space", + "type": "text" + }, + { + "bbox": [ + 198, + 693, + 207, + 703 + ], + "score": 0.81, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 692, + 496, + 705 + ], + "score": 1.0, + "content": "(for instance MMD), not necessarily the adversarial one of WAE-GAN.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 637, + 506, + 705 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Finally, Zhao et al. (2017b) independently proposed a regularized auto-encoder objective similar to", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 719, + 505, + 735 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 505, + 735 + ], + "score": 1.0, + "content": "Bousquet et al. (2017) and our (4) based on very different motivations and arguments. Following", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 709, + 505, + 735 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 94 + ], + "score": 1.0, + "content": "VAEs their objective (called InfoVAE) defines the reconstruction cost in the image space implicitly", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 267, + 106 + ], + "score": 1.0, + "content": "through the negative log likelihood term", + "type": "text" + }, + { + "bbox": [ + 267, + 93, + 325, + 106 + ], + "score": 0.89, + "content": "- \\log p _ { G } ( x | z )", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 93, + 505, + 106 + ], + "score": 1.0, + "content": ", which should be properly normalized for all", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 133, + 115 + ], + "score": 0.88, + "content": "z \\in { \\mathcal { Z } }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 104, + 505, + 117 + ], + "score": 1.0, + "content": ". In theory VAE and InfoVAE can both induce arbitrary cost functions, however in practice this", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "may require an estimation of the normalizing constant (partition function) which can3 be different", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 503, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 195, + 140 + ], + "score": 1.0, + "content": "for different values of", + "type": "text" + }, + { + "bbox": [ + 196, + 128, + 202, + 136 + ], + "score": 0.7, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 126, + 298, + 140 + ], + "score": 1.0, + "content": ". WAEs specify the cost", + "type": "text" + }, + { + "bbox": [ + 299, + 126, + 327, + 138 + ], + "score": 0.92, + "content": "c ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 126, + 503, + 140 + ], + "score": 1.0, + "content": "explicitly and don’t constrain it in any way.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 143, + 505, + 199 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 155 + ], + "score": 1.0, + "content": "Literature on OT Genevay et al. (2016) address computing the OT cost in large scale using SGD", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "and sampling. They approach this task either through the dual formulation, or via a regularized", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "version of the primal. They do not discuss any implications for generative modeling. Our approach", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 175, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 505, + 189 + ], + "score": 1.0, + "content": "is based on the primal form of OT, we arrive at regularizers which are very different, and our main", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 239, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 239, + 201 + ], + "score": 1.0, + "content": "focus is on generative modeling.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 505, + 259 + ], + "lines": [ + { + "bbox": [ + 106, + 204, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 407, + 216 + ], + "score": 1.0, + "content": "The WGAN (Arjovsky et al., 2017) minimizes the 1-Wasserstein distance", + "type": "text" + }, + { + "bbox": [ + 407, + 204, + 461, + 216 + ], + "score": 0.93, + "content": "W _ { 1 } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 204, + 505, + 216 + ], + "score": 1.0, + "content": "for gener-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 215, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 505, + 227 + ], + "score": 1.0, + "content": "ative modeling. The authors approach this task from the dual form. Their algorithm comes with-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 226, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 367, + 238 + ], + "score": 1.0, + "content": "out an encoder and can not be readily applied to any other cost", + "type": "text" + }, + { + "bbox": [ + 367, + 226, + 382, + 237 + ], + "score": 0.88, + "content": "W _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 226, + 505, + 238 + ], + "score": 1.0, + "content": ", because the neat form of the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 237, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 306, + 249 + ], + "score": 1.0, + "content": "Kantorovich-Rubinstein duality (2) holds only for", + "type": "text" + }, + { + "bbox": [ + 306, + 237, + 321, + 248 + ], + "score": 0.89, + "content": "W _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 237, + 505, + 249 + ], + "score": 1.0, + "content": ". WAE approaches the same problem from the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 247, + 464, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 304, + 261 + ], + "score": 1.0, + "content": "primal form, can be applied for any cost function", + "type": "text" + }, + { + "bbox": [ + 304, + 250, + 310, + 258 + ], + "score": 0.69, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 247, + 464, + 261 + ], + "score": 1.0, + "content": ", and comes naturally with an encoder.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 265, + 505, + 433 + ], + "lines": [ + { + "bbox": [ + 105, + 264, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 506, + 277 + ], + "score": 1.0, + "content": "In order to compute the values (1) or (2) of OT we need to handle non-trivial constraints, either", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 276, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 224, + 288 + ], + "score": 1.0, + "content": "on the coupling distribution", + "type": "text" + }, + { + "bbox": [ + 224, + 276, + 232, + 286 + ], + "score": 0.68, + "content": "\\Gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 276, + 313, + 288 + ], + "score": 1.0, + "content": "or on the function", + "type": "text" + }, + { + "bbox": [ + 313, + 276, + 320, + 288 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 276, + 506, + 288 + ], + "score": 1.0, + "content": "being considered. Various approaches have", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 286, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 365, + 299 + ], + "score": 1.0, + "content": "been proposed in the literature to circumvent this difficulty. For", + "type": "text" + }, + { + "bbox": [ + 366, + 287, + 381, + 298 + ], + "score": 0.89, + "content": "W _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 286, + 506, + 299 + ], + "score": 1.0, + "content": "Arjovsky et al. (2017) tried to", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 297, + 506, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 494, + 311 + ], + "score": 1.0, + "content": "implement the constraint in the dual formulation (2) by clipping the weights of the neural network", + "type": "text" + }, + { + "bbox": [ + 494, + 298, + 501, + 309 + ], + "score": 0.82, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 297, + 506, + 311 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 308, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 505, + 321 + ], + "score": 1.0, + "content": "Later Gulrajani et al. (2017) proposed to relax the same constraint by penalizing the objective of (2)", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 320, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 158, + 334 + ], + "score": 1.0, + "content": "with a term", + "type": "text" + }, + { + "bbox": [ + 159, + 320, + 253, + 333 + ], + "score": 0.89, + "content": "\\lambda \\cdot \\mathbb { E } \\left( \\left\\| \\nabla f ( X ) \\right\\| - 1 \\right) ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 320, + 415, + 334 + ], + "score": 1.0, + "content": "which should not be greater than 1 if", + "type": "text" + }, + { + "bbox": [ + 416, + 321, + 453, + 333 + ], + "score": 0.91, + "content": "f \\in \\mathcal { F } _ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 320, + 506, + 334 + ], + "score": 1.0, + "content": ". In a more", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 331, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 104, + 331, + 199, + 345 + ], + "score": 1.0, + "content": "general OT setting of", + "type": "text" + }, + { + "bbox": [ + 199, + 333, + 214, + 343 + ], + "score": 0.88, + "content": "W _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 331, + 506, + 345 + ], + "score": 1.0, + "content": "Cuturi (2013) proposed to penalize the objective of (1) with the KL-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 153, + 356 + ], + "score": 1.0, + "content": "divergence", + "type": "text" + }, + { + "bbox": [ + 154, + 343, + 237, + 355 + ], + "score": 0.9, + "content": "\\lambda \\cdot D _ { \\mathrm { K L } } ( \\Gamma , P \\otimes Q )", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 343, + 505, + 356 + ], + "score": 1.0, + "content": "between the coupling distribution and the product of marginals.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 354, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 505, + 367 + ], + "score": 1.0, + "content": "Genevay et al. (2016) showed that this entropic regularization drops the constraints on functions in", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 364, + 506, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 506, + 378 + ], + "score": 1.0, + "content": "the dual formulation as opposed to (2). Finally, in the context of unbalanced optimal transport it", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 375, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 430, + 390 + ], + "score": 1.0, + "content": "has been proposed to relax the constraint in (1) by regularizing the objective with", + "type": "text" + }, + { + "bbox": [ + 430, + 375, + 505, + 389 + ], + "score": 0.9, + "content": "\\lambda \\cdot \\left( D _ { f } ( \\Gamma _ { X } , \\mathbf { \\bar { \\Gamma } } ^ { } P ) + \\right.", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 388, + 506, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 388, + 158, + 402 + ], + "score": 0.91, + "content": "D _ { f } ( \\Gamma _ { Y } , Q ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 388, + 356, + 402 + ], + "score": 1.0, + "content": "(Chizat et al., 2015; Liero et al., 2015), where", + "type": "text" + }, + { + "bbox": [ + 356, + 389, + 371, + 400 + ], + "score": 0.89, + "content": "\\Gamma _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 388, + 391, + 402 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 392, + 389, + 406, + 400 + ], + "score": 0.88, + "content": "\\Gamma _ { Y }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 388, + 479, + 402 + ], + "score": 1.0, + "content": "are marginals of", + "type": "text" + }, + { + "bbox": [ + 479, + 390, + 487, + 399 + ], + "score": 0.63, + "content": "\\Gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 388, + 506, + 402 + ], + "score": 1.0, + "content": ". In", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 399, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 506, + 414 + ], + "score": 1.0, + "content": "this paper we propose to relax OT in a way similar to the unbalanced optimal transport, i.e. by", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 410, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 424 + ], + "score": 1.0, + "content": "adding additional divergences to the objective. However, we show that in the particular context of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 422, + 351, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 351, + 436 + ], + "score": 1.0, + "content": "generative modeling, only one extra divergence is necessary.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 108, + 438, + 502, + 472 + ], + "lines": [ + { + "bbox": [ + 106, + 439, + 504, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 359, + 451 + ], + "score": 1.0, + "content": "Literature on GANs Many of the GAN variations (including", + "type": "text" + }, + { + "bbox": [ + 359, + 439, + 366, + 451 + ], + "score": 0.83, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 439, + 504, + 451 + ], + "score": 1.0, + "content": "-GAN and WGAN) come without", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 505, + 462 + ], + "score": 1.0, + "content": "an encoder. Often it may be desirable to reconstruct the latent codes and use the learned manifold,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 461, + 297, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 297, + 473 + ], + "score": 1.0, + "content": "in which cases these models are not applicable.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 505, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 491 + ], + "score": 1.0, + "content": "There have been many other approaches trying to blend the adversarial training of GANs with auto-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 248, + 501 + ], + "score": 1.0, + "content": "encoder architectures (Zhao et al.,", + "type": "text" + }, + { + "bbox": [ + 249, + 489, + 275, + 499 + ], + "score": 0.34, + "content": "2 0 1 7 \\mathrm { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 488, + 505, + 501 + ], + "score": 1.0, + "content": "; Dumoulin et al., 2017; Ulyanov et al., 2017; Berthelot", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 500, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 506, + 513 + ], + "score": 1.0, + "content": "et al., 2017). The approach proposed by Ulyanov et al. (2017) is perhaps the most relevant to our", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 509, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 302, + 524 + ], + "score": 1.0, + "content": "work. The authors use the discrepancy between", + "type": "text" + }, + { + "bbox": [ + 302, + 511, + 317, + 522 + ], + "score": 0.9, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 509, + 400, + 524 + ], + "score": 1.0, + "content": "and the distribution", + "type": "text" + }, + { + "bbox": [ + 401, + 510, + 493, + 523 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { Z ^ { \\prime } \\sim P _ { Z } } [ Q \\left( Z | G ( Z ^ { \\prime } ) \\right) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 509, + 506, + 524 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 522, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 104, + 522, + 506, + 534 + ], + "score": 1.0, + "content": "auto-encoded noise vectors as the objective for the max-min game between the encoder and decoder", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 413, + 545 + ], + "score": 1.0, + "content": "respectively. While the authors showed that the saddle points correspond to", + "type": "text" + }, + { + "bbox": [ + 413, + 533, + 456, + 544 + ], + "score": 0.92, + "content": "P _ { X } = P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 532, + 505, + 545 + ], + "score": 1.0, + "content": ", they admit", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 543, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 505, + 556 + ], + "score": 1.0, + "content": "that encoders and decoders trained in this way have no incentive to be reciprocal. As a workaround", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "they propose to include an additional reconstruction term to the objective. WAE does not necessarily", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 565, + 459, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 459, + 578 + ], + "score": 1.0, + "content": "lead to a min-max game, uses a different penalty, and has a clear theoretical foundation.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 106, + 582, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 106, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "Several works used reproducing kernels in context of GANs. Li et al. (2015); Dziugaite et al. (2015)", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 227, + 606 + ], + "score": 1.0, + "content": "use MMD with a fixed kernel", + "type": "text" + }, + { + "bbox": [ + 227, + 594, + 234, + 603 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 594, + 272, + 606 + ], + "score": 1.0, + "content": "to match", + "type": "text" + }, + { + "bbox": [ + 272, + 594, + 288, + 604 + ], + "score": 0.89, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 594, + 306, + 606 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 306, + 594, + 320, + 604 + ], + "score": 0.89, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 594, + 428, + 606 + ], + "score": 1.0, + "content": "directly in the input space", + "type": "text" + }, + { + "bbox": [ + 428, + 594, + 438, + 603 + ], + "score": 0.78, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 594, + 505, + 606 + ], + "score": 1.0, + "content": ". These methods", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 604, + 503, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 432, + 617 + ], + "score": 1.0, + "content": "have been criticised to require larger mini-batches during training: estimating", + "type": "text" + }, + { + "bbox": [ + 433, + 604, + 503, + 616 + ], + "score": 0.94, + "content": "\\mathrm { M M D } _ { k } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 615, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 464, + 627 + ], + "score": 1.0, + "content": "requires number of samples roughly proportional to the dimensionality of the input space", + "type": "text" + }, + { + "bbox": [ + 464, + 616, + 474, + 625 + ], + "score": 0.8, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 615, + 505, + 627 + ], + "score": 1.0, + "content": "(Reddi", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 626, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 278, + 638 + ], + "score": 1.0, + "content": "et al., 2015) which is typically larger than", + "type": "text" + }, + { + "bbox": [ + 278, + 626, + 294, + 637 + ], + "score": 0.9, + "content": "1 0 ^ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 626, + 505, + 638 + ], + "score": 1.0, + "content": ". Li et al. (2017) take a similar approach but further", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 637, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 127, + 649 + ], + "score": 1.0, + "content": "train", + "type": "text" + }, + { + "bbox": [ + 127, + 638, + 134, + 647 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 637, + 505, + 649 + ], + "score": 1.0, + "content": "adversarially so as to arrive at a meaningful loss function. WAE-MMD uses MMD to match", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 648, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 122, + 659 + ], + "score": 0.89, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 122, + 648, + 171, + 661 + ], + "score": 1.0, + "content": "to the prior", + "type": "text" + }, + { + "bbox": [ + 171, + 649, + 185, + 659 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 648, + 261, + 661 + ], + "score": 1.0, + "content": "in the latent space", + "type": "text" + }, + { + "bbox": [ + 261, + 649, + 270, + 658 + ], + "score": 0.71, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 648, + 315, + 661 + ], + "score": 1.0, + "content": ". Typically", + "type": "text" + }, + { + "bbox": [ + 316, + 649, + 325, + 658 + ], + "score": 0.8, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 648, + 480, + 661 + ], + "score": 1.0, + "content": "has no more than 100 dimensions and", + "type": "text" + }, + { + "bbox": [ + 480, + 649, + 494, + 659 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 648, + 506, + 661 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 659, + 458, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 458, + 672 + ], + "score": 1.0, + "content": "Gaussian, which allows us to use regular mini-batch sizes to accurately estimate MMD.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 45.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 701, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 117, + 698, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 117, + 698, + 339, + 714 + ], + "score": 1.0, + "content": "3Two popular choices are Gaussian and Bernoulli decoders", + "type": "text" + }, + { + "bbox": [ + 339, + 703, + 377, + 712 + ], + "score": 0.91, + "content": "P _ { G } ( X | Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 698, + 506, + 714 + ], + "score": 1.0, + "content": "leading to pixel-wise squared and", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 712, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 712, + 505, + 722 + ], + "score": 1.0, + "content": "cross-entropy losses respectively. In both cases the normalizing constants can be computed in closed form and", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 179, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 167, + 732 + ], + "score": 1.0, + "content": "don’t depend on", + "type": "text" + }, + { + "bbox": [ + 167, + 722, + 175, + 730 + ], + "score": 0.8, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 721, + 179, + 732 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 94 + ], + "score": 1.0, + "content": "VAEs their objective (called InfoVAE) defines the reconstruction cost in the image space implicitly", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 267, + 106 + ], + "score": 1.0, + "content": "through the negative log likelihood term", + "type": "text" + }, + { + "bbox": [ + 267, + 93, + 325, + 106 + ], + "score": 0.89, + "content": "- \\log p _ { G } ( x | z )", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 93, + 505, + 106 + ], + "score": 1.0, + "content": ", which should be properly normalized for all", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 133, + 115 + ], + "score": 0.88, + "content": "z \\in { \\mathcal { Z } }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 104, + 505, + 117 + ], + "score": 1.0, + "content": ". In theory VAE and InfoVAE can both induce arbitrary cost functions, however in practice this", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "may require an estimation of the normalizing constant (partition function) which can3 be different", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 503, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 195, + 140 + ], + "score": 1.0, + "content": "for different values of", + "type": "text" + }, + { + "bbox": [ + 196, + 128, + 202, + 136 + ], + "score": 0.7, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 126, + 298, + 140 + ], + "score": 1.0, + "content": ". WAEs specify the cost", + "type": "text" + }, + { + "bbox": [ + 299, + 126, + 327, + 138 + ], + "score": 0.92, + "content": "c ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 126, + 503, + 140 + ], + "score": 1.0, + "content": "explicitly and don’t constrain it in any way.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 82, + 505, + 140 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 143, + 505, + 199 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 155 + ], + "score": 1.0, + "content": "Literature on OT Genevay et al. (2016) address computing the OT cost in large scale using SGD", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "and sampling. They approach this task either through the dual formulation, or via a regularized", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "version of the primal. They do not discuss any implications for generative modeling. Our approach", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 175, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 505, + 189 + ], + "score": 1.0, + "content": "is based on the primal form of OT, we arrive at regularizers which are very different, and our main", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 239, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 239, + 201 + ], + "score": 1.0, + "content": "focus is on generative modeling.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 142, + 505, + 201 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 505, + 259 + ], + "lines": [ + { + "bbox": [ + 106, + 204, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 407, + 216 + ], + "score": 1.0, + "content": "The WGAN (Arjovsky et al., 2017) minimizes the 1-Wasserstein distance", + "type": "text" + }, + { + "bbox": [ + 407, + 204, + 461, + 216 + ], + "score": 0.93, + "content": "W _ { 1 } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 204, + 505, + 216 + ], + "score": 1.0, + "content": "for gener-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 215, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 505, + 227 + ], + "score": 1.0, + "content": "ative modeling. The authors approach this task from the dual form. Their algorithm comes with-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 226, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 367, + 238 + ], + "score": 1.0, + "content": "out an encoder and can not be readily applied to any other cost", + "type": "text" + }, + { + "bbox": [ + 367, + 226, + 382, + 237 + ], + "score": 0.88, + "content": "W _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 226, + 505, + 238 + ], + "score": 1.0, + "content": ", because the neat form of the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 237, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 306, + 249 + ], + "score": 1.0, + "content": "Kantorovich-Rubinstein duality (2) holds only for", + "type": "text" + }, + { + "bbox": [ + 306, + 237, + 321, + 248 + ], + "score": 0.89, + "content": "W _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 237, + 505, + 249 + ], + "score": 1.0, + "content": ". WAE approaches the same problem from the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 247, + 464, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 304, + 261 + ], + "score": 1.0, + "content": "primal form, can be applied for any cost function", + "type": "text" + }, + { + "bbox": [ + 304, + 250, + 310, + 258 + ], + "score": 0.69, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 247, + 464, + 261 + ], + "score": 1.0, + "content": ", and comes naturally with an encoder.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 204, + 505, + 261 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 265, + 505, + 433 + ], + "lines": [ + { + "bbox": [ + 105, + 264, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 506, + 277 + ], + "score": 1.0, + "content": "In order to compute the values (1) or (2) of OT we need to handle non-trivial constraints, either", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 276, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 224, + 288 + ], + "score": 1.0, + "content": "on the coupling distribution", + "type": "text" + }, + { + "bbox": [ + 224, + 276, + 232, + 286 + ], + "score": 0.68, + "content": "\\Gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 276, + 313, + 288 + ], + "score": 1.0, + "content": "or on the function", + "type": "text" + }, + { + "bbox": [ + 313, + 276, + 320, + 288 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 276, + 506, + 288 + ], + "score": 1.0, + "content": "being considered. Various approaches have", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 286, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 365, + 299 + ], + "score": 1.0, + "content": "been proposed in the literature to circumvent this difficulty. For", + "type": "text" + }, + { + "bbox": [ + 366, + 287, + 381, + 298 + ], + "score": 0.89, + "content": "W _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 286, + 506, + 299 + ], + "score": 1.0, + "content": "Arjovsky et al. (2017) tried to", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 297, + 506, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 494, + 311 + ], + "score": 1.0, + "content": "implement the constraint in the dual formulation (2) by clipping the weights of the neural network", + "type": "text" + }, + { + "bbox": [ + 494, + 298, + 501, + 309 + ], + "score": 0.82, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 297, + 506, + 311 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 308, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 505, + 321 + ], + "score": 1.0, + "content": "Later Gulrajani et al. (2017) proposed to relax the same constraint by penalizing the objective of (2)", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 320, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 158, + 334 + ], + "score": 1.0, + "content": "with a term", + "type": "text" + }, + { + "bbox": [ + 159, + 320, + 253, + 333 + ], + "score": 0.89, + "content": "\\lambda \\cdot \\mathbb { E } \\left( \\left\\| \\nabla f ( X ) \\right\\| - 1 \\right) ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 320, + 415, + 334 + ], + "score": 1.0, + "content": "which should not be greater than 1 if", + "type": "text" + }, + { + "bbox": [ + 416, + 321, + 453, + 333 + ], + "score": 0.91, + "content": "f \\in \\mathcal { F } _ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 320, + 506, + 334 + ], + "score": 1.0, + "content": ". In a more", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 331, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 104, + 331, + 199, + 345 + ], + "score": 1.0, + "content": "general OT setting of", + "type": "text" + }, + { + "bbox": [ + 199, + 333, + 214, + 343 + ], + "score": 0.88, + "content": "W _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 331, + 506, + 345 + ], + "score": 1.0, + "content": "Cuturi (2013) proposed to penalize the objective of (1) with the KL-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 153, + 356 + ], + "score": 1.0, + "content": "divergence", + "type": "text" + }, + { + "bbox": [ + 154, + 343, + 237, + 355 + ], + "score": 0.9, + "content": "\\lambda \\cdot D _ { \\mathrm { K L } } ( \\Gamma , P \\otimes Q )", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 343, + 505, + 356 + ], + "score": 1.0, + "content": "between the coupling distribution and the product of marginals.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 354, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 505, + 367 + ], + "score": 1.0, + "content": "Genevay et al. (2016) showed that this entropic regularization drops the constraints on functions in", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 364, + 506, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 506, + 378 + ], + "score": 1.0, + "content": "the dual formulation as opposed to (2). Finally, in the context of unbalanced optimal transport it", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 375, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 430, + 390 + ], + "score": 1.0, + "content": "has been proposed to relax the constraint in (1) by regularizing the objective with", + "type": "text" + }, + { + "bbox": [ + 430, + 375, + 505, + 389 + ], + "score": 0.9, + "content": "\\lambda \\cdot \\left( D _ { f } ( \\Gamma _ { X } , \\mathbf { \\bar { \\Gamma } } ^ { } P ) + \\right.", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 388, + 506, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 388, + 158, + 402 + ], + "score": 0.91, + "content": "D _ { f } ( \\Gamma _ { Y } , Q ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 388, + 356, + 402 + ], + "score": 1.0, + "content": "(Chizat et al., 2015; Liero et al., 2015), where", + "type": "text" + }, + { + "bbox": [ + 356, + 389, + 371, + 400 + ], + "score": 0.89, + "content": "\\Gamma _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 388, + 391, + 402 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 392, + 389, + 406, + 400 + ], + "score": 0.88, + "content": "\\Gamma _ { Y }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 388, + 479, + 402 + ], + "score": 1.0, + "content": "are marginals of", + "type": "text" + }, + { + "bbox": [ + 479, + 390, + 487, + 399 + ], + "score": 0.63, + "content": "\\Gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 388, + 506, + 402 + ], + "score": 1.0, + "content": ". In", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 399, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 506, + 414 + ], + "score": 1.0, + "content": "this paper we propose to relax OT in a way similar to the unbalanced optimal transport, i.e. by", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 410, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 424 + ], + "score": 1.0, + "content": "adding additional divergences to the objective. However, we show that in the particular context of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 422, + 351, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 351, + 436 + ], + "score": 1.0, + "content": "generative modeling, only one extra divergence is necessary.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 22, + "bbox_fs": [ + 104, + 264, + 506, + 436 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 438, + 502, + 472 + ], + "lines": [ + { + "bbox": [ + 106, + 439, + 504, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 359, + 451 + ], + "score": 1.0, + "content": "Literature on GANs Many of the GAN variations (including", + "type": "text" + }, + { + "bbox": [ + 359, + 439, + 366, + 451 + ], + "score": 0.83, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 439, + 504, + 451 + ], + "score": 1.0, + "content": "-GAN and WGAN) come without", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 505, + 462 + ], + "score": 1.0, + "content": "an encoder. Often it may be desirable to reconstruct the latent codes and use the learned manifold,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 461, + 297, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 297, + 473 + ], + "score": 1.0, + "content": "in which cases these models are not applicable.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 439, + 505, + 473 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 505, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 491 + ], + "score": 1.0, + "content": "There have been many other approaches trying to blend the adversarial training of GANs with auto-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 248, + 501 + ], + "score": 1.0, + "content": "encoder architectures (Zhao et al.,", + "type": "text" + }, + { + "bbox": [ + 249, + 489, + 275, + 499 + ], + "score": 0.34, + "content": "2 0 1 7 \\mathrm { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 488, + 505, + 501 + ], + "score": 1.0, + "content": "; Dumoulin et al., 2017; Ulyanov et al., 2017; Berthelot", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 500, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 506, + 513 + ], + "score": 1.0, + "content": "et al., 2017). The approach proposed by Ulyanov et al. (2017) is perhaps the most relevant to our", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 509, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 302, + 524 + ], + "score": 1.0, + "content": "work. The authors use the discrepancy between", + "type": "text" + }, + { + "bbox": [ + 302, + 511, + 317, + 522 + ], + "score": 0.9, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 509, + 400, + 524 + ], + "score": 1.0, + "content": "and the distribution", + "type": "text" + }, + { + "bbox": [ + 401, + 510, + 493, + 523 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { Z ^ { \\prime } \\sim P _ { Z } } [ Q \\left( Z | G ( Z ^ { \\prime } ) \\right) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 509, + 506, + 524 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 522, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 104, + 522, + 506, + 534 + ], + "score": 1.0, + "content": "auto-encoded noise vectors as the objective for the max-min game between the encoder and decoder", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 413, + 545 + ], + "score": 1.0, + "content": "respectively. While the authors showed that the saddle points correspond to", + "type": "text" + }, + { + "bbox": [ + 413, + 533, + 456, + 544 + ], + "score": 0.92, + "content": "P _ { X } = P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 532, + 505, + 545 + ], + "score": 1.0, + "content": ", they admit", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 543, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 505, + 556 + ], + "score": 1.0, + "content": "that encoders and decoders trained in this way have no incentive to be reciprocal. As a workaround", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "they propose to include an additional reconstruction term to the objective. WAE does not necessarily", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 565, + 459, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 459, + 578 + ], + "score": 1.0, + "content": "lead to a min-max game, uses a different penalty, and has a clear theoretical foundation.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37, + "bbox_fs": [ + 104, + 477, + 506, + 578 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 582, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 106, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "Several works used reproducing kernels in context of GANs. Li et al. (2015); Dziugaite et al. (2015)", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 227, + 606 + ], + "score": 1.0, + "content": "use MMD with a fixed kernel", + "type": "text" + }, + { + "bbox": [ + 227, + 594, + 234, + 603 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 594, + 272, + 606 + ], + "score": 1.0, + "content": "to match", + "type": "text" + }, + { + "bbox": [ + 272, + 594, + 288, + 604 + ], + "score": 0.89, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 594, + 306, + 606 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 306, + 594, + 320, + 604 + ], + "score": 0.89, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 594, + 428, + 606 + ], + "score": 1.0, + "content": "directly in the input space", + "type": "text" + }, + { + "bbox": [ + 428, + 594, + 438, + 603 + ], + "score": 0.78, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 594, + 505, + 606 + ], + "score": 1.0, + "content": ". These methods", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 604, + 503, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 432, + 617 + ], + "score": 1.0, + "content": "have been criticised to require larger mini-batches during training: estimating", + "type": "text" + }, + { + "bbox": [ + 433, + 604, + 503, + 616 + ], + "score": 0.94, + "content": "\\mathrm { M M D } _ { k } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 615, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 464, + 627 + ], + "score": 1.0, + "content": "requires number of samples roughly proportional to the dimensionality of the input space", + "type": "text" + }, + { + "bbox": [ + 464, + 616, + 474, + 625 + ], + "score": 0.8, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 615, + 505, + 627 + ], + "score": 1.0, + "content": "(Reddi", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 626, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 278, + 638 + ], + "score": 1.0, + "content": "et al., 2015) which is typically larger than", + "type": "text" + }, + { + "bbox": [ + 278, + 626, + 294, + 637 + ], + "score": 0.9, + "content": "1 0 ^ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 626, + 505, + 638 + ], + "score": 1.0, + "content": ". Li et al. (2017) take a similar approach but further", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 637, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 127, + 649 + ], + "score": 1.0, + "content": "train", + "type": "text" + }, + { + "bbox": [ + 127, + 638, + 134, + 647 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 637, + 505, + 649 + ], + "score": 1.0, + "content": "adversarially so as to arrive at a meaningful loss function. WAE-MMD uses MMD to match", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 648, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 122, + 659 + ], + "score": 0.89, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 122, + 648, + 171, + 661 + ], + "score": 1.0, + "content": "to the prior", + "type": "text" + }, + { + "bbox": [ + 171, + 649, + 185, + 659 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 648, + 261, + 661 + ], + "score": 1.0, + "content": "in the latent space", + "type": "text" + }, + { + "bbox": [ + 261, + 649, + 270, + 658 + ], + "score": 0.71, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 648, + 315, + 661 + ], + "score": 1.0, + "content": ". Typically", + "type": "text" + }, + { + "bbox": [ + 316, + 649, + 325, + 658 + ], + "score": 0.8, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 648, + 480, + 661 + ], + "score": 1.0, + "content": "has no more than 100 dimensions and", + "type": "text" + }, + { + "bbox": [ + 480, + 649, + 494, + 659 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 648, + 506, + 661 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 659, + 458, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 458, + 672 + ], + "score": 1.0, + "content": "Gaussian, which allows us to use regular mini-batch sizes to accurately estimate MMD.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 582, + 506, + 672 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 77, + 502, + 427 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 77, + 502, + 427 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 77, + 502, + 427 + ], + "spans": [ + { + "bbox": [ + 109, + 77, + 502, + 427 + ], + "score": 0.975, + "type": "image", + "image_path": "ba6eb123cbe974ac8bc98667fc71d8053d7e708a6c4e49eac087dd03ed3734c6.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 77, + 502, + 193.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 193.66666666666669, + 502, + 310.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 310.33333333333337, + 502, + 427.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 435, + 504, + 458 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 435, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 505, + 447 + ], + "score": 1.0, + "content": "Figure 2: VAE (left column), WAE-MMD (middle column), and WAE-GAN (right column) trained", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 446, + 459, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 459, + 459 + ], + "score": 1.0, + "content": "on MNIST dataset. In “test reconstructions” odd rows correspond to the real test points.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "title", + "bbox": [ + 108, + 478, + 200, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 202, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 202, + 493 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 503, + 505, + 569 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 505, + 516 + ], + "score": 1.0, + "content": "In this section we empirically evaluate4 the proposed WAE model. We would like to test if WAE can", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "simultaneously achieve (i) accurate reconstructions of data points, (ii) reasonable geometry of the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "score": 1.0, + "content": "latent manifold, and (iii) random samples of good (visual) quality. Importantly, the model should", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 104, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "generalize well: requirements (i) and (ii) should be met on both training and test data. We trained", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 546, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 505, + 559 + ], + "score": 1.0, + "content": "WAE-GAN and WAE-MMD (Algorithms 1 and 2) on two real-world datasets: MNIST (LeCun et al.,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 557, + 487, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 186, + 571 + ], + "score": 1.0, + "content": "1998) consisting of", + "type": "text" + }, + { + "bbox": [ + 186, + 558, + 203, + 568 + ], + "score": 0.41, + "content": "7 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 557, + 487, + 571 + ], + "score": 1.0, + "content": "images and CelebA (Liu et al., 2015) containing roughly 203k images.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 575, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 104, + 574, + 503, + 588 + ], + "spans": [ + { + "bbox": [ + 104, + 574, + 455, + 588 + ], + "score": 1.0, + "content": "Experimental setup In all reported experiments we used Euclidian latent spaces", + "type": "text" + }, + { + "bbox": [ + 456, + 574, + 503, + 585 + ], + "score": 0.9, + "content": "\\mathcal { Z } \\ = \\ \\mathcal { R } ^ { d _ { z } }", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 585, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 154, + 599 + ], + "score": 1.0, + "content": "for various", + "type": "text" + }, + { + "bbox": [ + 154, + 586, + 165, + 597 + ], + "score": 0.86, + "content": "d _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 585, + 505, + 599 + ], + "score": 1.0, + "content": "depending on the complexity of the dataset, isotropic Gaussian prior distributions", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 596, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 217, + 609 + ], + "score": 0.89, + "content": "P _ { Z } ( Z ) = \\mathcal { N } ( Z ; \\mathbf { 0 } , \\sigma _ { z } ^ { 2 } \\cdot I _ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 596, + 238, + 611 + ], + "score": 1.0, + "content": "over", + "type": "text" + }, + { + "bbox": [ + 239, + 597, + 248, + 607 + ], + "score": 0.77, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 596, + 363, + 611 + ], + "score": 1.0, + "content": ", and a squared cost function", + "type": "text" + }, + { + "bbox": [ + 364, + 596, + 443, + 609 + ], + "score": 0.93, + "content": "c ( \\bar { x } , y ) = \\| x - \\bar { y } \\| _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 596, + 505, + 611 + ], + "score": 1.0, + "content": "for data points", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 606, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 107, + 608, + 175, + 619 + ], + "score": 0.88, + "content": "x , y \\in \\mathcal { X } = \\mathcal { R } ^ { d _ { x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 606, + 506, + 621 + ], + "score": 1.0, + "content": ". We used deterministic encoder-decoder pairs, Adam (Kingma & Lei, 2014) with", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 617, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 199, + 630 + ], + "score": 0.88, + "content": "\\beta _ { 1 } = 0 . 5 , \\beta _ { 2 } = 0 . 9 9 9", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 617, + 506, + 633 + ], + "score": 1.0, + "content": ", and convolutional deep neural network architectures for encoder mapping", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 629, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 107, + 631, + 159, + 642 + ], + "score": 0.9, + "content": "\\mu _ { \\phi } \\colon \\mathcal { X } \\to \\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 629, + 250, + 642 + ], + "score": 1.0, + "content": "and decoder mapping", + "type": "text" + }, + { + "bbox": [ + 250, + 630, + 304, + 641 + ], + "score": 0.92, + "content": "G _ { \\theta } \\colon { \\mathcal { Z } } \\to { \\mathcal { X } }", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 629, + 506, + 642 + ], + "score": 1.0, + "content": "similar to the DCGAN ones reported by Radford", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 641, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 479, + 653 + ], + "score": 1.0, + "content": "et al. (2016) with batch normalization (Ioffe & Szegedy, 2015). We tried various values of", + "type": "text" + }, + { + "bbox": [ + 479, + 641, + 487, + 651 + ], + "score": 0.8, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 641, + 505, + 653 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 652, + 406, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 652, + 155, + 664 + ], + "score": 1.0, + "content": "noticed that", + "type": "text" + }, + { + "bbox": [ + 156, + 652, + 186, + 662 + ], + "score": 0.9, + "content": "\\lambda = 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 652, + 406, + 664 + ], + "score": 1.0, + "content": "seems to work good across all datasets we considered.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 107, + 668, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 321, + 681 + ], + "score": 1.0, + "content": "Since we are using deterministic encoders, choosing", + "type": "text" + }, + { + "bbox": [ + 322, + 669, + 333, + 680 + ], + "score": 0.88, + "content": "d _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "larger than intrinsic dimensionality of the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 680, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 680, + 293, + 691 + ], + "score": 1.0, + "content": "dataset would force the encoded distribution", + "type": "text" + }, + { + "bbox": [ + 293, + 680, + 309, + 691 + ], + "score": 0.9, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 680, + 414, + 691 + ], + "score": 1.0, + "content": "to live on a manifold in", + "type": "text" + }, + { + "bbox": [ + 414, + 680, + 423, + 690 + ], + "score": 0.74, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 680, + 505, + 691 + ], + "score": 1.0, + "content": ". This would make", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 691, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 146, + 703 + ], + "score": 1.0, + "content": "matching", + "type": "text" + }, + { + "bbox": [ + 146, + 691, + 162, + 702 + ], + "score": 0.89, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 691, + 174, + 703 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 174, + 691, + 189, + 702 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 691, + 245, + 703 + ], + "score": 1.0, + "content": "impossible if", + "type": "text" + }, + { + "bbox": [ + 245, + 691, + 259, + 702 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 691, + 505, + 703 + ], + "score": 1.0, + "content": "is Gaussian and may lead to numerical instabilities. We use", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 701, + 439, + 713 + ], + "spans": [ + { + "bbox": [ + 107, + 702, + 136, + 713 + ], + "score": 0.91, + "content": "d _ { z } = 8", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 701, + 201, + 713 + ], + "score": 1.0, + "content": "for MNIST and", + "type": "text" + }, + { + "bbox": [ + 201, + 702, + 236, + 713 + ], + "score": 0.92, + "content": "d _ { z } = 6 4", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 701, + 439, + 713 + ], + "score": 1.0, + "content": "for CelebA which seems to work reasonably well.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 119, + 722, + 347, + 731 + ], + "lines": [ + { + "bbox": [ + 119, + 720, + 349, + 733 + ], + "spans": [ + { + "bbox": [ + 119, + 720, + 349, + 733 + ], + "score": 1.0, + "content": "4The code is available at github.com/tolstikhin/wae.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 77, + 502, + 427 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 77, + 502, + 427 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 77, + 502, + 427 + ], + "spans": [ + { + "bbox": [ + 109, + 77, + 502, + 427 + ], + "score": 0.975, + "type": "image", + "image_path": "ba6eb123cbe974ac8bc98667fc71d8053d7e708a6c4e49eac087dd03ed3734c6.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 77, + 502, + 193.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 193.66666666666669, + 502, + 310.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 310.33333333333337, + 502, + 427.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 435, + 504, + 458 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 435, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 505, + 447 + ], + "score": 1.0, + "content": "Figure 2: VAE (left column), WAE-MMD (middle column), and WAE-GAN (right column) trained", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 446, + 459, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 459, + 459 + ], + "score": 1.0, + "content": "on MNIST dataset. In “test reconstructions” odd rows correspond to the real test points.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "title", + "bbox": [ + 108, + 478, + 200, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 202, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 202, + 493 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 503, + 505, + 569 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 505, + 516 + ], + "score": 1.0, + "content": "In this section we empirically evaluate4 the proposed WAE model. We would like to test if WAE can", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "simultaneously achieve (i) accurate reconstructions of data points, (ii) reasonable geometry of the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "score": 1.0, + "content": "latent manifold, and (iii) random samples of good (visual) quality. Importantly, the model should", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 104, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "generalize well: requirements (i) and (ii) should be met on both training and test data. We trained", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 546, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 505, + 559 + ], + "score": 1.0, + "content": "WAE-GAN and WAE-MMD (Algorithms 1 and 2) on two real-world datasets: MNIST (LeCun et al.,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 557, + 487, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 186, + 571 + ], + "score": 1.0, + "content": "1998) consisting of", + "type": "text" + }, + { + "bbox": [ + 186, + 558, + 203, + 568 + ], + "score": 0.41, + "content": "7 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 557, + 487, + 571 + ], + "score": 1.0, + "content": "images and CelebA (Liu et al., 2015) containing roughly 203k images.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8.5, + "bbox_fs": [ + 104, + 502, + 506, + 571 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 575, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 104, + 574, + 503, + 588 + ], + "spans": [ + { + "bbox": [ + 104, + 574, + 455, + 588 + ], + "score": 1.0, + "content": "Experimental setup In all reported experiments we used Euclidian latent spaces", + "type": "text" + }, + { + "bbox": [ + 456, + 574, + 503, + 585 + ], + "score": 0.9, + "content": "\\mathcal { Z } \\ = \\ \\mathcal { R } ^ { d _ { z } }", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 585, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 154, + 599 + ], + "score": 1.0, + "content": "for various", + "type": "text" + }, + { + "bbox": [ + 154, + 586, + 165, + 597 + ], + "score": 0.86, + "content": "d _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 585, + 505, + 599 + ], + "score": 1.0, + "content": "depending on the complexity of the dataset, isotropic Gaussian prior distributions", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 596, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 217, + 609 + ], + "score": 0.89, + "content": "P _ { Z } ( Z ) = \\mathcal { N } ( Z ; \\mathbf { 0 } , \\sigma _ { z } ^ { 2 } \\cdot I _ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 596, + 238, + 611 + ], + "score": 1.0, + "content": "over", + "type": "text" + }, + { + "bbox": [ + 239, + 597, + 248, + 607 + ], + "score": 0.77, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 596, + 363, + 611 + ], + "score": 1.0, + "content": ", and a squared cost function", + "type": "text" + }, + { + "bbox": [ + 364, + 596, + 443, + 609 + ], + "score": 0.93, + "content": "c ( \\bar { x } , y ) = \\| x - \\bar { y } \\| _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 596, + 505, + 611 + ], + "score": 1.0, + "content": "for data points", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 606, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 107, + 608, + 175, + 619 + ], + "score": 0.88, + "content": "x , y \\in \\mathcal { X } = \\mathcal { R } ^ { d _ { x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 606, + 506, + 621 + ], + "score": 1.0, + "content": ". We used deterministic encoder-decoder pairs, Adam (Kingma & Lei, 2014) with", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 617, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 199, + 630 + ], + "score": 0.88, + "content": "\\beta _ { 1 } = 0 . 5 , \\beta _ { 2 } = 0 . 9 9 9", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 617, + 506, + 633 + ], + "score": 1.0, + "content": ", and convolutional deep neural network architectures for encoder mapping", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 629, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 107, + 631, + 159, + 642 + ], + "score": 0.9, + "content": "\\mu _ { \\phi } \\colon \\mathcal { X } \\to \\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 629, + 250, + 642 + ], + "score": 1.0, + "content": "and decoder mapping", + "type": "text" + }, + { + "bbox": [ + 250, + 630, + 304, + 641 + ], + "score": 0.92, + "content": "G _ { \\theta } \\colon { \\mathcal { Z } } \\to { \\mathcal { X } }", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 629, + 506, + 642 + ], + "score": 1.0, + "content": "similar to the DCGAN ones reported by Radford", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 641, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 479, + 653 + ], + "score": 1.0, + "content": "et al. (2016) with batch normalization (Ioffe & Szegedy, 2015). We tried various values of", + "type": "text" + }, + { + "bbox": [ + 479, + 641, + 487, + 651 + ], + "score": 0.8, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 641, + 505, + 653 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 652, + 406, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 652, + 155, + 664 + ], + "score": 1.0, + "content": "noticed that", + "type": "text" + }, + { + "bbox": [ + 156, + 652, + 186, + 662 + ], + "score": 0.9, + "content": "\\lambda = 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 652, + 406, + 664 + ], + "score": 1.0, + "content": "seems to work good across all datasets we considered.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15.5, + "bbox_fs": [ + 104, + 574, + 506, + 664 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 668, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 321, + 681 + ], + "score": 1.0, + "content": "Since we are using deterministic encoders, choosing", + "type": "text" + }, + { + "bbox": [ + 322, + 669, + 333, + 680 + ], + "score": 0.88, + "content": "d _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "larger than intrinsic dimensionality of the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 680, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 680, + 293, + 691 + ], + "score": 1.0, + "content": "dataset would force the encoded distribution", + "type": "text" + }, + { + "bbox": [ + 293, + 680, + 309, + 691 + ], + "score": 0.9, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 680, + 414, + 691 + ], + "score": 1.0, + "content": "to live on a manifold in", + "type": "text" + }, + { + "bbox": [ + 414, + 680, + 423, + 690 + ], + "score": 0.74, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 680, + 505, + 691 + ], + "score": 1.0, + "content": ". This would make", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 691, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 146, + 703 + ], + "score": 1.0, + "content": "matching", + "type": "text" + }, + { + "bbox": [ + 146, + 691, + 162, + 702 + ], + "score": 0.89, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 691, + 174, + 703 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 174, + 691, + 189, + 702 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 691, + 245, + 703 + ], + "score": 1.0, + "content": "impossible if", + "type": "text" + }, + { + "bbox": [ + 245, + 691, + 259, + 702 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 691, + 505, + 703 + ], + "score": 1.0, + "content": "is Gaussian and may lead to numerical instabilities. We use", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 701, + 439, + 713 + ], + "spans": [ + { + "bbox": [ + 107, + 702, + 136, + 713 + ], + "score": 0.91, + "content": "d _ { z } = 8", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 701, + 201, + 713 + ], + "score": 1.0, + "content": "for MNIST and", + "type": "text" + }, + { + "bbox": [ + 201, + 702, + 236, + 713 + ], + "score": 0.92, + "content": "d _ { z } = 6 4", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 701, + 439, + 713 + ], + "score": 1.0, + "content": "for CelebA which seems to work reasonably well.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5, + "bbox_fs": [ + 106, + 669, + 505, + 713 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 78, + 502, + 427 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 78, + 502, + 427 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 78, + 502, + 427 + ], + "spans": [ + { + "bbox": [ + 109, + 78, + 502, + 427 + ], + "score": 0.971, + "type": "image", + "image_path": "5f9154f809ae2eb7b1b03217d0ca3922df4a01f90d50874364f5a3fe74e9b6da.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 78, + 502, + 194.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 194.33333333333331, + 502, + 310.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 310.66666666666663, + 502, + 426.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 435, + 504, + 458 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 435, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 505, + 447 + ], + "score": 1.0, + "content": "Figure 3: VAE (left column), WAE-MMD (middle column), and WAE-GAN (right column) trained", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 446, + 458, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 458, + 459 + ], + "score": 1.0, + "content": "on CelebA dataset. In “test reconstructions” odd rows correspond to the real test points.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 107, + 487, + 505, + 542 + ], + "lines": [ + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "We also report results of VAEs. VAEs used the same latent spaces as discussed above and standard", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 497, + 503, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 173, + 511 + ], + "score": 1.0, + "content": "Gaussian priors", + "type": "text" + }, + { + "bbox": [ + 173, + 498, + 241, + 510 + ], + "score": 0.93, + "content": "P _ { Z } = \\mathcal { N } ( \\mathbf { 0 } , I _ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 497, + 364, + 511 + ], + "score": 1.0, + "content": ". We used Gaussian encoders", + "type": "text" + }, + { + "bbox": [ + 365, + 498, + 503, + 511 + ], + "score": 0.91, + "content": "Q ( Z | X ) = \\mathcal { N } \\big ( Z ; \\mu _ { \\phi } ( X ) , \\Sigma ( X ) \\big )", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 509, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 153, + 522 + ], + "score": 1.0, + "content": "with mean", + "type": "text" + }, + { + "bbox": [ + 153, + 511, + 165, + 522 + ], + "score": 0.85, + "content": "\\mu _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 509, + 270, + 522 + ], + "score": 1.0, + "content": "and diagonal covariance", + "type": "text" + }, + { + "bbox": [ + 270, + 510, + 279, + 519 + ], + "score": 0.79, + "content": "\\Sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 509, + 505, + 522 + ], + "score": 1.0, + "content": ". For both MNIST and CelebA we used Bernoulli de-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 519, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 203, + 534 + ], + "score": 1.0, + "content": "coders parametrized by", + "type": "text" + }, + { + "bbox": [ + 203, + 520, + 216, + 531 + ], + "score": 0.88, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 519, + 263, + 534 + ], + "score": 1.0, + "content": ". Functions", + "type": "text" + }, + { + "bbox": [ + 264, + 520, + 289, + 532 + ], + "score": 0.31, + "content": "\\mu _ { \\phi } , \\Sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 519, + 310, + 534 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 311, + 520, + 324, + 531 + ], + "score": 0.9, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 519, + 506, + 534 + ], + "score": 1.0, + "content": "were parametrized by deep nets of the same", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 531, + 228, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 228, + 543 + ], + "score": 1.0, + "content": "architectures as used in WAE.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 548, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 549, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 420, + 560 + ], + "score": 1.0, + "content": "WAE-GAN and WAE-MMD specifics In WAE-GAN we used discriminator", + "type": "text" + }, + { + "bbox": [ + 421, + 549, + 430, + 558 + ], + "score": 0.78, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 549, + 505, + 560 + ], + "score": 1.0, + "content": "composed of sev-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 558, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 506, + 572 + ], + "score": 1.0, + "content": "eral fully connected layers with ReLu. We tried WAE-MMD with the RBF kernel but observed that", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 569, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 242, + 584 + ], + "score": 1.0, + "content": "it fails to penalize the outliers of", + "type": "text" + }, + { + "bbox": [ + 242, + 570, + 258, + 581 + ], + "score": 0.9, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 569, + 442, + 584 + ], + "score": 1.0, + "content": "because of the quick tail decay. If the codes", + "type": "text" + }, + { + "bbox": [ + 443, + 570, + 489, + 582 + ], + "score": 0.93, + "content": "\\tilde { z } = \\mu _ { \\phi } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 569, + 506, + 584 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 217, + 594 + ], + "score": 1.0, + "content": "some of the training points", + "type": "text" + }, + { + "bbox": [ + 218, + 582, + 247, + 592 + ], + "score": 0.9, + "content": "x \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 581, + 397, + 594 + ], + "score": 1.0, + "content": "end up far away from the support of", + "type": "text" + }, + { + "bbox": [ + 397, + 582, + 411, + 592 + ], + "score": 0.88, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "(which may happen in", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 592, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 104, + 592, + 390, + 607 + ], + "score": 1.0, + "content": "the early stages of training) the corresponding terms in the U-statistic", + "type": "text" + }, + { + "bbox": [ + 390, + 592, + 484, + 606 + ], + "score": 0.91, + "content": "k ( z , \\tilde { z } ) = e ^ { - \\| \\tilde { z } - z \\| _ { 2 } ^ { 2 } / \\sigma _ { k } ^ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 592, + 506, + 607 + ], + "score": 1.0, + "content": "will", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 604, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 619 + ], + "score": 1.0, + "content": "quickly approach zero and provide no gradient for those outliers. This could be avoided by choosing", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 615, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 192, + 629 + ], + "score": 1.0, + "content": "the kernel bandwidth", + "type": "text" + }, + { + "bbox": [ + 193, + 615, + 205, + 628 + ], + "score": 0.9, + "content": "\\sigma _ { k } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 616, + 505, + 629 + ], + "score": 1.0, + "content": "in a data-dependent manner, however in this case per-minibatch U-statistic", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "would not provide an unbiased estimate for the gradient. Instead, we used the inverse multiquadrat-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 147, + 651 + ], + "score": 1.0, + "content": "ics kernel", + "type": "text" + }, + { + "bbox": [ + 148, + 637, + 269, + 650 + ], + "score": 0.91, + "content": "\\bar { k } ( x , y ) = C / ( C + \\| x - y \\| _ { 2 } ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "which is also characteristic and has much heavier tails. In", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 207, + 662 + ], + "score": 1.0, + "content": "all experiments we used", + "type": "text" + }, + { + "bbox": [ + 208, + 649, + 258, + 661 + ], + "score": 0.9, + "content": "C = 2 d _ { z } \\sigma _ { z } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 648, + 505, + 662 + ], + "score": 1.0, + "content": ", which is the expected squared distance between two multi-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 659, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 255, + 673 + ], + "score": 1.0, + "content": "variate Gaussian vectors drawn from", + "type": "text" + }, + { + "bbox": [ + 255, + 660, + 269, + 671 + ], + "score": 0.87, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 659, + 506, + 673 + ], + "score": 1.0, + "content": ". This significantly improved the performance compared to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 668, + 507, + 686 + ], + "spans": [ + { + "bbox": [ + 104, + 668, + 247, + 686 + ], + "score": 1.0, + "content": "the RBF kernel (even the one with", + "type": "text" + }, + { + "bbox": [ + 248, + 671, + 299, + 683 + ], + "score": 0.92, + "content": "\\sigma _ { k } ^ { 2 } = 2 d _ { z } \\sigma _ { z } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 668, + 507, + 686 + ], + "score": 1.0, + "content": "). Trained models are presented in Figures 2 and 3.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 681, + 307, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 307, + 695 + ], + "score": 1.0, + "content": "Further details are presented in Supplementary C.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 504, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 303, + 712 + ], + "score": 1.0, + "content": "Random samples are generated by sampling", + "type": "text" + }, + { + "bbox": [ + 303, + 699, + 317, + 710 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 698, + 497, + 712 + ], + "score": 1.0, + "content": "and decoding the resulting noise vectors", + "type": "text" + }, + { + "bbox": [ + 497, + 701, + 504, + 709 + ], + "score": 0.69, + "content": "z", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 127, + 722 + ], + "score": 1.0, + "content": "into", + "type": "text" + }, + { + "bbox": [ + 128, + 710, + 154, + 721 + ], + "score": 0.94, + "content": "G _ { \\theta } ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 709, + 506, + 722 + ], + "score": 1.0, + "content": ". As expected, in our experiments we observed that for both WAE-GAN and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 719, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 412, + 733 + ], + "score": 1.0, + "content": "WAE-MMD the quality of samples strongly depends on how accurately", + "type": "text" + }, + { + "bbox": [ + 413, + 721, + 429, + 732 + ], + "score": 0.89, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 719, + 468, + 733 + ], + "score": 1.0, + "content": "matches", + "type": "text" + }, + { + "bbox": [ + 468, + 721, + 482, + 732 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 719, + 506, + 733 + ], + "score": 1.0, + "content": ". To", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 9 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 78, + 502, + 427 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 78, + 502, + 427 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 78, + 502, + 427 + ], + "spans": [ + { + "bbox": [ + 109, + 78, + 502, + 427 + ], + "score": 0.971, + "type": "image", + "image_path": "5f9154f809ae2eb7b1b03217d0ca3922df4a01f90d50874364f5a3fe74e9b6da.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 78, + 502, + 194.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 194.33333333333331, + 502, + 310.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 310.66666666666663, + 502, + 426.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 435, + 504, + 458 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 435, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 505, + 447 + ], + "score": 1.0, + "content": "Figure 3: VAE (left column), WAE-MMD (middle column), and WAE-GAN (right column) trained", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 446, + 458, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 458, + 459 + ], + "score": 1.0, + "content": "on CelebA dataset. In “test reconstructions” odd rows correspond to the real test points.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 107, + 487, + 505, + 542 + ], + "lines": [ + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "We also report results of VAEs. VAEs used the same latent spaces as discussed above and standard", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 497, + 503, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 173, + 511 + ], + "score": 1.0, + "content": "Gaussian priors", + "type": "text" + }, + { + "bbox": [ + 173, + 498, + 241, + 510 + ], + "score": 0.93, + "content": "P _ { Z } = \\mathcal { N } ( \\mathbf { 0 } , I _ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 497, + 364, + 511 + ], + "score": 1.0, + "content": ". We used Gaussian encoders", + "type": "text" + }, + { + "bbox": [ + 365, + 498, + 503, + 511 + ], + "score": 0.91, + "content": "Q ( Z | X ) = \\mathcal { N } \\big ( Z ; \\mu _ { \\phi } ( X ) , \\Sigma ( X ) \\big )", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 509, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 153, + 522 + ], + "score": 1.0, + "content": "with mean", + "type": "text" + }, + { + "bbox": [ + 153, + 511, + 165, + 522 + ], + "score": 0.85, + "content": "\\mu _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 509, + 270, + 522 + ], + "score": 1.0, + "content": "and diagonal covariance", + "type": "text" + }, + { + "bbox": [ + 270, + 510, + 279, + 519 + ], + "score": 0.79, + "content": "\\Sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 509, + 505, + 522 + ], + "score": 1.0, + "content": ". For both MNIST and CelebA we used Bernoulli de-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 519, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 203, + 534 + ], + "score": 1.0, + "content": "coders parametrized by", + "type": "text" + }, + { + "bbox": [ + 203, + 520, + 216, + 531 + ], + "score": 0.88, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 519, + 263, + 534 + ], + "score": 1.0, + "content": ". Functions", + "type": "text" + }, + { + "bbox": [ + 264, + 520, + 289, + 532 + ], + "score": 0.31, + "content": "\\mu _ { \\phi } , \\Sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 519, + 310, + 534 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 311, + 520, + 324, + 531 + ], + "score": 0.9, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 519, + 506, + 534 + ], + "score": 1.0, + "content": "were parametrized by deep nets of the same", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 531, + 228, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 228, + 543 + ], + "score": 1.0, + "content": "architectures as used in WAE.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 487, + 506, + 543 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 548, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 549, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 420, + 560 + ], + "score": 1.0, + "content": "WAE-GAN and WAE-MMD specifics In WAE-GAN we used discriminator", + "type": "text" + }, + { + "bbox": [ + 421, + 549, + 430, + 558 + ], + "score": 0.78, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 549, + 505, + 560 + ], + "score": 1.0, + "content": "composed of sev-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 558, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 506, + 572 + ], + "score": 1.0, + "content": "eral fully connected layers with ReLu. We tried WAE-MMD with the RBF kernel but observed that", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 569, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 242, + 584 + ], + "score": 1.0, + "content": "it fails to penalize the outliers of", + "type": "text" + }, + { + "bbox": [ + 242, + 570, + 258, + 581 + ], + "score": 0.9, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 569, + 442, + 584 + ], + "score": 1.0, + "content": "because of the quick tail decay. If the codes", + "type": "text" + }, + { + "bbox": [ + 443, + 570, + 489, + 582 + ], + "score": 0.93, + "content": "\\tilde { z } = \\mu _ { \\phi } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 569, + 506, + 584 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 217, + 594 + ], + "score": 1.0, + "content": "some of the training points", + "type": "text" + }, + { + "bbox": [ + 218, + 582, + 247, + 592 + ], + "score": 0.9, + "content": "x \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 581, + 397, + 594 + ], + "score": 1.0, + "content": "end up far away from the support of", + "type": "text" + }, + { + "bbox": [ + 397, + 582, + 411, + 592 + ], + "score": 0.88, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "(which may happen in", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 592, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 104, + 592, + 390, + 607 + ], + "score": 1.0, + "content": "the early stages of training) the corresponding terms in the U-statistic", + "type": "text" + }, + { + "bbox": [ + 390, + 592, + 484, + 606 + ], + "score": 0.91, + "content": "k ( z , \\tilde { z } ) = e ^ { - \\| \\tilde { z } - z \\| _ { 2 } ^ { 2 } / \\sigma _ { k } ^ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 592, + 506, + 607 + ], + "score": 1.0, + "content": "will", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 604, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 619 + ], + "score": 1.0, + "content": "quickly approach zero and provide no gradient for those outliers. This could be avoided by choosing", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 615, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 192, + 629 + ], + "score": 1.0, + "content": "the kernel bandwidth", + "type": "text" + }, + { + "bbox": [ + 193, + 615, + 205, + 628 + ], + "score": 0.9, + "content": "\\sigma _ { k } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 616, + 505, + 629 + ], + "score": 1.0, + "content": "in a data-dependent manner, however in this case per-minibatch U-statistic", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "would not provide an unbiased estimate for the gradient. Instead, we used the inverse multiquadrat-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 147, + 651 + ], + "score": 1.0, + "content": "ics kernel", + "type": "text" + }, + { + "bbox": [ + 148, + 637, + 269, + 650 + ], + "score": 0.91, + "content": "\\bar { k } ( x , y ) = C / ( C + \\| x - y \\| _ { 2 } ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "which is also characteristic and has much heavier tails. In", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 207, + 662 + ], + "score": 1.0, + "content": "all experiments we used", + "type": "text" + }, + { + "bbox": [ + 208, + 649, + 258, + 661 + ], + "score": 0.9, + "content": "C = 2 d _ { z } \\sigma _ { z } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 648, + 505, + 662 + ], + "score": 1.0, + "content": ", which is the expected squared distance between two multi-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 659, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 255, + 673 + ], + "score": 1.0, + "content": "variate Gaussian vectors drawn from", + "type": "text" + }, + { + "bbox": [ + 255, + 660, + 269, + 671 + ], + "score": 0.87, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 659, + 506, + 673 + ], + "score": 1.0, + "content": ". This significantly improved the performance compared to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 668, + 507, + 686 + ], + "spans": [ + { + "bbox": [ + 104, + 668, + 247, + 686 + ], + "score": 1.0, + "content": "the RBF kernel (even the one with", + "type": "text" + }, + { + "bbox": [ + 248, + 671, + 299, + 683 + ], + "score": 0.92, + "content": "\\sigma _ { k } ^ { 2 } = 2 d _ { z } \\sigma _ { z } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 668, + 507, + 686 + ], + "score": 1.0, + "content": "). Trained models are presented in Figures 2 and 3.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 681, + 307, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 307, + 695 + ], + "score": 1.0, + "content": "Further details are presented in Supplementary C.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 16, + "bbox_fs": [ + 104, + 549, + 507, + 695 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 504, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 303, + 712 + ], + "score": 1.0, + "content": "Random samples are generated by sampling", + "type": "text" + }, + { + "bbox": [ + 303, + 699, + 317, + 710 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 698, + 497, + 712 + ], + "score": 1.0, + "content": "and decoding the resulting noise vectors", + "type": "text" + }, + { + "bbox": [ + 497, + 701, + 504, + 709 + ], + "score": 0.69, + "content": "z", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 127, + 722 + ], + "score": 1.0, + "content": "into", + "type": "text" + }, + { + "bbox": [ + 128, + 710, + 154, + 721 + ], + "score": 0.94, + "content": "G _ { \\theta } ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 709, + 506, + 722 + ], + "score": 1.0, + "content": ". As expected, in our experiments we observed that for both WAE-GAN and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 719, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 412, + 733 + ], + "score": 1.0, + "content": "WAE-MMD the quality of samples strongly depends on how accurately", + "type": "text" + }, + { + "bbox": [ + 413, + 721, + 429, + 732 + ], + "score": 0.89, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 719, + 468, + 733 + ], + "score": 1.0, + "content": "matches", + "type": "text" + }, + { + "bbox": [ + 468, + 721, + 482, + 732 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 719, + 506, + 733 + ], + "score": 1.0, + "content": ". To", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 352, + 95 + ], + "score": 1.0, + "content": "see this, notice that during training the decoder function", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 353, + 83, + 366, + 93 + ], + "score": 0.88, + "content": "G _ { \\theta }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 367, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "is presented only with encoded", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 145, + 106 + ], + "score": 1.0, + "content": "versions", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 145, + 93, + 174, + 106 + ], + "score": 0.91, + "content": "\\mu _ { \\phi } ( X )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 175, + 93, + 264, + 106 + ], + "score": 1.0, + "content": "of the data points", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 264, + 93, + 315, + 105 + ], + "score": 0.9, + "content": "X \\sim P _ { X }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 315, + 93, + 505, + 106 + ], + "score": 1.0, + "content": ". Indeed, the decoder is trained on sam-", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 151, + 117 + ], + "score": 1.0, + "content": "ples from", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 151, + 106, + 167, + 116 + ], + "score": 0.88, + "content": "Q _ { Z }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 167, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "and thus there is no reason to expect good results when feeding it with sam-", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 151, + 127 + ], + "score": 1.0, + "content": "ples from", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 151, + 116, + 165, + 127 + ], + "score": 0.88, + "content": "P _ { Z }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 166, + 116, + 468, + 127 + ], + "score": 1.0, + "content": ". In our experiments we noticed that even slight differences between", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 469, + 115, + 485, + 127 + ], + "score": 0.89, + "content": "Q _ { Z }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 485, + 116, + 505, + 127 + ], + "score": 1.0, + "content": "and", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 126, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 120, + 138 + ], + "score": 0.87, + "content": "P _ { Z }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 121, + 126, + 506, + 139 + ], + "score": 1.0, + "content": "may affect the quality of samples. In some cases WAE-GAN seems to lead to a better", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "matching and generates better samples than WAE-MMD. However, due to adversarial training", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 149, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 505, + 161 + ], + "score": 1.0, + "content": "WAE-GAN is highly unstable, while WAE-MMD has a very stable training much like VAE.", + "type": "text", + "cross_page": true + } + ], + "index": 6 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 698, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 160 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 352, + 95 + ], + "score": 1.0, + "content": "see this, notice that during training the decoder function", + "type": "text" + }, + { + "bbox": [ + 353, + 83, + 366, + 93 + ], + "score": 0.88, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "is presented only with encoded", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 145, + 106 + ], + "score": 1.0, + "content": "versions", + "type": "text" + }, + { + "bbox": [ + 145, + 93, + 174, + 106 + ], + "score": 0.91, + "content": "\\mu _ { \\phi } ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 93, + 264, + 106 + ], + "score": 1.0, + "content": "of the data points", + "type": "text" + }, + { + "bbox": [ + 264, + 93, + 315, + 105 + ], + "score": 0.9, + "content": "X \\sim P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 93, + 505, + 106 + ], + "score": 1.0, + "content": ". Indeed, the decoder is trained on sam-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 151, + 117 + ], + "score": 1.0, + "content": "ples from", + "type": "text" + }, + { + "bbox": [ + 151, + 106, + 167, + 116 + ], + "score": 0.88, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "and thus there is no reason to expect good results when feeding it with sam-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 151, + 127 + ], + "score": 1.0, + "content": "ples from", + "type": "text" + }, + { + "bbox": [ + 151, + 116, + 165, + 127 + ], + "score": 0.88, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 116, + 468, + 127 + ], + "score": 1.0, + "content": ". In our experiments we noticed that even slight differences between", + "type": "text" + }, + { + "bbox": [ + 469, + 115, + 485, + 127 + ], + "score": 0.89, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 116, + 505, + 127 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 126, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 120, + 138 + ], + "score": 0.87, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 126, + 506, + 139 + ], + "score": 1.0, + "content": "may affect the quality of samples. In some cases WAE-GAN seems to lead to a better", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "matching and generates better samples than WAE-MMD. However, due to adversarial training", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 149, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 505, + 161 + ], + "score": 1.0, + "content": "WAE-GAN is highly unstable, while WAE-MMD has a very stable training much like VAE.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 171, + 338, + 258 + ], + "lines": [ + { + "bbox": [ + 105, + 169, + 339, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 339, + 183 + ], + "score": 1.0, + "content": "In order to quantitatively assess the quality of the gener-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 181, + 339, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 339, + 192 + ], + "score": 1.0, + "content": "ated images, we use the Frechet Inception Distance´ in-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 191, + 340, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 340, + 204 + ], + "score": 1.0, + "content": "troduced by Heusel et al. (2017) and report the results on", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 202, + 339, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 339, + 214 + ], + "score": 1.0, + "content": "CelebA in Table 1. These results confirm that the sampled", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 213, + 339, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 339, + 226 + ], + "score": 1.0, + "content": "images from WAE are of better quality than from VAE,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 225, + 339, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 339, + 237 + ], + "score": 1.0, + "content": "and WAE-GAN gets a slightly better score than WAE-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 236, + 339, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 339, + 247 + ], + "score": 1.0, + "content": "MMD, which correlates with visual inspection of the im-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 248, + 129, + 261 + ], + "spans": [ + { + "bbox": [ + 104, + 248, + 129, + 261 + ], + "score": 1.0, + "content": "ages.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 10.5 + }, + { + "type": "table", + "bbox": [ + 378, + 172, + 473, + 230 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 378, + 172, + 473, + 230 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 378, + 172, + 473, + 230 + ], + "spans": [ + { + "bbox": [ + 378, + 172, + 473, + 230 + ], + "score": 0.962, + "html": "
AlgorithmFID
VAE82
WAE-MMD55
WAE-GAN42
", + "type": "table", + "image_path": "bb53b755aa9224ba9656ef109a4e1d971d6a6d75d2817d17ef00984c94322e3a.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 378, + 172, + 473, + 201.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 378, + 201.0, + 473, + 230.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 346, + 238, + 504, + 259 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 345, + 236, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 345, + 236, + 505, + 250 + ], + "score": 1.0, + "content": "Table 1: FID scores for samples on", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 346, + 247, + 455, + 261 + ], + "spans": [ + { + "bbox": [ + 346, + 247, + 455, + 261 + ], + "score": 1.0, + "content": "CelebA (smaller is better).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 107, + 264, + 504, + 308 + ], + "lines": [ + { + "bbox": [ + 106, + 264, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 376, + 275 + ], + "score": 1.0, + "content": "Test reconstructions and interpolations. We take random points", + "type": "text" + }, + { + "bbox": [ + 376, + 266, + 383, + 274 + ], + "score": 0.73, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 264, + 505, + 275 + ], + "score": 1.0, + "content": "from the held out test set and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 275, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 243, + 288 + ], + "score": 1.0, + "content": "report their auto-encoded versions", + "type": "text" + }, + { + "bbox": [ + 244, + 275, + 289, + 287 + ], + "score": 0.92, + "content": "G _ { \\theta } ( \\mu _ { \\phi } ( x ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 275, + 339, + 288 + ], + "score": 1.0, + "content": ". Next, pairs", + "type": "text" + }, + { + "bbox": [ + 339, + 275, + 363, + 286 + ], + "score": 0.91, + "content": "( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 275, + 506, + 288 + ], + "score": 1.0, + "content": "of different data points are sampled", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 286, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 304, + 299 + ], + "score": 1.0, + "content": "randomly from the held out test set and encoded:", + "type": "text" + }, + { + "bbox": [ + 305, + 286, + 354, + 298 + ], + "score": 0.86, + "content": "z _ { x } = \\mu _ { \\phi } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 286, + 357, + 299 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 358, + 286, + 406, + 298 + ], + "score": 0.9, + "content": "z _ { y } = \\mu _ { \\phi } ( y )", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 286, + 505, + 299 + ], + "score": 1.0, + "content": ". We linearly interpolate", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 297, + 465, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 142, + 310 + ], + "score": 1.0, + "content": "between", + "type": "text" + }, + { + "bbox": [ + 142, + 298, + 153, + 308 + ], + "score": 0.85, + "content": "z _ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 297, + 171, + 310 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 171, + 298, + 182, + 309 + ], + "score": 0.87, + "content": "z _ { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 297, + 465, + 310 + ], + "score": 1.0, + "content": "with equally-sized steps in the latent space and show decoded images.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5 + }, + { + "type": "title", + "bbox": [ + 108, + 325, + 195, + 338 + ], + "lines": [ + { + "bbox": [ + 104, + 322, + 198, + 342 + ], + "spans": [ + { + "bbox": [ + 104, + 322, + 198, + 342 + ], + "score": 1.0, + "content": "5 CONCLUSION", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 351, + 505, + 439 + ], + "lines": [ + { + "bbox": [ + 106, + 350, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 506, + 363 + ], + "score": 1.0, + "content": "Using the optimal transport cost, we have derived Wasserstein auto-encoders—a new family of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 361, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 505, + 375 + ], + "score": 1.0, + "content": "algorithms for building generative models. We discussed their relations to other probabilistic mod-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 373, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 505, + 385 + ], + "score": 1.0, + "content": "eling techniques. We conducted experiments using two particular implementations of the proposed", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 383, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 506, + 397 + ], + "score": 1.0, + "content": "method, showing that in comparison to VAEs, the images sampled from the trained WAE models are", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 395, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 395, + 505, + 407 + ], + "score": 1.0, + "content": "of better quality, without compromising the stability of training and the quality of reconstruction.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 404, + 504, + 419 + ], + "spans": [ + { + "bbox": [ + 104, + 404, + 488, + 419 + ], + "score": 1.0, + "content": "Future work will include further exploration of the criteria for matching the encoded distribution", + "type": "text" + }, + { + "bbox": [ + 488, + 406, + 504, + 417 + ], + "score": 0.88, + "content": "Q _ { Z }", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 416, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 199, + 430 + ], + "score": 1.0, + "content": "to the prior distribution", + "type": "text" + }, + { + "bbox": [ + 200, + 417, + 213, + 428 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 416, + 474, + 430 + ], + "score": 1.0, + "content": ", assaying the possibility of adversarially training the cost function", + "type": "text" + }, + { + "bbox": [ + 474, + 419, + 480, + 426 + ], + "score": 0.72, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 416, + 506, + 430 + ], + "score": 1.0, + "content": "in the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 428, + 504, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 154, + 439 + ], + "score": 1.0, + "content": "input space", + "type": "text" + }, + { + "bbox": [ + 154, + 428, + 164, + 437 + ], + "score": 0.82, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 428, + 504, + 439 + ], + "score": 1.0, + "content": ", and a theoretical analysis of the dual formulations for WAE-GAN and WAE-MMD.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27.5 + }, + { + "type": "title", + "bbox": [ + 108, + 453, + 200, + 463 + ], + "lines": [ + { + "bbox": [ + 107, + 453, + 201, + 464 + ], + "spans": [ + { + "bbox": [ + 107, + 453, + 201, + 464 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 108, + 471, + 504, + 494 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 504, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 504, + 483 + ], + "score": 1.0, + "content": "The authors are thankful to Carl Johann Simon-Gabriel, Mateo Rojas-Carulla, Arthur Gretton, Paul", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 482, + 318, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 318, + 496 + ], + "score": 1.0, + "content": "Rubenstein, and Fei Sha for stimulating discussions.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "title", + "bbox": [ + 108, + 512, + 175, + 524 + ], + "lines": [ + { + "bbox": [ + 106, + 511, + 177, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 177, + 526 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 105, + 530, + 507, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 530, + 374, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 374, + 545 + ], + "score": 1.0, + "content": "M. Arjovsky, S. Chintala, and L. Bottou. Wasserstein GAN, 2017.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 550, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 567 + ], + "score": 1.0, + "content": "Y. Bengio, A. Courville, and P. Vincent. Representation learning: A review and new perspectives.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 563, + 331, + 576 + ], + "spans": [ + { + "bbox": [ + 116, + 563, + 331, + 576 + ], + "score": 1.0, + "content": "Pattern Analysis and Machine Intelligence, 35, 2013.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 582, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 104, + 582, + 505, + 597 + ], + "score": 1.0, + "content": "D. Berthelot, T. Schumm, and L. Metz. Began: Boundary equilibrium generative adversarial net-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 594, + 171, + 607 + ], + "spans": [ + { + "bbox": [ + 116, + 594, + 171, + 607 + ], + "score": 1.0, + "content": "works, 2017.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 612, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 104, + 612, + 506, + 631 + ], + "score": 1.0, + "content": "O. Bousquet, S. Gelly, I. Tolstikhin, C. J. Simon-Gabriel, and B. Scholkopf. From optimal transport ¨", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 626, + 335, + 640 + ], + "spans": [ + { + "bbox": [ + 115, + 626, + 335, + 640 + ], + "score": 1.0, + "content": "to generative modeling: the VEGAN cookbook, 2017.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 646, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 505, + 660 + ], + "score": 1.0, + "content": "Lenaic Chizat, Gabriel Peyre, Bernhard Schmitzer, and Franc¸ois-Xavier Vialard. Unbalanced opti- ´", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 658, + 498, + 671 + ], + "spans": [ + { + "bbox": [ + 115, + 658, + 498, + 671 + ], + "score": 1.0, + "content": "mal transport: geometry and kantorovich formulation. arXiv preprint arXiv:1508.05216, 2015.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 677, + 506, + 692 + ], + "spans": [ + { + "bbox": [ + 104, + 677, + 506, + 692 + ], + "score": 1.0, + "content": "M. Cuturi. Sinkhorn distances: Lightspeed computation of optimal transport. In Advances in Neural", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 689, + 339, + 703 + ], + "spans": [ + { + "bbox": [ + 115, + 689, + 339, + 703 + ], + "score": 1.0, + "content": "Information Processing Systems, pp. 2292–2300, 2013.", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 104, + 708, + 506, + 725 + ], + "spans": [ + { + "bbox": [ + 104, + 708, + 506, + 725 + ], + "score": 1.0, + "content": "V. Dumoulin, I. Belghazi, B. Poole, A. Lamb, M. Arjovsky, O. Mastropietro, and A. Courville.", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 116, + 721, + 311, + 734 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 311, + 734 + ], + "score": 1.0, + "content": "Adversarially learned inference. In ICLR, 2017.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 42 + } + ], + "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": "text", + "bbox": [ + 107, + 82, + 505, + 160 + ], + "lines": [], + "index": 3, + "bbox_fs": [ + 105, + 82, + 506, + 161 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 171, + 338, + 258 + ], + "lines": [ + { + "bbox": [ + 105, + 169, + 339, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 339, + 183 + ], + "score": 1.0, + "content": "In order to quantitatively assess the quality of the gener-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 181, + 339, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 339, + 192 + ], + "score": 1.0, + "content": "ated images, we use the Frechet Inception Distance´ in-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 191, + 340, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 340, + 204 + ], + "score": 1.0, + "content": "troduced by Heusel et al. (2017) and report the results on", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 202, + 339, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 339, + 214 + ], + "score": 1.0, + "content": "CelebA in Table 1. These results confirm that the sampled", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 213, + 339, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 339, + 226 + ], + "score": 1.0, + "content": "images from WAE are of better quality than from VAE,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 225, + 339, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 339, + 237 + ], + "score": 1.0, + "content": "and WAE-GAN gets a slightly better score than WAE-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 236, + 339, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 339, + 247 + ], + "score": 1.0, + "content": "MMD, which correlates with visual inspection of the im-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 248, + 129, + 261 + ], + "spans": [ + { + "bbox": [ + 104, + 248, + 129, + 261 + ], + "score": 1.0, + "content": "ages.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 10.5, + "bbox_fs": [ + 104, + 169, + 340, + 261 + ] + }, + { + "type": "table", + "bbox": [ + 378, + 172, + 473, + 230 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 378, + 172, + 473, + 230 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 378, + 172, + 473, + 230 + ], + "spans": [ + { + "bbox": [ + 378, + 172, + 473, + 230 + ], + "score": 0.962, + "html": "
AlgorithmFID
VAE82
WAE-MMD55
WAE-GAN42
", + "type": "table", + "image_path": "bb53b755aa9224ba9656ef109a4e1d971d6a6d75d2817d17ef00984c94322e3a.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 378, + 172, + 473, + 201.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 378, + 201.0, + 473, + 230.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 346, + 238, + 504, + 259 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 345, + 236, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 345, + 236, + 505, + 250 + ], + "score": 1.0, + "content": "Table 1: FID scores for samples on", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 346, + 247, + 455, + 261 + ], + "spans": [ + { + "bbox": [ + 346, + 247, + 455, + 261 + ], + "score": 1.0, + "content": "CelebA (smaller is better).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 107, + 264, + 504, + 308 + ], + "lines": [ + { + "bbox": [ + 106, + 264, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 376, + 275 + ], + "score": 1.0, + "content": "Test reconstructions and interpolations. We take random points", + "type": "text" + }, + { + "bbox": [ + 376, + 266, + 383, + 274 + ], + "score": 0.73, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 264, + 505, + 275 + ], + "score": 1.0, + "content": "from the held out test set and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 275, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 243, + 288 + ], + "score": 1.0, + "content": "report their auto-encoded versions", + "type": "text" + }, + { + "bbox": [ + 244, + 275, + 289, + 287 + ], + "score": 0.92, + "content": "G _ { \\theta } ( \\mu _ { \\phi } ( x ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 275, + 339, + 288 + ], + "score": 1.0, + "content": ". Next, pairs", + "type": "text" + }, + { + "bbox": [ + 339, + 275, + 363, + 286 + ], + "score": 0.91, + "content": "( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 275, + 506, + 288 + ], + "score": 1.0, + "content": "of different data points are sampled", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 286, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 304, + 299 + ], + "score": 1.0, + "content": "randomly from the held out test set and encoded:", + "type": "text" + }, + { + "bbox": [ + 305, + 286, + 354, + 298 + ], + "score": 0.86, + "content": "z _ { x } = \\mu _ { \\phi } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 286, + 357, + 299 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 358, + 286, + 406, + 298 + ], + "score": 0.9, + "content": "z _ { y } = \\mu _ { \\phi } ( y )", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 286, + 505, + 299 + ], + "score": 1.0, + "content": ". We linearly interpolate", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 297, + 465, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 142, + 310 + ], + "score": 1.0, + "content": "between", + "type": "text" + }, + { + "bbox": [ + 142, + 298, + 153, + 308 + ], + "score": 0.85, + "content": "z _ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 297, + 171, + 310 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 171, + 298, + 182, + 309 + ], + "score": 0.87, + "content": "z _ { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 297, + 465, + 310 + ], + "score": 1.0, + "content": "with equally-sized steps in the latent space and show decoded images.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 264, + 506, + 310 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 325, + 195, + 338 + ], + "lines": [ + { + "bbox": [ + 104, + 322, + 198, + 342 + ], + "spans": [ + { + "bbox": [ + 104, + 322, + 198, + 342 + ], + "score": 1.0, + "content": "5 CONCLUSION", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 351, + 505, + 439 + ], + "lines": [ + { + "bbox": [ + 106, + 350, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 506, + 363 + ], + "score": 1.0, + "content": "Using the optimal transport cost, we have derived Wasserstein auto-encoders—a new family of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 361, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 505, + 375 + ], + "score": 1.0, + "content": "algorithms for building generative models. We discussed their relations to other probabilistic mod-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 373, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 505, + 385 + ], + "score": 1.0, + "content": "eling techniques. We conducted experiments using two particular implementations of the proposed", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 383, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 506, + 397 + ], + "score": 1.0, + "content": "method, showing that in comparison to VAEs, the images sampled from the trained WAE models are", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 395, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 395, + 505, + 407 + ], + "score": 1.0, + "content": "of better quality, without compromising the stability of training and the quality of reconstruction.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 404, + 504, + 419 + ], + "spans": [ + { + "bbox": [ + 104, + 404, + 488, + 419 + ], + "score": 1.0, + "content": "Future work will include further exploration of the criteria for matching the encoded distribution", + "type": "text" + }, + { + "bbox": [ + 488, + 406, + 504, + 417 + ], + "score": 0.88, + "content": "Q _ { Z }", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 416, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 199, + 430 + ], + "score": 1.0, + "content": "to the prior distribution", + "type": "text" + }, + { + "bbox": [ + 200, + 417, + 213, + 428 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 416, + 474, + 430 + ], + "score": 1.0, + "content": ", assaying the possibility of adversarially training the cost function", + "type": "text" + }, + { + "bbox": [ + 474, + 419, + 480, + 426 + ], + "score": 0.72, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 416, + 506, + 430 + ], + "score": 1.0, + "content": "in the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 428, + 504, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 154, + 439 + ], + "score": 1.0, + "content": "input space", + "type": "text" + }, + { + "bbox": [ + 154, + 428, + 164, + 437 + ], + "score": 0.82, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 428, + 504, + 439 + ], + "score": 1.0, + "content": ", and a theoretical analysis of the dual formulations for WAE-GAN and WAE-MMD.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27.5, + "bbox_fs": [ + 104, + 350, + 506, + 439 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 453, + 200, + 463 + ], + "lines": [ + { + "bbox": [ + 107, + 453, + 201, + 464 + ], + "spans": [ + { + "bbox": [ + 107, + 453, + 201, + 464 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 108, + 471, + 504, + 494 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 504, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 504, + 483 + ], + "score": 1.0, + "content": "The authors are thankful to Carl Johann Simon-Gabriel, Mateo Rojas-Carulla, Arthur Gretton, Paul", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 482, + 318, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 318, + 496 + ], + "score": 1.0, + "content": "Rubenstein, and Fei Sha for stimulating discussions.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 471, + 504, + 496 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 512, + 175, + 524 + ], + "lines": [ + { + "bbox": [ + 106, + 511, + 177, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 177, + 526 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "list", + "bbox": [ + 105, + 530, + 507, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 530, + 374, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 374, + 545 + ], + "score": 1.0, + "content": "M. Arjovsky, S. Chintala, and L. Bottou. Wasserstein GAN, 2017.", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 550, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 567 + ], + "score": 1.0, + "content": "Y. Bengio, A. Courville, and P. Vincent. Representation learning: A review and new perspectives.", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 563, + 331, + 576 + ], + "spans": [ + { + "bbox": [ + 116, + 563, + 331, + 576 + ], + "score": 1.0, + "content": "Pattern Analysis and Machine Intelligence, 35, 2013.", + "type": "text" + } + ], + "index": 38, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 582, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 104, + 582, + 505, + 597 + ], + "score": 1.0, + "content": "D. Berthelot, T. Schumm, and L. Metz. Began: Boundary equilibrium generative adversarial net-", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 594, + 171, + 607 + ], + "spans": [ + { + "bbox": [ + 116, + 594, + 171, + 607 + ], + "score": 1.0, + "content": "works, 2017.", + "type": "text" + } + ], + "index": 40, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 612, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 104, + 612, + 506, + 631 + ], + "score": 1.0, + "content": "O. Bousquet, S. Gelly, I. Tolstikhin, C. J. Simon-Gabriel, and B. Scholkopf. From optimal transport ¨", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 626, + 335, + 640 + ], + "spans": [ + { + "bbox": [ + 115, + 626, + 335, + 640 + ], + "score": 1.0, + "content": "to generative modeling: the VEGAN cookbook, 2017.", + "type": "text" + } + ], + "index": 42, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 646, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 505, + 660 + ], + "score": 1.0, + "content": "Lenaic Chizat, Gabriel Peyre, Bernhard Schmitzer, and Franc¸ois-Xavier Vialard. Unbalanced opti- ´", + "type": "text" + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 658, + 498, + 671 + ], + "spans": [ + { + "bbox": [ + 115, + 658, + 498, + 671 + ], + "score": 1.0, + "content": "mal transport: geometry and kantorovich formulation. arXiv preprint arXiv:1508.05216, 2015.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 677, + 506, + 692 + ], + "spans": [ + { + "bbox": [ + 104, + 677, + 506, + 692 + ], + "score": 1.0, + "content": "M. Cuturi. Sinkhorn distances: Lightspeed computation of optimal transport. In Advances in Neural", + "type": "text" + } + ], + "index": 45, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 689, + 339, + 703 + ], + "spans": [ + { + "bbox": [ + 115, + 689, + 339, + 703 + ], + "score": 1.0, + "content": "Information Processing Systems, pp. 2292–2300, 2013.", + "type": "text" + } + ], + "index": 46, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 708, + 506, + 725 + ], + "spans": [ + { + "bbox": [ + 104, + 708, + 506, + 725 + ], + "score": 1.0, + "content": "V. Dumoulin, I. Belghazi, B. Poole, A. Lamb, M. Arjovsky, O. Mastropietro, and A. Courville.", + "type": "text" + } + ], + "index": 47, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 721, + 311, + 734 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 311, + 734 + ], + "score": 1.0, + "content": "Adversarially learned inference. In ICLR, 2017.", + "type": "text" + } + ], + "index": 48, + "is_list_end_line": true + } + ], + "index": 42, + "bbox_fs": [ + 104, + 530, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "G. K. Dziugaite, D. M. Roy, and Z. Ghahramani. Training generative neural networks via maximum", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 94, + 304, + 105 + ], + "spans": [ + { + "bbox": [ + 115, + 94, + 304, + 105 + ], + "score": 1.0, + "content": "mean discrepancy optimization. In UAI, 2015.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 105, + 111, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 505, + 124 + ], + "score": 1.0, + "content": "A. Genevay, M. Cuturi, G. Peyre, and F. R. Bach. Stochastic optimization for large-scale optimal ´", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 472, + 135 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 472, + 135 + ], + "score": 1.0, + "content": "transport. In Advances in Neural Information Processing Systems, pp. 3432–3440, 2016.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 141, + 504, + 175 + ], + "lines": [ + { + "bbox": [ + 105, + 140, + 506, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 506, + 154 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 151, + 506, + 165 + ], + "spans": [ + { + "bbox": [ + 114, + 151, + 506, + 165 + ], + "score": 1.0, + "content": "Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In NIPS, pp. 2672–2680,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 114, + 162, + 143, + 176 + ], + "spans": [ + { + "bbox": [ + 114, + 162, + 143, + 176 + ], + "score": 1.0, + "content": "2014.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 105, + 181, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 181, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 505, + 194 + ], + "score": 1.0, + "content": "A. Gretton, K. M. Borgwardt, M. J. Rasch, B. Scholkopf, and A. J. Smola. A kernel two-sample ¨", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 193, + 375, + 205 + ], + "spans": [ + { + "bbox": [ + 115, + 193, + 375, + 205 + ], + "score": 1.0, + "content": "test. Journal of Machine Learning Research, 13:723–773, 2012.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 105, + 210, + 504, + 234 + ], + "lines": [ + { + "bbox": [ + 104, + 209, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 104, + 209, + 505, + 225 + ], + "score": 1.0, + "content": "I. Gulrajani, F. Ahmed, M. Arjovsky, V. Domoulin, and A. Courville. Improved training of wasser-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 222, + 193, + 234 + ], + "spans": [ + { + "bbox": [ + 115, + 222, + 193, + 234 + ], + "score": 1.0, + "content": "stein GANs, 2017.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 240, + 504, + 275 + ], + "lines": [ + { + "bbox": [ + 105, + 240, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 505, + 253 + ], + "score": 1.0, + "content": "Martin Heusel, Hubert Ramsauer, Thomas Unterthiner, Bernhard Nessler, Gunter Klambauer, and ¨", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 252, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 116, + 252, + 505, + 264 + ], + "score": 1.0, + "content": "Sepp Hochreiter. GANs trained by a two time-scale update rule converge to a nash equilibrium.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 263, + 279, + 275 + ], + "spans": [ + { + "bbox": [ + 116, + 263, + 279, + 275 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1706.08500, 2017.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 104, + 281, + 504, + 304 + ], + "lines": [ + { + "bbox": [ + 105, + 280, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 505, + 295 + ], + "score": 1.0, + "content": "M. D. Hoffman and M. Johnson. Elbo surgery: yet another way to carve up the variational evidence", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 292, + 472, + 305 + ], + "spans": [ + { + "bbox": [ + 115, + 292, + 472, + 305 + ], + "score": 1.0, + "content": "lower bound. In NIPS Workshop on Advances in Approximate Bayesian Inference, 2016.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 105, + 311, + 504, + 334 + ], + "lines": [ + { + "bbox": [ + 105, + 309, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 506, + 325 + ], + "score": 1.0, + "content": "S. Ioffe and C. Szegedy. Batch normalization: Accelerating deep network training by reducing", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 322, + 236, + 333 + ], + "spans": [ + { + "bbox": [ + 115, + 322, + 236, + 333 + ], + "score": 1.0, + "content": "internal covariate shift, 2015.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 107, + 340, + 416, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 339, + 416, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 416, + 354 + ], + "score": 1.0, + "content": "D. P. Kingma and J. Lei. Adam: A method for stochastic optimization, 2014.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 358, + 426, + 371 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 429, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 429, + 372 + ], + "score": 1.0, + "content": "D. P. Kingma and M. Welling. Auto-encoding variational Bayes. In ICLR, 2014.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 377, + 504, + 401 + ], + "lines": [ + { + "bbox": [ + 106, + 376, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 505, + 390 + ], + "score": 1.0, + "content": "Y. LeCun, L. Bottou, Y. Bengio, and P. Haffner. Gradient-based learning applied to document", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 388, + 435, + 400 + ], + "spans": [ + { + "bbox": [ + 115, + 388, + 435, + 400 + ], + "score": 1.0, + "content": "recognition. In Proceedings of the IEEE, volume 86(11), pp. 2278–2324, 1998.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 108, + 406, + 504, + 430 + ], + "lines": [ + { + "bbox": [ + 105, + 405, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 506, + 421 + ], + "score": 1.0, + "content": "C. L. Li, W. C. Chang, Y. Cheng, Y. Yang, and B. Poczos. Mmd gan: Towards deeper understanding", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 417, + 265, + 430 + ], + "spans": [ + { + "bbox": [ + 115, + 417, + 265, + 430 + ], + "score": 1.0, + "content": "of moment matching network, 2017.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 470, + 448 + ], + "lines": [ + { + "bbox": [ + 106, + 435, + 469, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 469, + 449 + ], + "score": 1.0, + "content": "Y. Li, K. Swersky, and R. Zemel. Generative moment matching networks. In ICML, 2015.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 108, + 454, + 506, + 488 + ], + "lines": [ + { + "bbox": [ + 105, + 454, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 505, + 468 + ], + "score": 1.0, + "content": "Matthias Liero, Alexander Mielke, and Giuseppe Savare. Optimal entropy-transport problems and a ´", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 466, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 115, + 466, + 506, + 478 + ], + "score": 1.0, + "content": "new hellinger-kantorovich distance between positive measures. arXiv preprint arXiv:1508.07941,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 114, + 475, + 143, + 489 + ], + "spans": [ + { + "bbox": [ + 114, + 475, + 143, + 489 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 495, + 397, + 507 + ], + "lines": [ + { + "bbox": [ + 105, + 493, + 397, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 397, + 509 + ], + "score": 1.0, + "content": "F. Liese and K.-J. Miescke. Statistical Decision Theory. Springer, 2008.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 513, + 501, + 537 + ], + "lines": [ + { + "bbox": [ + 106, + 514, + 502, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 502, + 527 + ], + "score": 1.0, + "content": "Ziwei Liu, Ping Luo, Xiaogang Wang, and Xiaoou Tang. Deep learning face attributes in the wild.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 525, + 434, + 538 + ], + "spans": [ + { + "bbox": [ + 116, + 525, + 434, + 538 + ], + "score": 1.0, + "content": "In Proceedings of International Conference on Computer Vision (ICCV), 2015.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 543, + 489, + 556 + ], + "lines": [ + { + "bbox": [ + 106, + 543, + 489, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 489, + 555 + ], + "score": 1.0, + "content": "A. Makhzani, J. Shlens, N. Jaitly, and I. Goodfellow. Adversarial autoencoders. In ICLR, 2016.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 561, + 502, + 585 + ], + "lines": [ + { + "bbox": [ + 105, + 561, + 504, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 504, + 574 + ], + "score": 1.0, + "content": "L. Mescheder, S. Nowozin, and A. Geiger. Adversarial variational bayes: Unifying variational", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 573, + 345, + 585 + ], + "spans": [ + { + "bbox": [ + 115, + 573, + 345, + 585 + ], + "score": 1.0, + "content": "autoencoders and generative adversarial networks, 2017.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 106, + 591, + 503, + 614 + ], + "lines": [ + { + "bbox": [ + 105, + 590, + 504, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 504, + 604 + ], + "score": 1.0, + "content": "Sebastian Nowozin, Botond Cseke, and Ryota Tomioka. f-GAN: Training generative neural sam-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 603, + 374, + 615 + ], + "spans": [ + { + "bbox": [ + 115, + 603, + 374, + 615 + ], + "score": 1.0, + "content": "plers using variational divergence minimization. In NIPS, 2016.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 106, + 621, + 504, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 620, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 505, + 634 + ], + "score": 1.0, + "content": "B. Poole, A. Alemi, J. Sohl-Dickstein, and A. Angelova. Improved generator objectives for GANs,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 114, + 631, + 144, + 645 + ], + "spans": [ + { + "bbox": [ + 114, + 631, + 144, + 645 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 106, + 650, + 504, + 674 + ], + "lines": [ + { + "bbox": [ + 106, + 650, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 505, + 663 + ], + "score": 1.0, + "content": "A. Radford, L. Metz, and S. Chintala. Unsupervised representation learning with deep convolutional", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 662, + 311, + 673 + ], + "spans": [ + { + "bbox": [ + 115, + 662, + 311, + 673 + ], + "score": 1.0, + "content": "generative adversarial networks. In ICLR, 2016.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 107, + 680, + 503, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 680, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 693 + ], + "score": 1.0, + "content": "R. Reddi, A. Ramdas, A. Singh, B. Poczos, and L. Wasserman. On the high-dimensional power of", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 691, + 432, + 702 + ], + "spans": [ + { + "bbox": [ + 116, + 691, + 432, + 702 + ], + "score": 1.0, + "content": "a linear-time two sample test under mean-shift alternatives. In AISTATS, 2015.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "D. Ulyanov, A. Vedaldi, and V. Lempitsky. It takes (only) two: Adversarial generator-encoder", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 720, + 184, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 184, + 732 + ], + "score": 1.0, + "content": "networks, 2017.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "G. K. Dziugaite, D. M. Roy, and Z. Ghahramani. Training generative neural networks via maximum", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 94, + 304, + 105 + ], + "spans": [ + { + "bbox": [ + 115, + 94, + 304, + 105 + ], + "score": 1.0, + "content": "mean discrepancy optimization. In UAI, 2015.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 505, + 105 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 111, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 505, + 124 + ], + "score": 1.0, + "content": "A. Genevay, M. Cuturi, G. Peyre, and F. R. Bach. Stochastic optimization for large-scale optimal ´", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 472, + 135 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 472, + 135 + ], + "score": 1.0, + "content": "transport. In Advances in Neural Information Processing Systems, pp. 3432–3440, 2016.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 106, + 111, + 505, + 135 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 141, + 504, + 175 + ], + "lines": [ + { + "bbox": [ + 105, + 140, + 506, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 506, + 154 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 151, + 506, + 165 + ], + "spans": [ + { + "bbox": [ + 114, + 151, + 506, + 165 + ], + "score": 1.0, + "content": "Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In NIPS, pp. 2672–2680,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 114, + 162, + 143, + 176 + ], + "spans": [ + { + "bbox": [ + 114, + 162, + 143, + 176 + ], + "score": 1.0, + "content": "2014.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 140, + 506, + 176 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 181, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 181, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 505, + 194 + ], + "score": 1.0, + "content": "A. Gretton, K. M. Borgwardt, M. J. Rasch, B. Scholkopf, and A. J. Smola. A kernel two-sample ¨", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 193, + 375, + 205 + ], + "spans": [ + { + "bbox": [ + 115, + 193, + 375, + 205 + ], + "score": 1.0, + "content": "test. Journal of Machine Learning Research, 13:723–773, 2012.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 106, + 181, + 505, + 205 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 210, + 504, + 234 + ], + "lines": [ + { + "bbox": [ + 104, + 209, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 104, + 209, + 505, + 225 + ], + "score": 1.0, + "content": "I. Gulrajani, F. Ahmed, M. Arjovsky, V. Domoulin, and A. Courville. Improved training of wasser-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 222, + 193, + 234 + ], + "spans": [ + { + "bbox": [ + 115, + 222, + 193, + 234 + ], + "score": 1.0, + "content": "stein GANs, 2017.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 104, + 209, + 505, + 234 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 240, + 504, + 275 + ], + "lines": [ + { + "bbox": [ + 105, + 240, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 505, + 253 + ], + "score": 1.0, + "content": "Martin Heusel, Hubert Ramsauer, Thomas Unterthiner, Bernhard Nessler, Gunter Klambauer, and ¨", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 252, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 116, + 252, + 505, + 264 + ], + "score": 1.0, + "content": "Sepp Hochreiter. GANs trained by a two time-scale update rule converge to a nash equilibrium.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 263, + 279, + 275 + ], + "spans": [ + { + "bbox": [ + 116, + 263, + 279, + 275 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1706.08500, 2017.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 240, + 505, + 275 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 281, + 504, + 304 + ], + "lines": [ + { + "bbox": [ + 105, + 280, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 505, + 295 + ], + "score": 1.0, + "content": "M. D. Hoffman and M. Johnson. Elbo surgery: yet another way to carve up the variational evidence", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 292, + 472, + 305 + ], + "spans": [ + { + "bbox": [ + 115, + 292, + 472, + 305 + ], + "score": 1.0, + "content": "lower bound. In NIPS Workshop on Advances in Approximate Bayesian Inference, 2016.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 280, + 505, + 305 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 311, + 504, + 334 + ], + "lines": [ + { + "bbox": [ + 105, + 309, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 506, + 325 + ], + "score": 1.0, + "content": "S. Ioffe and C. Szegedy. Batch normalization: Accelerating deep network training by reducing", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 322, + 236, + 333 + ], + "spans": [ + { + "bbox": [ + 115, + 322, + 236, + 333 + ], + "score": 1.0, + "content": "internal covariate shift, 2015.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 309, + 506, + 333 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 340, + 416, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 339, + 416, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 416, + 354 + ], + "score": 1.0, + "content": "D. P. Kingma and J. Lei. Adam: A method for stochastic optimization, 2014.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 339, + 416, + 354 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 358, + 426, + 371 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 429, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 429, + 372 + ], + "score": 1.0, + "content": "D. P. Kingma and M. Welling. Auto-encoding variational Bayes. In ICLR, 2014.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 358, + 429, + 372 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 377, + 504, + 401 + ], + "lines": [ + { + "bbox": [ + 106, + 376, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 505, + 390 + ], + "score": 1.0, + "content": "Y. LeCun, L. Bottou, Y. Bengio, and P. Haffner. Gradient-based learning applied to document", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 388, + 435, + 400 + ], + "spans": [ + { + "bbox": [ + 115, + 388, + 435, + 400 + ], + "score": 1.0, + "content": "recognition. In Proceedings of the IEEE, volume 86(11), pp. 2278–2324, 1998.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 106, + 376, + 505, + 400 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 406, + 504, + 430 + ], + "lines": [ + { + "bbox": [ + 105, + 405, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 506, + 421 + ], + "score": 1.0, + "content": "C. L. Li, W. C. Chang, Y. Cheng, Y. Yang, and B. Poczos. Mmd gan: Towards deeper understanding", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 417, + 265, + 430 + ], + "spans": [ + { + "bbox": [ + 115, + 417, + 265, + 430 + ], + "score": 1.0, + "content": "of moment matching network, 2017.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 405, + 506, + 430 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 470, + 448 + ], + "lines": [ + { + "bbox": [ + 106, + 435, + 469, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 469, + 449 + ], + "score": 1.0, + "content": "Y. Li, K. Swersky, and R. Zemel. Generative moment matching networks. In ICML, 2015.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 106, + 435, + 469, + 449 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 454, + 506, + 488 + ], + "lines": [ + { + "bbox": [ + 105, + 454, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 505, + 468 + ], + "score": 1.0, + "content": "Matthias Liero, Alexander Mielke, and Giuseppe Savare. Optimal entropy-transport problems and a ´", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 466, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 115, + 466, + 506, + 478 + ], + "score": 1.0, + "content": "new hellinger-kantorovich distance between positive measures. arXiv preprint arXiv:1508.07941,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 114, + 475, + 143, + 489 + ], + "spans": [ + { + "bbox": [ + 114, + 475, + 143, + 489 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 454, + 506, + 489 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 495, + 397, + 507 + ], + "lines": [ + { + "bbox": [ + 105, + 493, + 397, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 397, + 509 + ], + "score": 1.0, + "content": "F. Liese and K.-J. Miescke. Statistical Decision Theory. Springer, 2008.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 493, + 397, + 509 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 513, + 501, + 537 + ], + "lines": [ + { + "bbox": [ + 106, + 514, + 502, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 502, + 527 + ], + "score": 1.0, + "content": "Ziwei Liu, Ping Luo, Xiaogang Wang, and Xiaoou Tang. Deep learning face attributes in the wild.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 525, + 434, + 538 + ], + "spans": [ + { + "bbox": [ + 116, + 525, + 434, + 538 + ], + "score": 1.0, + "content": "In Proceedings of International Conference on Computer Vision (ICCV), 2015.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 514, + 502, + 538 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 543, + 489, + 556 + ], + "lines": [ + { + "bbox": [ + 106, + 543, + 489, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 489, + 555 + ], + "score": 1.0, + "content": "A. Makhzani, J. Shlens, N. Jaitly, and I. Goodfellow. Adversarial autoencoders. In ICLR, 2016.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 543, + 489, + 555 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 561, + 502, + 585 + ], + "lines": [ + { + "bbox": [ + 105, + 561, + 504, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 504, + 574 + ], + "score": 1.0, + "content": "L. Mescheder, S. Nowozin, and A. Geiger. Adversarial variational bayes: Unifying variational", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 573, + 345, + 585 + ], + "spans": [ + { + "bbox": [ + 115, + 573, + 345, + 585 + ], + "score": 1.0, + "content": "autoencoders and generative adversarial networks, 2017.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 561, + 504, + 585 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 591, + 503, + 614 + ], + "lines": [ + { + "bbox": [ + 105, + 590, + 504, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 504, + 604 + ], + "score": 1.0, + "content": "Sebastian Nowozin, Botond Cseke, and Ryota Tomioka. f-GAN: Training generative neural sam-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 603, + 374, + 615 + ], + "spans": [ + { + "bbox": [ + 115, + 603, + 374, + 615 + ], + "score": 1.0, + "content": "plers using variational divergence minimization. In NIPS, 2016.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 590, + 504, + 615 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 621, + 504, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 620, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 505, + 634 + ], + "score": 1.0, + "content": "B. Poole, A. Alemi, J. Sohl-Dickstein, and A. Angelova. Improved generator objectives for GANs,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 114, + 631, + 144, + 645 + ], + "spans": [ + { + "bbox": [ + 114, + 631, + 144, + 645 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 620, + 505, + 645 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 650, + 504, + 674 + ], + "lines": [ + { + "bbox": [ + 106, + 650, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 505, + 663 + ], + "score": 1.0, + "content": "A. Radford, L. Metz, and S. Chintala. Unsupervised representation learning with deep convolutional", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 662, + 311, + 673 + ], + "spans": [ + { + "bbox": [ + 115, + 662, + 311, + 673 + ], + "score": 1.0, + "content": "generative adversarial networks. In ICLR, 2016.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 106, + 650, + 505, + 673 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 680, + 503, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 680, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 693 + ], + "score": 1.0, + "content": "R. Reddi, A. Ramdas, A. Singh, B. Poczos, and L. Wasserman. On the high-dimensional power of", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 691, + 432, + 702 + ], + "spans": [ + { + "bbox": [ + 116, + 691, + 432, + 702 + ], + "score": 1.0, + "content": "a linear-time two sample test under mean-shift alternatives. In AISTATS, 2015.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 680, + 505, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "D. Ulyanov, A. Vedaldi, and V. Lempitsky. It takes (only) two: Adversarial generator-encoder", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 720, + 184, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 184, + 732 + ], + "score": 1.0, + "content": "networks, 2017.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 708, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 102, + 82, + 477, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 478, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 478, + 95 + ], + "score": 1.0, + "content": "C. Villani. Topics in Optimal Transportation. AMS Graduate Studies in Mathematics, 2003.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 101, + 505, + 114 + ], + "lines": [ + { + "bbox": [ + 105, + 100, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 505, + 115 + ], + "score": 1.0, + "content": "J. Zhao, M. Mathieu, and Y. LeCun. Energy-based generative adversarial network. In ICLR, 2017a.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 120, + 504, + 132 + ], + "lines": [ + { + "bbox": [ + 106, + 119, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 119, + 505, + 133 + ], + "score": 1.0, + "content": "S. Zhao, J. Song, and S. Ermon. InfoVAE: Information maximizing variational autoencoders, 2017b.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + } + ], + "page_idx": 10, + "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, + 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": [ + 102, + 82, + 477, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 478, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 478, + 95 + ], + "score": 1.0, + "content": "C. Villani. Topics in Optimal Transportation. AMS Graduate Studies in Mathematics, 2003.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 81, + 478, + 95 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 101, + 505, + 114 + ], + "lines": [ + { + "bbox": [ + 105, + 100, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 505, + 115 + ], + "score": 1.0, + "content": "J. Zhao, M. Mathieu, and Y. LeCun. Energy-based generative adversarial network. In ICLR, 2017a.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 100, + 505, + 115 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 120, + 504, + 132 + ], + "lines": [ + { + "bbox": [ + 106, + 119, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 119, + 505, + 133 + ], + "score": 1.0, + "content": "S. Zhao, J. Song, and S. Ermon. InfoVAE: Information maximizing variational autoencoders, 2017b.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 106, + 119, + 505, + 133 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 81, + 485, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 486, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 486, + 95 + ], + "score": 1.0, + "content": "A IMPLICIT GENERATIVE MODELS: A SHORT TOUR OF GANS AND VAES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 105, + 505, + 184 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 505, + 118 + ], + "score": 1.0, + "content": "Even though GANs and VAEs are quite different—both in terms of the conceptual frameworks and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 117, + 504, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 504, + 129 + ], + "score": 1.0, + "content": "empirical performance—they share important features: (a) both can be trained by sampling from", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 128, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 106, + 128, + 149, + 140 + ], + "score": 1.0, + "content": "the model", + "type": "text" + }, + { + "bbox": [ + 149, + 128, + 163, + 139 + ], + "score": 0.89, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 128, + 505, + 140 + ], + "score": 1.0, + "content": "without knowing an analytical form of its density and (b) both can be scaled up with", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 506, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 416, + 152 + ], + "score": 1.0, + "content": "SGD. As a result, it becomes possible to use highly flexible implicit models", + "type": "text" + }, + { + "bbox": [ + 416, + 139, + 430, + 150 + ], + "score": 0.88, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 138, + 506, + 152 + ], + "score": 1.0, + "content": "defined by a two-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 149, + 504, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 247, + 163 + ], + "score": 1.0, + "content": "step procedure, where first a code", + "type": "text" + }, + { + "bbox": [ + 248, + 150, + 257, + 160 + ], + "score": 0.8, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 149, + 407, + 163 + ], + "score": 1.0, + "content": "is sampled from a fixed distribution", + "type": "text" + }, + { + "bbox": [ + 407, + 150, + 421, + 161 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 149, + 494, + 163 + ], + "score": 1.0, + "content": "on a latent space", + "type": "text" + }, + { + "bbox": [ + 495, + 150, + 504, + 160 + ], + "score": 0.76, + "content": "\\mathcal { Z }", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 160, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 145, + 174 + ], + "score": 1.0, + "content": "and then", + "type": "text" + }, + { + "bbox": [ + 145, + 161, + 154, + 171 + ], + "score": 0.8, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 160, + 256, + 174 + ], + "score": 1.0, + "content": "is mapped to the image", + "type": "text" + }, + { + "bbox": [ + 256, + 161, + 335, + 173 + ], + "score": 0.91, + "content": "G ( Z ) \\in \\mathcal { X } = \\mathcal { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 160, + 506, + 174 + ], + "score": 1.0, + "content": "with a (possibly random) transformation", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 170, + 389, + 185 + ], + "spans": [ + { + "bbox": [ + 107, + 172, + 155, + 182 + ], + "score": 0.89, + "content": "G \\colon { \\mathcal { Z } } \\to { \\mathcal { X } }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 170, + 309, + 185 + ], + "score": 1.0, + "content": ". This results in latent variable models", + "type": "text" + }, + { + "bbox": [ + 310, + 172, + 324, + 183 + ], + "score": 0.87, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 170, + 389, + 185 + ], + "score": 1.0, + "content": "of the form (3).", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 188, + 505, + 232 + ], + "lines": [ + { + "bbox": [ + 106, + 188, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 327, + 201 + ], + "score": 1.0, + "content": "These models are indeed easy to sample and, provided", + "type": "text" + }, + { + "bbox": [ + 327, + 189, + 336, + 199 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 188, + 505, + 201 + ], + "score": 1.0, + "content": "can be differentiated analytically with re-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 200, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 204, + 212 + ], + "score": 1.0, + "content": "spect to its parameters,", + "type": "text" + }, + { + "bbox": [ + 204, + 200, + 218, + 211 + ], + "score": 0.88, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 200, + 505, + 212 + ], + "score": 1.0, + "content": "can be trained with SGD. The field is growing rapidly and numerous", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 210, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 505, + 223 + ], + "score": 1.0, + "content": "variations of VAEs and GANs are available in the literature. Next we introduce and compare several", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 220, + 143, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 143, + 234 + ], + "score": 1.0, + "content": "of them.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 237, + 504, + 250 + ], + "lines": [ + { + "bbox": [ + 106, + 236, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 505, + 252 + ], + "score": 1.0, + "content": "The original generative adversarial network (GAN) Goodfellow et al. (2014) approach minimizes", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 153, + 254, + 457, + 275 + ], + "lines": [ + { + "bbox": [ + 153, + 254, + 457, + 275 + ], + "spans": [ + { + "bbox": [ + 153, + 254, + 457, + 275 + ], + "score": 0.9, + "content": "D _ { \\mathrm { G A N } } ( P _ { X } , P _ { G } ) = \\operatorname* { s u p } _ { T \\in { \\mathcal T } } \\mathbb { E } _ { X \\sim P _ { X } } [ \\log T ( X ) ] + \\mathbb { E } _ { Z \\sim P _ { Z } } [ \\log \\left( 1 - T ( G ( Z ) ) \\right) ]", + "type": "interline_equation", + "image_path": "a59ac1d737ca8f03b353ef156dcb0aa8414c6da98612047cea30f74c36c0bb94.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 153, + 254, + 457, + 275 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 279, + 505, + 379 + ], + "lines": [ + { + "bbox": [ + 105, + 279, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 263, + 293 + ], + "score": 1.0, + "content": "with respect to a deterministic decoder", + "type": "text" + }, + { + "bbox": [ + 264, + 280, + 312, + 290 + ], + "score": 0.89, + "content": "G \\colon { \\mathcal { Z } } \\to { \\mathcal { X } }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 279, + 342, + 293 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 342, + 280, + 352, + 290 + ], + "score": 0.85, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 279, + 505, + 293 + ], + "score": 1.0, + "content": "is any non-parametric class of choice.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 290, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 171, + 304 + ], + "score": 1.0, + "content": "It is known that", + "type": "text" + }, + { + "bbox": [ + 171, + 290, + 357, + 303 + ], + "score": 0.91, + "content": "D _ { \\mathrm { G A N } } ( P _ { X } , P _ { G } ) \\leq 2 \\cdot D _ { \\mathrm { J S } } ( P _ { X } , P _ { G } ) - \\log ( 4 )", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 290, + 505, + 304 + ], + "score": 1.0, + "content": "and the inequality turns into identity", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 301, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 304, + 315 + ], + "score": 1.0, + "content": "in the nonparametric limit, that is when the class", + "type": "text" + }, + { + "bbox": [ + 305, + 303, + 314, + 312 + ], + "score": 0.8, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 301, + 505, + 315 + ], + "score": 1.0, + "content": "becomes rich enough to represent all functions", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 312, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 145, + 325 + ], + "score": 1.0, + "content": "mapping", + "type": "text" + }, + { + "bbox": [ + 145, + 313, + 155, + 322 + ], + "score": 0.82, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 312, + 168, + 325 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 169, + 313, + 191, + 325 + ], + "score": 0.91, + "content": "( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 312, + 505, + 325 + ], + "score": 1.0, + "content": ". Hence, GANs are minimizing a lower bound on the JS-divergence. How-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 323, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 340, + 336 + ], + "score": 1.0, + "content": "ever, GANs are not only linked to the JS-divergence: the", + "type": "text" + }, + { + "bbox": [ + 340, + 324, + 347, + 335 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 323, + 505, + 336 + ], + "score": 1.0, + "content": "-GAN approach Nowozin et al. (2016)", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 334, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 245, + 347 + ], + "score": 1.0, + "content": "showed that a slight modification", + "type": "text" + }, + { + "bbox": [ + 245, + 335, + 279, + 347 + ], + "score": 0.9, + "content": "D _ { \\mathrm { f , G A N } }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 334, + 505, + 347 + ], + "score": 1.0, + "content": "of the objective (5) allows to lower bound any desired", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 107, + 345, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 107, + 346, + 114, + 357 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 345, + 338, + 357 + ], + "score": 1.0, + "content": "-divergence in a similar way. In practice, both decoder", + "type": "text" + }, + { + "bbox": [ + 339, + 346, + 348, + 356 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 345, + 424, + 357 + ], + "score": 1.0, + "content": "and discriminator", + "type": "text" + }, + { + "bbox": [ + 425, + 346, + 433, + 355 + ], + "score": 0.78, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 345, + 506, + 357 + ], + "score": 1.0, + "content": "are trained in al-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 356, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 506, + 369 + ], + "score": 1.0, + "content": "ternating SGD steps. Stopping criteria as well as adequate evaluation of the trained GAN models", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 368, + 201, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 201, + 381 + ], + "score": 1.0, + "content": "remain open questions.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 383, + 505, + 461 + ], + "lines": [ + { + "bbox": [ + 106, + 384, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 450, + 397 + ], + "score": 1.0, + "content": "Recently, the authors of Arjovsky et al. (2017) argued that the 1-Wasserstein distance", + "type": "text" + }, + { + "bbox": [ + 450, + 384, + 465, + 396 + ], + "score": 0.9, + "content": "W _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 384, + 505, + 397 + ], + "score": 1.0, + "content": ", which is", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 394, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 297, + 409 + ], + "score": 1.0, + "content": "known to induce a much weaker topology than", + "type": "text" + }, + { + "bbox": [ + 298, + 396, + 316, + 407 + ], + "score": 0.91, + "content": "D _ { \\mathrm { J S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 394, + 505, + 409 + ], + "score": 1.0, + "content": ", may be better suited for generative modeling.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 405, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 133, + 419 + ], + "score": 1.0, + "content": "When", + "type": "text" + }, + { + "bbox": [ + 133, + 406, + 148, + 417 + ], + "score": 0.89, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 405, + 167, + 419 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 167, + 407, + 181, + 417 + ], + "score": 0.89, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 405, + 505, + 419 + ], + "score": 1.0, + "content": "are supported on largely disjoint low-dimensional manifolds (which may be the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 417, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 194, + 431 + ], + "score": 1.0, + "content": "case in applications),", + "type": "text" + }, + { + "bbox": [ + 194, + 417, + 239, + 429 + ], + "score": 0.27, + "content": "D _ { \\mathrm { K L } } , D _ { \\mathrm { J S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 417, + 388, + 431 + ], + "score": 1.0, + "content": ", and other strong distances between", + "type": "text" + }, + { + "bbox": [ + 388, + 417, + 403, + 428 + ], + "score": 0.89, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 417, + 423, + 431 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 423, + 418, + 437, + 428 + ], + "score": 0.89, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 417, + 506, + 431 + ], + "score": 1.0, + "content": "max out and no", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 246, + 441 + ], + "score": 1.0, + "content": "longer provide useful gradients for", + "type": "text" + }, + { + "bbox": [ + 246, + 429, + 260, + 439 + ], + "score": 0.89, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 428, + 505, + 441 + ], + "score": 1.0, + "content": ". This “vanishing gradient” problem necessitates complicated", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 439, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 204, + 451 + ], + "score": 1.0, + "content": "scheduling between the", + "type": "text" + }, + { + "bbox": [ + 205, + 439, + 224, + 449 + ], + "score": 0.73, + "content": "G / T", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 439, + 312, + 451 + ], + "score": 1.0, + "content": "updates. In contrast,", + "type": "text" + }, + { + "bbox": [ + 312, + 439, + 327, + 450 + ], + "score": 0.89, + "content": "W _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 439, + 505, + 451 + ], + "score": 1.0, + "content": "is still sensible in these cases and provides", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 450, + 354, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 354, + 463 + ], + "score": 1.0, + "content": "stable gradients. The Wasserstein GAN (WGAN) minimizes", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 465, + 436, + 487 + ], + "lines": [ + { + "bbox": [ + 173, + 465, + 436, + 487 + ], + "spans": [ + { + "bbox": [ + 173, + 465, + 436, + 487 + ], + "score": 0.91, + "content": "D _ { \\mathrm { W G A N } } ( P _ { X } , P _ { G } ) = \\operatorname* { s u p } _ { T \\in \\mathcal { W } } \\mathbb { E } _ { X \\sim P _ { X } } [ T ( X ) ] - \\mathbb { E } _ { Z \\sim P _ { Z } } \\left[ T ( G ( Z ) ) \\right] ,", + "type": "interline_equation", + "image_path": "11516a3278e745fdf04fed42048535c16a3a3250cb51ccdedea0ec2928ff1e7a.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 173, + 465, + 436, + 487 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 491, + 502, + 514 + ], + "lines": [ + { + "bbox": [ + 105, + 490, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 133, + 505 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 492, + 145, + 502 + ], + "score": 0.82, + "content": "\\mathcal { W }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 490, + 310, + 505 + ], + "score": 1.0, + "content": "is any subset of 1-Lipschitz functions on", + "type": "text" + }, + { + "bbox": [ + 310, + 492, + 320, + 502 + ], + "score": 0.81, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 490, + 418, + 505 + ], + "score": 1.0, + "content": ". It follows from (2) that", + "type": "text" + }, + { + "bbox": [ + 419, + 492, + 506, + 504 + ], + "score": 0.9, + "content": "D _ { \\mathrm { W G A N } } ( P _ { X } , P _ { G } ) \\leq", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 502, + 471, + 515 + ], + "spans": [ + { + "bbox": [ + 107, + 503, + 161, + 515 + ], + "score": 0.92, + "content": "W _ { 1 } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 502, + 471, + 515 + ], + "score": 1.0, + "content": "and thus WGAN is minimizing a lower bound on the 1-Wasserstein distance.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 104, + 519, + 504, + 542 + ], + "lines": [ + { + "bbox": [ + 106, + 518, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 412, + 533 + ], + "score": 1.0, + "content": "Variational auto-encoders (VAE) Kingma & Welling (2014) utilize models", + "type": "text" + }, + { + "bbox": [ + 412, + 520, + 426, + 531 + ], + "score": 0.88, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 518, + 506, + 533 + ], + "score": 1.0, + "content": "of the form (3) and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 530, + 147, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 147, + 543 + ], + "score": 1.0, + "content": "minimize", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "interline_equation", + "bbox": [ + 135, + 545, + 475, + 567 + ], + "lines": [ + { + "bbox": [ + 135, + 545, + 475, + 567 + ], + "spans": [ + { + "bbox": [ + 135, + 545, + 475, + 567 + ], + "score": 0.92, + "content": "D _ { \\mathrm { V A E } } \\big ( P _ { X } , P _ { G } \\big ) = \\operatorname* { i n f } _ { Q ( Z | X ) \\in \\mathcal { Q } } \\mathbb { E } _ { P _ { X } } \\left[ D _ { \\mathrm { K L } } \\big ( Q ( Z | X ) , P _ { Z } \\big ) - \\mathbb { E } _ { Q ( Z | X ) } [ \\log p _ { G } ( X | Z ) ] \\right]", + "type": "interline_equation", + "image_path": "73b2d7fec2d7342b3db2f58e91ee4dc807956f98a6dfe86d99e0a7e7e00b668d.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 135, + 545, + 475, + 567 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 571, + 505, + 683 + ], + "lines": [ + { + "bbox": [ + 105, + 571, + 504, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 292, + 585 + ], + "score": 1.0, + "content": "with respect to a random decoder mapping", + "type": "text" + }, + { + "bbox": [ + 292, + 572, + 333, + 584 + ], + "score": 0.93, + "content": "P _ { G } ( X | Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 571, + 462, + 585 + ], + "score": 1.0, + "content": ". The conditional distribution", + "type": "text" + }, + { + "bbox": [ + 462, + 572, + 504, + 584 + ], + "score": 0.91, + "content": "P _ { G } ( X | Z )", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 582, + 504, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 261, + 596 + ], + "score": 1.0, + "content": "is often parametrized by a deep net", + "type": "text" + }, + { + "bbox": [ + 261, + 583, + 271, + 593 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 582, + 469, + 596 + ], + "score": 1.0, + "content": "and can have any form as long as its density", + "type": "text" + }, + { + "bbox": [ + 469, + 584, + 504, + 595 + ], + "score": 0.91, + "content": "p _ { G } ( x | z )", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 593, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 396, + 608 + ], + "score": 1.0, + "content": "can be computed and differentiated with respect to the parameters of", + "type": "text" + }, + { + "bbox": [ + 396, + 595, + 405, + 604 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 593, + 506, + 608 + ], + "score": 1.0, + "content": ". A typical choice is to", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 603, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 168, + 618 + ], + "score": 1.0, + "content": "use Gaussians", + "type": "text" + }, + { + "bbox": [ + 168, + 604, + 311, + 617 + ], + "score": 0.89, + "content": "P _ { G } ( X | Z ) = \\mathcal { N } ( X ; G ( Z ) , \\sigma ^ { \\hat { 2 } } \\cdot I )", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 603, + 330, + 618 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 330, + 605, + 340, + 616 + ], + "score": 0.83, + "content": "\\mathcal { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 603, + 505, + 618 + ], + "score": 1.0, + "content": "is the set of all conditional probability", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 614, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 160, + 629 + ], + "score": 1.0, + "content": "distributions", + "type": "text" + }, + { + "bbox": [ + 160, + 616, + 195, + 628 + ], + "score": 0.91, + "content": "Q ( Z | X )", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 614, + 506, + 629 + ], + "score": 1.0, + "content": ", the objective of VAE coincides with the negative marginal log-likelihood", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 264, + 639 + ], + "score": 0.91, + "content": "D _ { \\mathrm { V A E } } ( P _ { X } , P _ { G } ) = - \\mathbb { E } _ { P _ { X } } [ \\log P _ { G } ( X ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 626, + 397, + 640 + ], + "score": 1.0, + "content": ". However, in order to make the", + "type": "text" + }, + { + "bbox": [ + 398, + 627, + 419, + 638 + ], + "score": 0.9, + "content": "D _ { \\mathrm { K L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "term of (6) tractable", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 637, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 410, + 650 + ], + "score": 1.0, + "content": "in closed form, the original implementation of VAE uses a standard normal", + "type": "text" + }, + { + "bbox": [ + 410, + 639, + 424, + 649 + ], + "score": 0.9, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 637, + 477, + 650 + ], + "score": 1.0, + "content": "and restricts", + "type": "text" + }, + { + "bbox": [ + 477, + 638, + 487, + 649 + ], + "score": 0.81, + "content": "\\mathcal { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 637, + 506, + 650 + ], + "score": 1.0, + "content": "to a", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 232, + 662 + ], + "score": 1.0, + "content": "class of Gaussian distributions", + "type": "text" + }, + { + "bbox": [ + 232, + 648, + 364, + 662 + ], + "score": 0.93, + "content": "Q ( Z | X ) = { \\mathcal { N } } { \\big ( } Z ; \\mu ( X ) , \\Sigma ( X ) { \\big ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 649, + 411, + 662 + ], + "score": 1.0, + "content": "with mean", + "type": "text" + }, + { + "bbox": [ + 411, + 651, + 419, + 660 + ], + "score": 0.82, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "and diagonal covari-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 128, + 672 + ], + "score": 1.0, + "content": "ance", + "type": "text" + }, + { + "bbox": [ + 128, + 660, + 137, + 670 + ], + "score": 0.76, + "content": "\\Sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "parametrized by deep nets. As a consequence, VAE is minimizing an upper bound on the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 671, + 421, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 356, + 684 + ], + "score": 1.0, + "content": "negative log-likelihood or, equivalently, on the KL-divergence", + "type": "text" + }, + { + "bbox": [ + 357, + 671, + 416, + 683 + ], + "score": 0.93, + "content": "D _ { \\mathrm { K L } } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 671, + 421, + 684 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "One possible way to reduce the gap between the true negative log-likelihood and the upper bound", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 159, + 711 + ], + "score": 1.0, + "content": "provided by", + "type": "text" + }, + { + "bbox": [ + 159, + 699, + 185, + 710 + ], + "score": 0.9, + "content": "D _ { \\mathrm { V A E } }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 699, + 280, + 711 + ], + "score": 1.0, + "content": "is to enlarge the class", + "type": "text" + }, + { + "bbox": [ + 280, + 699, + 289, + 710 + ], + "score": 0.77, + "content": "\\mathcal { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 699, + 506, + 711 + ], + "score": 1.0, + "content": ". Adversarial variational Bayes (AVB) Mescheder", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 104, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 104, + 709, + 468, + 722 + ], + "score": 1.0, + "content": "et al. (2017) follows this argument by employing the idea of GANs. Given any point", + "type": "text" + }, + { + "bbox": [ + 469, + 710, + 501, + 720 + ], + "score": 0.89, + "content": "x \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 709, + 506, + 722 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 720, + 504, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 139, + 733 + ], + "score": 1.0, + "content": "a noise", + "type": "text" + }, + { + "bbox": [ + 140, + 720, + 194, + 732 + ], + "score": 0.94, + "content": "\\epsilon \\sim \\mathcal { N } ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 720, + 321, + 733 + ], + "score": 1.0, + "content": ", and any fixed transformation", + "type": "text" + }, + { + "bbox": [ + 321, + 721, + 393, + 731 + ], + "score": 0.89, + "content": "e \\colon \\mathcal { X } \\times \\mathcal { R } \\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 720, + 476, + 733 + ], + "score": 1.0, + "content": ", a random variable", + "type": "text" + }, + { + "bbox": [ + 476, + 721, + 504, + 732 + ], + "score": 0.91, + "content": "e ( x , \\epsilon )", + "type": "inline_equation" + } + ], + "index": 49 + } + ], + "index": 47.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 81, + 485, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 486, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 486, + 95 + ], + "score": 1.0, + "content": "A IMPLICIT GENERATIVE MODELS: A SHORT TOUR OF GANS AND VAES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 105, + 505, + 184 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 505, + 118 + ], + "score": 1.0, + "content": "Even though GANs and VAEs are quite different—both in terms of the conceptual frameworks and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 117, + 504, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 504, + 129 + ], + "score": 1.0, + "content": "empirical performance—they share important features: (a) both can be trained by sampling from", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 128, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 106, + 128, + 149, + 140 + ], + "score": 1.0, + "content": "the model", + "type": "text" + }, + { + "bbox": [ + 149, + 128, + 163, + 139 + ], + "score": 0.89, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 128, + 505, + 140 + ], + "score": 1.0, + "content": "without knowing an analytical form of its density and (b) both can be scaled up with", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 506, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 416, + 152 + ], + "score": 1.0, + "content": "SGD. As a result, it becomes possible to use highly flexible implicit models", + "type": "text" + }, + { + "bbox": [ + 416, + 139, + 430, + 150 + ], + "score": 0.88, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 138, + 506, + 152 + ], + "score": 1.0, + "content": "defined by a two-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 149, + 504, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 247, + 163 + ], + "score": 1.0, + "content": "step procedure, where first a code", + "type": "text" + }, + { + "bbox": [ + 248, + 150, + 257, + 160 + ], + "score": 0.8, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 149, + 407, + 163 + ], + "score": 1.0, + "content": "is sampled from a fixed distribution", + "type": "text" + }, + { + "bbox": [ + 407, + 150, + 421, + 161 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 149, + 494, + 163 + ], + "score": 1.0, + "content": "on a latent space", + "type": "text" + }, + { + "bbox": [ + 495, + 150, + 504, + 160 + ], + "score": 0.76, + "content": "\\mathcal { Z }", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 160, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 145, + 174 + ], + "score": 1.0, + "content": "and then", + "type": "text" + }, + { + "bbox": [ + 145, + 161, + 154, + 171 + ], + "score": 0.8, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 160, + 256, + 174 + ], + "score": 1.0, + "content": "is mapped to the image", + "type": "text" + }, + { + "bbox": [ + 256, + 161, + 335, + 173 + ], + "score": 0.91, + "content": "G ( Z ) \\in \\mathcal { X } = \\mathcal { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 160, + 506, + 174 + ], + "score": 1.0, + "content": "with a (possibly random) transformation", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 170, + 389, + 185 + ], + "spans": [ + { + "bbox": [ + 107, + 172, + 155, + 182 + ], + "score": 0.89, + "content": "G \\colon { \\mathcal { Z } } \\to { \\mathcal { X } }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 170, + 309, + 185 + ], + "score": 1.0, + "content": ". This results in latent variable models", + "type": "text" + }, + { + "bbox": [ + 310, + 172, + 324, + 183 + ], + "score": 0.87, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 170, + 389, + 185 + ], + "score": 1.0, + "content": "of the form (3).", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 106, + 506, + 185 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 188, + 505, + 232 + ], + "lines": [ + { + "bbox": [ + 106, + 188, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 327, + 201 + ], + "score": 1.0, + "content": "These models are indeed easy to sample and, provided", + "type": "text" + }, + { + "bbox": [ + 327, + 189, + 336, + 199 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 188, + 505, + 201 + ], + "score": 1.0, + "content": "can be differentiated analytically with re-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 200, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 204, + 212 + ], + "score": 1.0, + "content": "spect to its parameters,", + "type": "text" + }, + { + "bbox": [ + 204, + 200, + 218, + 211 + ], + "score": 0.88, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 200, + 505, + 212 + ], + "score": 1.0, + "content": "can be trained with SGD. The field is growing rapidly and numerous", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 210, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 505, + 223 + ], + "score": 1.0, + "content": "variations of VAEs and GANs are available in the literature. Next we introduce and compare several", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 220, + 143, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 143, + 234 + ], + "score": 1.0, + "content": "of them.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 188, + 505, + 234 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 237, + 504, + 250 + ], + "lines": [ + { + "bbox": [ + 106, + 236, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 505, + 252 + ], + "score": 1.0, + "content": "The original generative adversarial network (GAN) Goodfellow et al. (2014) approach minimizes", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 106, + 236, + 505, + 252 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 153, + 254, + 457, + 275 + ], + "lines": [ + { + "bbox": [ + 153, + 254, + 457, + 275 + ], + "spans": [ + { + "bbox": [ + 153, + 254, + 457, + 275 + ], + "score": 0.9, + "content": "D _ { \\mathrm { G A N } } ( P _ { X } , P _ { G } ) = \\operatorname* { s u p } _ { T \\in { \\mathcal T } } \\mathbb { E } _ { X \\sim P _ { X } } [ \\log T ( X ) ] + \\mathbb { E } _ { Z \\sim P _ { Z } } [ \\log \\left( 1 - T ( G ( Z ) ) \\right) ]", + "type": "interline_equation", + "image_path": "a59ac1d737ca8f03b353ef156dcb0aa8414c6da98612047cea30f74c36c0bb94.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 153, + 254, + 457, + 275 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 279, + 505, + 379 + ], + "lines": [ + { + "bbox": [ + 105, + 279, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 263, + 293 + ], + "score": 1.0, + "content": "with respect to a deterministic decoder", + "type": "text" + }, + { + "bbox": [ + 264, + 280, + 312, + 290 + ], + "score": 0.89, + "content": "G \\colon { \\mathcal { Z } } \\to { \\mathcal { X } }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 279, + 342, + 293 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 342, + 280, + 352, + 290 + ], + "score": 0.85, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 279, + 505, + 293 + ], + "score": 1.0, + "content": "is any non-parametric class of choice.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 290, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 171, + 304 + ], + "score": 1.0, + "content": "It is known that", + "type": "text" + }, + { + "bbox": [ + 171, + 290, + 357, + 303 + ], + "score": 0.91, + "content": "D _ { \\mathrm { G A N } } ( P _ { X } , P _ { G } ) \\leq 2 \\cdot D _ { \\mathrm { J S } } ( P _ { X } , P _ { G } ) - \\log ( 4 )", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 290, + 505, + 304 + ], + "score": 1.0, + "content": "and the inequality turns into identity", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 301, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 304, + 315 + ], + "score": 1.0, + "content": "in the nonparametric limit, that is when the class", + "type": "text" + }, + { + "bbox": [ + 305, + 303, + 314, + 312 + ], + "score": 0.8, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 301, + 505, + 315 + ], + "score": 1.0, + "content": "becomes rich enough to represent all functions", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 312, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 145, + 325 + ], + "score": 1.0, + "content": "mapping", + "type": "text" + }, + { + "bbox": [ + 145, + 313, + 155, + 322 + ], + "score": 0.82, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 312, + 168, + 325 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 169, + 313, + 191, + 325 + ], + "score": 0.91, + "content": "( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 312, + 505, + 325 + ], + "score": 1.0, + "content": ". Hence, GANs are minimizing a lower bound on the JS-divergence. How-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 323, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 340, + 336 + ], + "score": 1.0, + "content": "ever, GANs are not only linked to the JS-divergence: the", + "type": "text" + }, + { + "bbox": [ + 340, + 324, + 347, + 335 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 323, + 505, + 336 + ], + "score": 1.0, + "content": "-GAN approach Nowozin et al. (2016)", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 334, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 245, + 347 + ], + "score": 1.0, + "content": "showed that a slight modification", + "type": "text" + }, + { + "bbox": [ + 245, + 335, + 279, + 347 + ], + "score": 0.9, + "content": "D _ { \\mathrm { f , G A N } }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 334, + 505, + 347 + ], + "score": 1.0, + "content": "of the objective (5) allows to lower bound any desired", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 107, + 345, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 107, + 346, + 114, + 357 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 345, + 338, + 357 + ], + "score": 1.0, + "content": "-divergence in a similar way. In practice, both decoder", + "type": "text" + }, + { + "bbox": [ + 339, + 346, + 348, + 356 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 345, + 424, + 357 + ], + "score": 1.0, + "content": "and discriminator", + "type": "text" + }, + { + "bbox": [ + 425, + 346, + 433, + 355 + ], + "score": 0.78, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 345, + 506, + 357 + ], + "score": 1.0, + "content": "are trained in al-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 356, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 506, + 369 + ], + "score": 1.0, + "content": "ternating SGD steps. Stopping criteria as well as adequate evaluation of the trained GAN models", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 368, + 201, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 201, + 381 + ], + "score": 1.0, + "content": "remain open questions.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 279, + 506, + 381 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 383, + 505, + 461 + ], + "lines": [ + { + "bbox": [ + 106, + 384, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 450, + 397 + ], + "score": 1.0, + "content": "Recently, the authors of Arjovsky et al. (2017) argued that the 1-Wasserstein distance", + "type": "text" + }, + { + "bbox": [ + 450, + 384, + 465, + 396 + ], + "score": 0.9, + "content": "W _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 384, + 505, + 397 + ], + "score": 1.0, + "content": ", which is", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 394, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 297, + 409 + ], + "score": 1.0, + "content": "known to induce a much weaker topology than", + "type": "text" + }, + { + "bbox": [ + 298, + 396, + 316, + 407 + ], + "score": 0.91, + "content": "D _ { \\mathrm { J S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 394, + 505, + 409 + ], + "score": 1.0, + "content": ", may be better suited for generative modeling.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 405, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 133, + 419 + ], + "score": 1.0, + "content": "When", + "type": "text" + }, + { + "bbox": [ + 133, + 406, + 148, + 417 + ], + "score": 0.89, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 405, + 167, + 419 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 167, + 407, + 181, + 417 + ], + "score": 0.89, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 405, + 505, + 419 + ], + "score": 1.0, + "content": "are supported on largely disjoint low-dimensional manifolds (which may be the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 417, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 194, + 431 + ], + "score": 1.0, + "content": "case in applications),", + "type": "text" + }, + { + "bbox": [ + 194, + 417, + 239, + 429 + ], + "score": 0.27, + "content": "D _ { \\mathrm { K L } } , D _ { \\mathrm { J S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 417, + 388, + 431 + ], + "score": 1.0, + "content": ", and other strong distances between", + "type": "text" + }, + { + "bbox": [ + 388, + 417, + 403, + 428 + ], + "score": 0.89, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 417, + 423, + 431 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 423, + 418, + 437, + 428 + ], + "score": 0.89, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 417, + 506, + 431 + ], + "score": 1.0, + "content": "max out and no", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 246, + 441 + ], + "score": 1.0, + "content": "longer provide useful gradients for", + "type": "text" + }, + { + "bbox": [ + 246, + 429, + 260, + 439 + ], + "score": 0.89, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 428, + 505, + 441 + ], + "score": 1.0, + "content": ". This “vanishing gradient” problem necessitates complicated", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 439, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 204, + 451 + ], + "score": 1.0, + "content": "scheduling between the", + "type": "text" + }, + { + "bbox": [ + 205, + 439, + 224, + 449 + ], + "score": 0.73, + "content": "G / T", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 439, + 312, + 451 + ], + "score": 1.0, + "content": "updates. In contrast,", + "type": "text" + }, + { + "bbox": [ + 312, + 439, + 327, + 450 + ], + "score": 0.89, + "content": "W _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 439, + 505, + 451 + ], + "score": 1.0, + "content": "is still sensible in these cases and provides", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 450, + 354, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 354, + 463 + ], + "score": 1.0, + "content": "stable gradients. The Wasserstein GAN (WGAN) minimizes", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 384, + 506, + 463 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 465, + 436, + 487 + ], + "lines": [ + { + "bbox": [ + 173, + 465, + 436, + 487 + ], + "spans": [ + { + "bbox": [ + 173, + 465, + 436, + 487 + ], + "score": 0.91, + "content": "D _ { \\mathrm { W G A N } } ( P _ { X } , P _ { G } ) = \\operatorname* { s u p } _ { T \\in \\mathcal { W } } \\mathbb { E } _ { X \\sim P _ { X } } [ T ( X ) ] - \\mathbb { E } _ { Z \\sim P _ { Z } } \\left[ T ( G ( Z ) ) \\right] ,", + "type": "interline_equation", + "image_path": "11516a3278e745fdf04fed42048535c16a3a3250cb51ccdedea0ec2928ff1e7a.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 173, + 465, + 436, + 487 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 491, + 502, + 514 + ], + "lines": [ + { + "bbox": [ + 105, + 490, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 133, + 505 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 492, + 145, + 502 + ], + "score": 0.82, + "content": "\\mathcal { W }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 490, + 310, + 505 + ], + "score": 1.0, + "content": "is any subset of 1-Lipschitz functions on", + "type": "text" + }, + { + "bbox": [ + 310, + 492, + 320, + 502 + ], + "score": 0.81, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 490, + 418, + 505 + ], + "score": 1.0, + "content": ". It follows from (2) that", + "type": "text" + }, + { + "bbox": [ + 419, + 492, + 506, + 504 + ], + "score": 0.9, + "content": "D _ { \\mathrm { W G A N } } ( P _ { X } , P _ { G } ) \\leq", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 502, + 471, + 515 + ], + "spans": [ + { + "bbox": [ + 107, + 503, + 161, + 515 + ], + "score": 0.92, + "content": "W _ { 1 } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 502, + 471, + 515 + ], + "score": 1.0, + "content": "and thus WGAN is minimizing a lower bound on the 1-Wasserstein distance.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 490, + 506, + 515 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 519, + 504, + 542 + ], + "lines": [ + { + "bbox": [ + 106, + 518, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 412, + 533 + ], + "score": 1.0, + "content": "Variational auto-encoders (VAE) Kingma & Welling (2014) utilize models", + "type": "text" + }, + { + "bbox": [ + 412, + 520, + 426, + 531 + ], + "score": 0.88, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 518, + 506, + 533 + ], + "score": 1.0, + "content": "of the form (3) and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 530, + 147, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 147, + 543 + ], + "score": 1.0, + "content": "minimize", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 518, + 506, + 543 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 135, + 545, + 475, + 567 + ], + "lines": [ + { + "bbox": [ + 135, + 545, + 475, + 567 + ], + "spans": [ + { + "bbox": [ + 135, + 545, + 475, + 567 + ], + "score": 0.92, + "content": "D _ { \\mathrm { V A E } } \\big ( P _ { X } , P _ { G } \\big ) = \\operatorname* { i n f } _ { Q ( Z | X ) \\in \\mathcal { Q } } \\mathbb { E } _ { P _ { X } } \\left[ D _ { \\mathrm { K L } } \\big ( Q ( Z | X ) , P _ { Z } \\big ) - \\mathbb { E } _ { Q ( Z | X ) } [ \\log p _ { G } ( X | Z ) ] \\right]", + "type": "interline_equation", + "image_path": "73b2d7fec2d7342b3db2f58e91ee4dc807956f98a6dfe86d99e0a7e7e00b668d.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 135, + 545, + 475, + 567 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 571, + 505, + 683 + ], + "lines": [ + { + "bbox": [ + 105, + 571, + 504, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 292, + 585 + ], + "score": 1.0, + "content": "with respect to a random decoder mapping", + "type": "text" + }, + { + "bbox": [ + 292, + 572, + 333, + 584 + ], + "score": 0.93, + "content": "P _ { G } ( X | Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 571, + 462, + 585 + ], + "score": 1.0, + "content": ". The conditional distribution", + "type": "text" + }, + { + "bbox": [ + 462, + 572, + 504, + 584 + ], + "score": 0.91, + "content": "P _ { G } ( X | Z )", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 582, + 504, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 261, + 596 + ], + "score": 1.0, + "content": "is often parametrized by a deep net", + "type": "text" + }, + { + "bbox": [ + 261, + 583, + 271, + 593 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 582, + 469, + 596 + ], + "score": 1.0, + "content": "and can have any form as long as its density", + "type": "text" + }, + { + "bbox": [ + 469, + 584, + 504, + 595 + ], + "score": 0.91, + "content": "p _ { G } ( x | z )", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 593, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 396, + 608 + ], + "score": 1.0, + "content": "can be computed and differentiated with respect to the parameters of", + "type": "text" + }, + { + "bbox": [ + 396, + 595, + 405, + 604 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 593, + 506, + 608 + ], + "score": 1.0, + "content": ". A typical choice is to", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 603, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 168, + 618 + ], + "score": 1.0, + "content": "use Gaussians", + "type": "text" + }, + { + "bbox": [ + 168, + 604, + 311, + 617 + ], + "score": 0.89, + "content": "P _ { G } ( X | Z ) = \\mathcal { N } ( X ; G ( Z ) , \\sigma ^ { \\hat { 2 } } \\cdot I )", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 603, + 330, + 618 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 330, + 605, + 340, + 616 + ], + "score": 0.83, + "content": "\\mathcal { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 603, + 505, + 618 + ], + "score": 1.0, + "content": "is the set of all conditional probability", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 614, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 160, + 629 + ], + "score": 1.0, + "content": "distributions", + "type": "text" + }, + { + "bbox": [ + 160, + 616, + 195, + 628 + ], + "score": 0.91, + "content": "Q ( Z | X )", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 614, + 506, + 629 + ], + "score": 1.0, + "content": ", the objective of VAE coincides with the negative marginal log-likelihood", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 264, + 639 + ], + "score": 0.91, + "content": "D _ { \\mathrm { V A E } } ( P _ { X } , P _ { G } ) = - \\mathbb { E } _ { P _ { X } } [ \\log P _ { G } ( X ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 626, + 397, + 640 + ], + "score": 1.0, + "content": ". However, in order to make the", + "type": "text" + }, + { + "bbox": [ + 398, + 627, + 419, + 638 + ], + "score": 0.9, + "content": "D _ { \\mathrm { K L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "term of (6) tractable", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 637, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 410, + 650 + ], + "score": 1.0, + "content": "in closed form, the original implementation of VAE uses a standard normal", + "type": "text" + }, + { + "bbox": [ + 410, + 639, + 424, + 649 + ], + "score": 0.9, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 637, + 477, + 650 + ], + "score": 1.0, + "content": "and restricts", + "type": "text" + }, + { + "bbox": [ + 477, + 638, + 487, + 649 + ], + "score": 0.81, + "content": "\\mathcal { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 637, + 506, + 650 + ], + "score": 1.0, + "content": "to a", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 232, + 662 + ], + "score": 1.0, + "content": "class of Gaussian distributions", + "type": "text" + }, + { + "bbox": [ + 232, + 648, + 364, + 662 + ], + "score": 0.93, + "content": "Q ( Z | X ) = { \\mathcal { N } } { \\big ( } Z ; \\mu ( X ) , \\Sigma ( X ) { \\big ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 649, + 411, + 662 + ], + "score": 1.0, + "content": "with mean", + "type": "text" + }, + { + "bbox": [ + 411, + 651, + 419, + 660 + ], + "score": 0.82, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "and diagonal covari-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 128, + 672 + ], + "score": 1.0, + "content": "ance", + "type": "text" + }, + { + "bbox": [ + 128, + 660, + 137, + 670 + ], + "score": 0.76, + "content": "\\Sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "parametrized by deep nets. As a consequence, VAE is minimizing an upper bound on the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 671, + 421, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 356, + 684 + ], + "score": 1.0, + "content": "negative log-likelihood or, equivalently, on the KL-divergence", + "type": "text" + }, + { + "bbox": [ + 357, + 671, + 416, + 683 + ], + "score": 0.93, + "content": "D _ { \\mathrm { K L } } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 671, + 421, + 684 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 571, + 506, + 684 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "One possible way to reduce the gap between the true negative log-likelihood and the upper bound", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 159, + 711 + ], + "score": 1.0, + "content": "provided by", + "type": "text" + }, + { + "bbox": [ + 159, + 699, + 185, + 710 + ], + "score": 0.9, + "content": "D _ { \\mathrm { V A E } }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 699, + 280, + 711 + ], + "score": 1.0, + "content": "is to enlarge the class", + "type": "text" + }, + { + "bbox": [ + 280, + 699, + 289, + 710 + ], + "score": 0.77, + "content": "\\mathcal { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 699, + 506, + 711 + ], + "score": 1.0, + "content": ". Adversarial variational Bayes (AVB) Mescheder", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 104, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 104, + 709, + 468, + 722 + ], + "score": 1.0, + "content": "et al. (2017) follows this argument by employing the idea of GANs. Given any point", + "type": "text" + }, + { + "bbox": [ + 469, + 710, + 501, + 720 + ], + "score": 0.89, + "content": "x \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 709, + 506, + 722 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 720, + 504, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 139, + 733 + ], + "score": 1.0, + "content": "a noise", + "type": "text" + }, + { + "bbox": [ + 140, + 720, + 194, + 732 + ], + "score": 0.94, + "content": "\\epsilon \\sim \\mathcal { N } ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 720, + 321, + 733 + ], + "score": 1.0, + "content": ", and any fixed transformation", + "type": "text" + }, + { + "bbox": [ + 321, + 721, + 393, + 731 + ], + "score": 0.89, + "content": "e \\colon \\mathcal { X } \\times \\mathcal { R } \\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 720, + 476, + 733 + ], + "score": 1.0, + "content": ", a random variable", + "type": "text" + }, + { + "bbox": [ + 476, + 721, + 504, + 732 + ], + "score": 0.91, + "content": "e ( x , \\epsilon )", + "type": "inline_equation" + } + ], + "index": 49 + } + ], + "index": 47.5, + "bbox_fs": [ + 104, + 687, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 505, + 129 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 334, + 95 + ], + "score": 1.0, + "content": "implicitly defines one particular conditional distribution", + "type": "text" + }, + { + "bbox": [ + 334, + 82, + 394, + 95 + ], + "score": 0.94, + "content": "Q _ { e } ( Z | X = x )", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 82, + 452, + 95 + ], + "score": 1.0, + "content": ". AVB allows", + "type": "text" + }, + { + "bbox": [ + 452, + 83, + 461, + 93 + ], + "score": 0.82, + "content": "\\mathcal { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "to contain", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 92, + 503, + 108 + ], + "spans": [ + { + "bbox": [ + 104, + 92, + 289, + 108 + ], + "score": 1.0, + "content": "all such distributions for different choices of", + "type": "text" + }, + { + "bbox": [ + 290, + 97, + 295, + 104 + ], + "score": 0.7, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 92, + 417, + 108 + ], + "score": 1.0, + "content": ", replaces the intractable term", + "type": "text" + }, + { + "bbox": [ + 417, + 93, + 503, + 108 + ], + "score": 0.91, + "content": "D _ { \\mathrm { K L } } \\big ( Q _ { e } ( Z | X ) , P _ { Z } \\big )", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 265, + 119 + ], + "score": 1.0, + "content": "in (6) by the adversarial approximation", + "type": "text" + }, + { + "bbox": [ + 266, + 106, + 299, + 118 + ], + "score": 0.68, + "content": "D _ { \\mathrm { f , G A N } }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 105, + 506, + 119 + ], + "score": 1.0, + "content": "corresponding to the KL-divergence, and proposes", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 118, + 160, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 118, + 160, + 129 + ], + "score": 1.0, + "content": "to minimize5", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "interline_equation", + "bbox": [ + 115, + 133, + 483, + 154 + ], + "lines": [ + { + "bbox": [ + 115, + 133, + 483, + 154 + ], + "spans": [ + { + "bbox": [ + 115, + 133, + 483, + 154 + ], + "score": 0.91, + "content": "D _ { \\mathrm { A V B } } ( P _ { X } , P _ { G } ) = \\operatorname* { i n f } _ { Q _ { \\epsilon } ( Z | X ) \\in \\mathcal { Q } } \\mathbb { E } _ { P _ { X } } \\left[ D _ { \\mathrm { f } , \\operatorname { G A N } } \\big ( Q _ { e } ( Z | X ) , P _ { Z } \\big ) - \\mathbb { E } _ { Q _ { \\epsilon } ( Z | X ) } [ \\log p _ { G } ( X | Z ) ] \\right] .", + "type": "interline_equation", + "image_path": "234379459d36ea6a3949d78f6e2e2e101d53bbec5ea6e1e381a3f7e12fbfbb4f.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 115, + 133, + 483, + 154 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 164, + 505, + 243 + ], + "lines": [ + { + "bbox": [ + 106, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 124, + 178 + ], + "score": 1.0, + "content": "The", + "type": "text" + }, + { + "bbox": [ + 124, + 166, + 145, + 177 + ], + "score": 0.9, + "content": "D _ { \\mathrm { K L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "term in (6) may be viewed as a regularizer. Indeed, VAE reduces to the classical unregular-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 176, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 188 + ], + "score": 1.0, + "content": "ized auto-encoder if this term is dropped, minimizing the reconstruction cost of the encoder-decoder", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 126, + 200 + ], + "score": 1.0, + "content": "pair", + "type": "text" + }, + { + "bbox": [ + 126, + 187, + 206, + 199 + ], + "score": 0.9, + "content": "Q ( Z | X ) , P _ { G } ( X | Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 187, + 506, + 200 + ], + "score": 1.0, + "content": ". This often results in different training points being encoded into non-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 325, + 210 + ], + "score": 1.0, + "content": "overlapping zones chaotically scattered all across the", + "type": "text" + }, + { + "bbox": [ + 325, + 199, + 334, + 208 + ], + "score": 0.79, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "space with “holes” in between where the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 179, + 222 + ], + "score": 1.0, + "content": "decoder mapping", + "type": "text" + }, + { + "bbox": [ + 180, + 209, + 221, + 221 + ], + "score": 0.93, + "content": "P _ { G } ( X | Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 209, + 408, + 222 + ], + "score": 1.0, + "content": "has never been trained. Overall, the encoder", + "type": "text" + }, + { + "bbox": [ + 408, + 209, + 444, + 221 + ], + "score": 0.92, + "content": "Q ( Z | X )", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 209, + 506, + 222 + ], + "score": 1.0, + "content": "trained in this", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 220, + 506, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 436, + 234 + ], + "score": 1.0, + "content": "way does not provide a useful representation and sampling from the latent space", + "type": "text" + }, + { + "bbox": [ + 436, + 222, + 445, + 230 + ], + "score": 0.83, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 220, + 506, + 234 + ], + "score": 1.0, + "content": "becomes hard", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 231, + 192, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 192, + 244 + ], + "score": 1.0, + "content": "Bengio et al. (2013).", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 105, + 247, + 504, + 270 + ], + "lines": [ + { + "bbox": [ + 106, + 247, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 247, + 387, + 260 + ], + "score": 1.0, + "content": "Adversarial auto-encoders (AAE) Makhzani et al. (2016) replace the", + "type": "text" + }, + { + "bbox": [ + 387, + 249, + 408, + 259 + ], + "score": 0.91, + "content": "D _ { \\mathrm { K L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 247, + 505, + 260 + ], + "score": 1.0, + "content": "term in (6) with another", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 258, + 156, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 156, + 272 + ], + "score": 1.0, + "content": "regularizer:", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "interline_equation", + "bbox": [ + 147, + 275, + 463, + 295 + ], + "lines": [ + { + "bbox": [ + 147, + 275, + 463, + 295 + ], + "spans": [ + { + "bbox": [ + 147, + 275, + 463, + 295 + ], + "score": 0.92, + "content": "D _ { \\mathrm { A A E } } ( P _ { X } , P _ { G } ) = \\operatorname* { i n f } _ { Q ( Z | X ) \\in Q } D _ { \\mathrm { G A N } } ( Q _ { Z } , P _ { Z } ) - \\mathbb { E } _ { P _ { X } } \\mathbb { E } _ { Q ( Z | X ) } [ \\log p _ { G } ( X | Z ) ] ,", + "type": "interline_equation", + "image_path": "11bed2c41516f97c0b74ab2c2d62f438bc2924db0fe43e1adcfa303325913ed1.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 147, + 275, + 463, + 295 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 300, + 505, + 389 + ], + "lines": [ + { + "bbox": [ + 106, + 300, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 133, + 313 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 301, + 148, + 312 + ], + "score": 0.89, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 300, + 269, + 313 + ], + "score": 1.0, + "content": "is the marginal distribution of", + "type": "text" + }, + { + "bbox": [ + 270, + 301, + 278, + 311 + ], + "score": 0.82, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 300, + 321, + 313 + ], + "score": 1.0, + "content": "when first", + "type": "text" + }, + { + "bbox": [ + 321, + 301, + 331, + 311 + ], + "score": 0.84, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 300, + 398, + 313 + ], + "score": 1.0, + "content": "is sampled from", + "type": "text" + }, + { + "bbox": [ + 398, + 301, + 413, + 312 + ], + "score": 0.88, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 300, + 451, + 313 + ], + "score": 1.0, + "content": "and then", + "type": "text" + }, + { + "bbox": [ + 451, + 302, + 459, + 311 + ], + "score": 0.81, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 300, + 505, + 313 + ], + "score": 1.0, + "content": "is sampled", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 311, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 129, + 325 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 129, + 312, + 165, + 324 + ], + "score": 0.92, + "content": "Q ( Z | X )", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 311, + 506, + 325 + ], + "score": 1.0, + "content": ", also known as the aggregated posterior Makhzani et al. (2016). Similarly to AVB,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 321, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 276, + 336 + ], + "score": 1.0, + "content": "there is no clear link to log-likelihood, as", + "type": "text" + }, + { + "bbox": [ + 276, + 323, + 343, + 334 + ], + "score": 0.91, + "content": "D _ { \\mathrm { A A E } } \\leq D _ { \\mathrm { A V B } }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 321, + 506, + 336 + ], + "score": 1.0, + "content": ". The authors of Makhzani et al. (2016)", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 333, + 504, + 346 + ], + "spans": [ + { + "bbox": [ + 104, + 333, + 187, + 346 + ], + "score": 1.0, + "content": "argue that matching", + "type": "text" + }, + { + "bbox": [ + 187, + 334, + 203, + 345 + ], + "score": 0.9, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 333, + 214, + 346 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 214, + 334, + 228, + 344 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 333, + 494, + 346 + ], + "score": 1.0, + "content": "in this way ensures that there are no “holes” left in the latent space", + "type": "text" + }, + { + "bbox": [ + 495, + 334, + 504, + 343 + ], + "score": 0.8, + "content": "\\mathcal { Z }", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 343, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 124, + 357 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 344, + 165, + 356 + ], + "score": 0.93, + "content": "P _ { G } ( X | Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 343, + 328, + 357 + ], + "score": 1.0, + "content": "generates reasonable samples whenever", + "type": "text" + }, + { + "bbox": [ + 329, + 344, + 364, + 355 + ], + "score": 0.91, + "content": "Z \\sim P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 343, + 506, + 357 + ], + "score": 1.0, + "content": ". They also report an equally good", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 354, + 506, + 368 + ], + "spans": [ + { + "bbox": [ + 104, + 354, + 347, + 368 + ], + "score": 1.0, + "content": "performance of different types of conditional distributions", + "type": "text" + }, + { + "bbox": [ + 347, + 356, + 383, + 367 + ], + "score": 0.93, + "content": "Q ( Z | X )", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 354, + 506, + 368 + ], + "score": 1.0, + "content": ", including Gaussians as used", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 366, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 210, + 379 + ], + "score": 1.0, + "content": "in VAEs, implicit models", + "type": "text" + }, + { + "bbox": [ + 210, + 367, + 223, + 378 + ], + "score": 0.9, + "content": "Q _ { e }", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 366, + 457, + 379 + ], + "score": 1.0, + "content": "as used in AVB, and deterministic encoder mappings, i.e.", + "type": "text" + }, + { + "bbox": [ + 457, + 366, + 505, + 378 + ], + "score": 0.91, + "content": "Q ( Z | X ) =", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 107, + 377, + 203, + 390 + ], + "spans": [ + { + "bbox": [ + 107, + 378, + 130, + 390 + ], + "score": 0.92, + "content": "\\delta _ { \\mu ( X ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 377, + 152, + 390 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 153, + 378, + 199, + 389 + ], + "score": 0.9, + "content": "\\mu \\colon \\mathcal X \\to \\mathcal Z", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 377, + 203, + 390 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 107, + 405, + 366, + 417 + ], + "lines": [ + { + "bbox": [ + 105, + 403, + 367, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 367, + 419 + ], + "score": 1.0, + "content": "B PROOF OF THEOREM 1 AND FURTHER DETAILS", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 429, + 505, + 486 + ], + "lines": [ + { + "bbox": [ + 106, + 428, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 455, + 443 + ], + "score": 1.0, + "content": "We will consider certain sets of joint probability distributions of three random variables", + "type": "text" + }, + { + "bbox": [ + 455, + 429, + 505, + 441 + ], + "score": 0.9, + "content": "( X , Y , Z ) \\in", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 107, + 441, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 107, + 441, + 159, + 451 + ], + "score": 0.91, + "content": "\\mathcal { X } \\times \\mathcal { X } \\times \\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 441, + 301, + 453 + ], + "score": 1.0, + "content": ". The reader may wish to think of", + "type": "text" + }, + { + "bbox": [ + 301, + 441, + 311, + 451 + ], + "score": 0.86, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 441, + 377, + 453 + ], + "score": 1.0, + "content": "as true images,", + "type": "text" + }, + { + "bbox": [ + 377, + 441, + 387, + 451 + ], + "score": 0.78, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 441, + 505, + 453 + ], + "score": 1.0, + "content": "as images sampled from the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 451, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 153, + 464 + ], + "score": 1.0, + "content": "model, and", + "type": "text" + }, + { + "bbox": [ + 153, + 452, + 162, + 461 + ], + "score": 0.82, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 451, + 281, + 464 + ], + "score": 1.0, + "content": "as latent codes. We denote by", + "type": "text" + }, + { + "bbox": [ + 281, + 452, + 329, + 464 + ], + "score": 0.92, + "content": "P _ { G , Z } ( Y , Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 451, + 474, + 464 + ], + "score": 1.0, + "content": "a joint distribution of a variable pair", + "type": "text" + }, + { + "bbox": [ + 475, + 452, + 501, + 464 + ], + "score": 0.91, + "content": "( Y , Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 451, + 505, + 464 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 462, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 133, + 474 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 463, + 142, + 473 + ], + "score": 0.81, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 462, + 228, + 474 + ], + "score": 1.0, + "content": "is first sampled from", + "type": "text" + }, + { + "bbox": [ + 228, + 463, + 242, + 474 + ], + "score": 0.88, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 462, + 279, + 474 + ], + "score": 1.0, + "content": "and next", + "type": "text" + }, + { + "bbox": [ + 280, + 464, + 289, + 473 + ], + "score": 0.73, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 462, + 312, + 474 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 312, + 463, + 352, + 474 + ], + "score": 0.92, + "content": "P _ { G } ( Y | Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 462, + 396, + 474 + ], + "score": 1.0, + "content": ". Note that", + "type": "text" + }, + { + "bbox": [ + 396, + 463, + 410, + 474 + ], + "score": 0.88, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 462, + 505, + 474 + ], + "score": 1.0, + "content": "defined in (3) and used", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 471, + 414, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 313, + 488 + ], + "score": 1.0, + "content": "throughout this work is the marginal distribution of", + "type": "text" + }, + { + "bbox": [ + 313, + 474, + 322, + 483 + ], + "score": 0.74, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 471, + 348, + 488 + ], + "score": 1.0, + "content": "when", + "type": "text" + }, + { + "bbox": [ + 348, + 474, + 409, + 486 + ], + "score": 0.91, + "content": "( Y , Z ) \\sim P _ { G , Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 471, + 414, + 488 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 490, + 505, + 546 + ], + "lines": [ + { + "bbox": [ + 105, + 490, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 379, + 503 + ], + "score": 1.0, + "content": "In the optimal transport problem (1), we consider joint distributions", + "type": "text" + }, + { + "bbox": [ + 379, + 490, + 415, + 502 + ], + "score": 0.93, + "content": "\\Gamma ( X , Y )", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 490, + 505, + 503 + ], + "score": 1.0, + "content": "which are called cou-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 501, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 210, + 515 + ], + "score": 1.0, + "content": "plings between values of", + "type": "text" + }, + { + "bbox": [ + 210, + 502, + 220, + 511 + ], + "score": 0.83, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 501, + 239, + 515 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 239, + 502, + 248, + 511 + ], + "score": 0.73, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 501, + 456, + 515 + ], + "score": 1.0, + "content": ". Because of the marginal constraint, we can write", + "type": "text" + }, + { + "bbox": [ + 456, + 501, + 505, + 513 + ], + "score": 0.9, + "content": "\\Gamma ( X , Y ) =", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 512, + 504, + 524 + ], + "spans": [ + { + "bbox": [ + 107, + 512, + 172, + 524 + ], + "score": 0.93, + "content": "\\bar { \\Gamma } ( \\bar { Y ( X ) } P _ { X } ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 512, + 257, + 524 + ], + "score": 1.0, + "content": "and we can consider", + "type": "text" + }, + { + "bbox": [ + 257, + 512, + 292, + 524 + ], + "score": 0.93, + "content": "\\Gamma ( Y | X )", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 512, + 443, + 524 + ], + "score": 1.0, + "content": "as a non-deterministic mapping from", + "type": "text" + }, + { + "bbox": [ + 443, + 513, + 453, + 522 + ], + "score": 0.81, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 512, + 465, + 524 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 465, + 513, + 474, + 522 + ], + "score": 0.77, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 512, + 504, + 524 + ], + "score": 1.0, + "content": ". Theo-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 523, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 304, + 536 + ], + "score": 1.0, + "content": "rem 1. shows how to factor this mapping through", + "type": "text" + }, + { + "bbox": [ + 304, + 524, + 313, + 533 + ], + "score": 0.79, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 523, + 505, + 536 + ], + "score": 1.0, + "content": ", i.e., decompose it into an encoding distribution", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 107, + 533, + 313, + 548 + ], + "spans": [ + { + "bbox": [ + 107, + 534, + 142, + 546 + ], + "score": 0.92, + "content": "Q ( Z | X )", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 533, + 268, + 548 + ], + "score": 1.0, + "content": "and the generating distribution", + "type": "text" + }, + { + "bbox": [ + 268, + 534, + 308, + 546 + ], + "score": 0.93, + "content": "P _ { G } ( Y | Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 533, + 313, + 548 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 550, + 505, + 640 + ], + "lines": [ + { + "bbox": [ + 105, + 550, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 182, + 564 + ], + "score": 1.0, + "content": "As in Section 2.2,", + "type": "text" + }, + { + "bbox": [ + 183, + 551, + 278, + 563 + ], + "score": 0.9, + "content": "\\mathcal { P } ( X \\sim P _ { X } , Y \\sim P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 550, + 453, + 564 + ], + "score": 1.0, + "content": "denotes the set of all joint distributions of", + "type": "text" + }, + { + "bbox": [ + 454, + 551, + 483, + 563 + ], + "score": 0.92, + "content": "( X , Y )", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 550, + 506, + 564 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 561, + 506, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 149, + 575 + ], + "score": 1.0, + "content": "marginals", + "type": "text" + }, + { + "bbox": [ + 149, + 563, + 181, + 573 + ], + "score": 0.91, + "content": "P _ { X } , P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 561, + 256, + 575 + ], + "score": 1.0, + "content": ", and likewise for", + "type": "text" + }, + { + "bbox": [ + 256, + 562, + 353, + 573 + ], + "score": 0.9, + "content": "\\mathcal { P } ( X \\sim P _ { X } , Z \\sim P _ { Z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 561, + 506, + 575 + ], + "score": 1.0, + "content": ". The set of all joint distributions of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 572, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 107, + 573, + 146, + 585 + ], + "score": 0.92, + "content": "( X , Y , Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 572, + 186, + 586 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 186, + 573, + 223, + 584 + ], + "score": 0.84, + "content": "X \\sim P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 572, + 227, + 586 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 228, + 574, + 289, + 585 + ], + "score": 0.81, + "content": "( Y , Z ) \\sim P _ { G , Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 572, + 309, + 586 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 310, + 574, + 360, + 585 + ], + "score": 0.88, + "content": "( Y \\perp \\perp X ) | Z", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 572, + 437, + 586 + ], + "score": 1.0, + "content": "will be denoted by", + "type": "text" + }, + { + "bbox": [ + 437, + 573, + 469, + 585 + ], + "score": 0.9, + "content": "{ \\mathcal { P } } _ { X , Y , Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 572, + 505, + 586 + ], + "score": 1.0, + "content": ". Finally,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 583, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 164, + 597 + ], + "score": 1.0, + "content": "we denote by", + "type": "text" + }, + { + "bbox": [ + 164, + 585, + 188, + 596 + ], + "score": 0.92, + "content": "\\mathcal { P } _ { X , Y }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 583, + 207, + 597 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 207, + 585, + 231, + 596 + ], + "score": 0.9, + "content": "\\mathcal { P } _ { X , Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 583, + 333, + 597 + ], + "score": 1.0, + "content": "the sets of marginals on", + "type": "text" + }, + { + "bbox": [ + 334, + 585, + 362, + 596 + ], + "score": 0.9, + "content": "( X , Y )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 583, + 383, + 597 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 383, + 584, + 411, + 596 + ], + "score": 0.93, + "content": "( X , Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 583, + 506, + 597 + ], + "score": 1.0, + "content": "(respectively) induced", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 594, + 507, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 185, + 609 + ], + "score": 1.0, + "content": "by distributions in", + "type": "text" + }, + { + "bbox": [ + 185, + 596, + 216, + 607 + ], + "score": 0.91, + "content": "{ \\mathcal { P } } _ { X , Y , Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 594, + 267, + 609 + ], + "score": 1.0, + "content": ". Note that", + "type": "text" + }, + { + "bbox": [ + 267, + 595, + 315, + 607 + ], + "score": 0.78, + "content": "\\mathcal { P } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 594, + 320, + 609 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 320, + 596, + 351, + 607 + ], + "score": 0.8, + "content": "{ \\mathcal { P } } _ { X , Y , Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 594, + 375, + 609 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 375, + 596, + 399, + 607 + ], + "score": 0.9, + "content": "\\mathcal { P } _ { X , Y }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 594, + 507, + 609 + ], + "score": 1.0, + "content": "depend on the choice of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 605, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 104, + 605, + 207, + 619 + ], + "score": 1.0, + "content": "conditional distributions", + "type": "text" + }, + { + "bbox": [ + 207, + 606, + 247, + 618 + ], + "score": 0.93, + "content": "P _ { G } ( Y | Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 605, + 276, + 619 + ], + "score": 1.0, + "content": ", while", + "type": "text" + }, + { + "bbox": [ + 277, + 607, + 300, + 618 + ], + "score": 0.89, + "content": "\\mathcal { P } _ { X , Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 605, + 469, + 619 + ], + "score": 1.0, + "content": "does not. In fact, it is easy to check that", + "type": "text" + }, + { + "bbox": [ + 469, + 606, + 505, + 618 + ], + "score": 0.91, + "content": "\\mathcal { P } _ { X , Z } =", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 107, + 616, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 107, + 617, + 197, + 629 + ], + "score": 0.9, + "content": "\\mathcal { P } ( X \\sim P _ { X } , Z \\sim P _ { Z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 616, + 338, + 630 + ], + "score": 1.0, + "content": ". From the definitions it is clear that", + "type": "text" + }, + { + "bbox": [ + 338, + 617, + 422, + 629 + ], + "score": 0.93, + "content": "\\mathcal { P } _ { X , Y } \\subseteq \\mathcal { P } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 616, + 505, + 630 + ], + "score": 1.0, + "content": "and we immediately", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 628, + 232, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 232, + 641 + ], + "score": 1.0, + "content": "get the following upper bound:", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37.5 + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 644, + 435, + 666 + ], + "lines": [ + { + "bbox": [ + 176, + 644, + 435, + 666 + ], + "spans": [ + { + "bbox": [ + 176, + 644, + 435, + 666 + ], + "score": 0.92, + "content": "W _ { c } ( P _ { X } , P _ { G } ) \\leq W _ { c } ^ { \\dagger } ( P _ { X } , P _ { G } ) : = \\operatorname* { i n f } _ { P \\in \\mathcal { P } _ { X , Y } } \\mathbb { E } _ { ( X , Y ) \\sim P } \\left[ c ( X , Y ) \\right] .", + "type": "interline_equation", + "image_path": "766228ca76f59ab0764a694e387d78f86a68c940c93d4443b7b327b70efb8a9e.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 176, + 644, + 435, + 666 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 670, + 460, + 684 + ], + "lines": [ + { + "bbox": [ + 104, + 669, + 461, + 685 + ], + "spans": [ + { + "bbox": [ + 104, + 669, + 115, + 685 + ], + "score": 1.0, + "content": "If", + "type": "text" + }, + { + "bbox": [ + 116, + 671, + 156, + 683 + ], + "score": 0.92, + "content": "P _ { G } ( Y | Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 669, + 256, + 685 + ], + "score": 1.0, + "content": "are Dirac measures (i.e.,", + "type": "text" + }, + { + "bbox": [ + 257, + 671, + 305, + 683 + ], + "score": 0.9, + "content": "Y = G ( Z ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 669, + 372, + 685 + ], + "score": 1.0, + "content": ", it turns out that", + "type": "text" + }, + { + "bbox": [ + 373, + 671, + 456, + 684 + ], + "score": 0.92, + "content": "\\mathcal { P } _ { X , Y } = \\mathcal { P } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 669, + 461, + 685 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 690, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 118, + 689, + 506, + 704 + ], + "spans": [ + { + "bbox": [ + 118, + 689, + 339, + 704 + ], + "score": 1.0, + "content": "5The authors of AVB Mescheder et al. (2017) note that using", + "type": "text" + }, + { + "bbox": [ + 340, + 692, + 346, + 702 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 689, + 506, + 704 + ], + "score": 1.0, + "content": "-GAN as described above actually results in", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 700, + 503, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 492, + 713 + ], + "score": 1.0, + "content": "“unstable training”. Instead, following the approach of Poole et al. (2016), they use a trained discriminator", + "type": "text" + }, + { + "bbox": [ + 492, + 703, + 503, + 710 + ], + "score": 0.88, + "content": "T ^ { * }", + "type": "inline_equation" + } + ] + }, + { + "bbox": [ + 105, + 710, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 174, + 724 + ], + "score": 1.0, + "content": "resulting from the", + "type": "text" + }, + { + "bbox": [ + 174, + 712, + 199, + 721 + ], + "score": 0.82, + "content": "D _ { \\mathrm { G A N } }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 710, + 506, + 724 + ], + "score": 1.0, + "content": "objective (5) to approximate the ratio of densities and then directly estimate the KL", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 720, + 239, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 147, + 734 + ], + "score": 1.0, + "content": "divergence", + "type": "text" + }, + { + "bbox": [ + 148, + 721, + 235, + 733 + ], + "score": 0.95, + "content": "\\textstyle { \\int f { \\bigl ( } p ( x ) / q ( x ) { \\bigr ) } } { \\dot { q } } ( x ) d x", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 720, + 239, + 734 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 505, + 129 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 334, + 95 + ], + "score": 1.0, + "content": "implicitly defines one particular conditional distribution", + "type": "text" + }, + { + "bbox": [ + 334, + 82, + 394, + 95 + ], + "score": 0.94, + "content": "Q _ { e } ( Z | X = x )", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 82, + 452, + 95 + ], + "score": 1.0, + "content": ". AVB allows", + "type": "text" + }, + { + "bbox": [ + 452, + 83, + 461, + 93 + ], + "score": 0.82, + "content": "\\mathcal { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "to contain", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 92, + 503, + 108 + ], + "spans": [ + { + "bbox": [ + 104, + 92, + 289, + 108 + ], + "score": 1.0, + "content": "all such distributions for different choices of", + "type": "text" + }, + { + "bbox": [ + 290, + 97, + 295, + 104 + ], + "score": 0.7, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 92, + 417, + 108 + ], + "score": 1.0, + "content": ", replaces the intractable term", + "type": "text" + }, + { + "bbox": [ + 417, + 93, + 503, + 108 + ], + "score": 0.91, + "content": "D _ { \\mathrm { K L } } \\big ( Q _ { e } ( Z | X ) , P _ { Z } \\big )", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 265, + 119 + ], + "score": 1.0, + "content": "in (6) by the adversarial approximation", + "type": "text" + }, + { + "bbox": [ + 266, + 106, + 299, + 118 + ], + "score": 0.68, + "content": "D _ { \\mathrm { f , G A N } }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 105, + 506, + 119 + ], + "score": 1.0, + "content": "corresponding to the KL-divergence, and proposes", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 118, + 160, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 118, + 160, + 129 + ], + "score": 1.0, + "content": "to minimize5", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 104, + 82, + 506, + 129 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 115, + 133, + 483, + 154 + ], + "lines": [ + { + "bbox": [ + 115, + 133, + 483, + 154 + ], + "spans": [ + { + "bbox": [ + 115, + 133, + 483, + 154 + ], + "score": 0.91, + "content": "D _ { \\mathrm { A V B } } ( P _ { X } , P _ { G } ) = \\operatorname* { i n f } _ { Q _ { \\epsilon } ( Z | X ) \\in \\mathcal { Q } } \\mathbb { E } _ { P _ { X } } \\left[ D _ { \\mathrm { f } , \\operatorname { G A N } } \\big ( Q _ { e } ( Z | X ) , P _ { Z } \\big ) - \\mathbb { E } _ { Q _ { \\epsilon } ( Z | X ) } [ \\log p _ { G } ( X | Z ) ] \\right] .", + "type": "interline_equation", + "image_path": "234379459d36ea6a3949d78f6e2e2e101d53bbec5ea6e1e381a3f7e12fbfbb4f.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 115, + 133, + 483, + 154 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 164, + 505, + 243 + ], + "lines": [ + { + "bbox": [ + 106, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 124, + 178 + ], + "score": 1.0, + "content": "The", + "type": "text" + }, + { + "bbox": [ + 124, + 166, + 145, + 177 + ], + "score": 0.9, + "content": "D _ { \\mathrm { K L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "term in (6) may be viewed as a regularizer. Indeed, VAE reduces to the classical unregular-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 176, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 188 + ], + "score": 1.0, + "content": "ized auto-encoder if this term is dropped, minimizing the reconstruction cost of the encoder-decoder", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 126, + 200 + ], + "score": 1.0, + "content": "pair", + "type": "text" + }, + { + "bbox": [ + 126, + 187, + 206, + 199 + ], + "score": 0.9, + "content": "Q ( Z | X ) , P _ { G } ( X | Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 187, + 506, + 200 + ], + "score": 1.0, + "content": ". This often results in different training points being encoded into non-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 325, + 210 + ], + "score": 1.0, + "content": "overlapping zones chaotically scattered all across the", + "type": "text" + }, + { + "bbox": [ + 325, + 199, + 334, + 208 + ], + "score": 0.79, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "space with “holes” in between where the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 179, + 222 + ], + "score": 1.0, + "content": "decoder mapping", + "type": "text" + }, + { + "bbox": [ + 180, + 209, + 221, + 221 + ], + "score": 0.93, + "content": "P _ { G } ( X | Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 209, + 408, + 222 + ], + "score": 1.0, + "content": "has never been trained. Overall, the encoder", + "type": "text" + }, + { + "bbox": [ + 408, + 209, + 444, + 221 + ], + "score": 0.92, + "content": "Q ( Z | X )", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 209, + 506, + 222 + ], + "score": 1.0, + "content": "trained in this", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 220, + 506, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 436, + 234 + ], + "score": 1.0, + "content": "way does not provide a useful representation and sampling from the latent space", + "type": "text" + }, + { + "bbox": [ + 436, + 222, + 445, + 230 + ], + "score": 0.83, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 220, + 506, + 234 + ], + "score": 1.0, + "content": "becomes hard", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 231, + 192, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 192, + 244 + ], + "score": 1.0, + "content": "Bengio et al. (2013).", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 165, + 506, + 244 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 247, + 504, + 270 + ], + "lines": [ + { + "bbox": [ + 106, + 247, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 247, + 387, + 260 + ], + "score": 1.0, + "content": "Adversarial auto-encoders (AAE) Makhzani et al. (2016) replace the", + "type": "text" + }, + { + "bbox": [ + 387, + 249, + 408, + 259 + ], + "score": 0.91, + "content": "D _ { \\mathrm { K L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 247, + 505, + 260 + ], + "score": 1.0, + "content": "term in (6) with another", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 258, + 156, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 156, + 272 + ], + "score": 1.0, + "content": "regularizer:", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 247, + 505, + 272 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 147, + 275, + 463, + 295 + ], + "lines": [ + { + "bbox": [ + 147, + 275, + 463, + 295 + ], + "spans": [ + { + "bbox": [ + 147, + 275, + 463, + 295 + ], + "score": 0.92, + "content": "D _ { \\mathrm { A A E } } ( P _ { X } , P _ { G } ) = \\operatorname* { i n f } _ { Q ( Z | X ) \\in Q } D _ { \\mathrm { G A N } } ( Q _ { Z } , P _ { Z } ) - \\mathbb { E } _ { P _ { X } } \\mathbb { E } _ { Q ( Z | X ) } [ \\log p _ { G } ( X | Z ) ] ,", + "type": "interline_equation", + "image_path": "11bed2c41516f97c0b74ab2c2d62f438bc2924db0fe43e1adcfa303325913ed1.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 147, + 275, + 463, + 295 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 300, + 505, + 389 + ], + "lines": [ + { + "bbox": [ + 106, + 300, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 133, + 313 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 301, + 148, + 312 + ], + "score": 0.89, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 300, + 269, + 313 + ], + "score": 1.0, + "content": "is the marginal distribution of", + "type": "text" + }, + { + "bbox": [ + 270, + 301, + 278, + 311 + ], + "score": 0.82, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 300, + 321, + 313 + ], + "score": 1.0, + "content": "when first", + "type": "text" + }, + { + "bbox": [ + 321, + 301, + 331, + 311 + ], + "score": 0.84, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 300, + 398, + 313 + ], + "score": 1.0, + "content": "is sampled from", + "type": "text" + }, + { + "bbox": [ + 398, + 301, + 413, + 312 + ], + "score": 0.88, + "content": "P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 300, + 451, + 313 + ], + "score": 1.0, + "content": "and then", + "type": "text" + }, + { + "bbox": [ + 451, + 302, + 459, + 311 + ], + "score": 0.81, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 300, + 505, + 313 + ], + "score": 1.0, + "content": "is sampled", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 311, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 129, + 325 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 129, + 312, + 165, + 324 + ], + "score": 0.92, + "content": "Q ( Z | X )", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 311, + 506, + 325 + ], + "score": 1.0, + "content": ", also known as the aggregated posterior Makhzani et al. (2016). Similarly to AVB,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 321, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 276, + 336 + ], + "score": 1.0, + "content": "there is no clear link to log-likelihood, as", + "type": "text" + }, + { + "bbox": [ + 276, + 323, + 343, + 334 + ], + "score": 0.91, + "content": "D _ { \\mathrm { A A E } } \\leq D _ { \\mathrm { A V B } }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 321, + 506, + 336 + ], + "score": 1.0, + "content": ". The authors of Makhzani et al. (2016)", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 333, + 504, + 346 + ], + "spans": [ + { + "bbox": [ + 104, + 333, + 187, + 346 + ], + "score": 1.0, + "content": "argue that matching", + "type": "text" + }, + { + "bbox": [ + 187, + 334, + 203, + 345 + ], + "score": 0.9, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 333, + 214, + 346 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 214, + 334, + 228, + 344 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 333, + 494, + 346 + ], + "score": 1.0, + "content": "in this way ensures that there are no “holes” left in the latent space", + "type": "text" + }, + { + "bbox": [ + 495, + 334, + 504, + 343 + ], + "score": 0.8, + "content": "\\mathcal { Z }", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 343, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 124, + 357 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 344, + 165, + 356 + ], + "score": 0.93, + "content": "P _ { G } ( X | Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 343, + 328, + 357 + ], + "score": 1.0, + "content": "generates reasonable samples whenever", + "type": "text" + }, + { + "bbox": [ + 329, + 344, + 364, + 355 + ], + "score": 0.91, + "content": "Z \\sim P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 343, + 506, + 357 + ], + "score": 1.0, + "content": ". They also report an equally good", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 354, + 506, + 368 + ], + "spans": [ + { + "bbox": [ + 104, + 354, + 347, + 368 + ], + "score": 1.0, + "content": "performance of different types of conditional distributions", + "type": "text" + }, + { + "bbox": [ + 347, + 356, + 383, + 367 + ], + "score": 0.93, + "content": "Q ( Z | X )", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 354, + 506, + 368 + ], + "score": 1.0, + "content": ", including Gaussians as used", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 366, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 210, + 379 + ], + "score": 1.0, + "content": "in VAEs, implicit models", + "type": "text" + }, + { + "bbox": [ + 210, + 367, + 223, + 378 + ], + "score": 0.9, + "content": "Q _ { e }", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 366, + 457, + 379 + ], + "score": 1.0, + "content": "as used in AVB, and deterministic encoder mappings, i.e.", + "type": "text" + }, + { + "bbox": [ + 457, + 366, + 505, + 378 + ], + "score": 0.91, + "content": "Q ( Z | X ) =", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 107, + 377, + 203, + 390 + ], + "spans": [ + { + "bbox": [ + 107, + 378, + 130, + 390 + ], + "score": 0.92, + "content": "\\delta _ { \\mu ( X ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 377, + 152, + 390 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 153, + 378, + 199, + 389 + ], + "score": 0.9, + "content": "\\mu \\colon \\mathcal X \\to \\mathcal Z", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 377, + 203, + 390 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18.5, + "bbox_fs": [ + 104, + 300, + 506, + 390 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 405, + 366, + 417 + ], + "lines": [ + { + "bbox": [ + 105, + 403, + 367, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 367, + 419 + ], + "score": 1.0, + "content": "B PROOF OF THEOREM 1 AND FURTHER DETAILS", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 429, + 505, + 486 + ], + "lines": [ + { + "bbox": [ + 106, + 428, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 455, + 443 + ], + "score": 1.0, + "content": "We will consider certain sets of joint probability distributions of three random variables", + "type": "text" + }, + { + "bbox": [ + 455, + 429, + 505, + 441 + ], + "score": 0.9, + "content": "( X , Y , Z ) \\in", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 107, + 441, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 107, + 441, + 159, + 451 + ], + "score": 0.91, + "content": "\\mathcal { X } \\times \\mathcal { X } \\times \\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 441, + 301, + 453 + ], + "score": 1.0, + "content": ". The reader may wish to think of", + "type": "text" + }, + { + "bbox": [ + 301, + 441, + 311, + 451 + ], + "score": 0.86, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 441, + 377, + 453 + ], + "score": 1.0, + "content": "as true images,", + "type": "text" + }, + { + "bbox": [ + 377, + 441, + 387, + 451 + ], + "score": 0.78, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 441, + 505, + 453 + ], + "score": 1.0, + "content": "as images sampled from the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 451, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 153, + 464 + ], + "score": 1.0, + "content": "model, and", + "type": "text" + }, + { + "bbox": [ + 153, + 452, + 162, + 461 + ], + "score": 0.82, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 451, + 281, + 464 + ], + "score": 1.0, + "content": "as latent codes. We denote by", + "type": "text" + }, + { + "bbox": [ + 281, + 452, + 329, + 464 + ], + "score": 0.92, + "content": "P _ { G , Z } ( Y , Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 451, + 474, + 464 + ], + "score": 1.0, + "content": "a joint distribution of a variable pair", + "type": "text" + }, + { + "bbox": [ + 475, + 452, + 501, + 464 + ], + "score": 0.91, + "content": "( Y , Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 451, + 505, + 464 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 462, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 133, + 474 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 463, + 142, + 473 + ], + "score": 0.81, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 462, + 228, + 474 + ], + "score": 1.0, + "content": "is first sampled from", + "type": "text" + }, + { + "bbox": [ + 228, + 463, + 242, + 474 + ], + "score": 0.88, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 462, + 279, + 474 + ], + "score": 1.0, + "content": "and next", + "type": "text" + }, + { + "bbox": [ + 280, + 464, + 289, + 473 + ], + "score": 0.73, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 462, + 312, + 474 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 312, + 463, + 352, + 474 + ], + "score": 0.92, + "content": "P _ { G } ( Y | Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 462, + 396, + 474 + ], + "score": 1.0, + "content": ". Note that", + "type": "text" + }, + { + "bbox": [ + 396, + 463, + 410, + 474 + ], + "score": 0.88, + "content": "P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 462, + 505, + 474 + ], + "score": 1.0, + "content": "defined in (3) and used", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 471, + 414, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 313, + 488 + ], + "score": 1.0, + "content": "throughout this work is the marginal distribution of", + "type": "text" + }, + { + "bbox": [ + 313, + 474, + 322, + 483 + ], + "score": 0.74, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 471, + 348, + 488 + ], + "score": 1.0, + "content": "when", + "type": "text" + }, + { + "bbox": [ + 348, + 474, + 409, + 486 + ], + "score": 0.91, + "content": "( Y , Z ) \\sim P _ { G , Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 471, + 414, + 488 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 428, + 505, + 488 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 490, + 505, + 546 + ], + "lines": [ + { + "bbox": [ + 105, + 490, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 379, + 503 + ], + "score": 1.0, + "content": "In the optimal transport problem (1), we consider joint distributions", + "type": "text" + }, + { + "bbox": [ + 379, + 490, + 415, + 502 + ], + "score": 0.93, + "content": "\\Gamma ( X , Y )", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 490, + 505, + 503 + ], + "score": 1.0, + "content": "which are called cou-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 501, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 210, + 515 + ], + "score": 1.0, + "content": "plings between values of", + "type": "text" + }, + { + "bbox": [ + 210, + 502, + 220, + 511 + ], + "score": 0.83, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 501, + 239, + 515 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 239, + 502, + 248, + 511 + ], + "score": 0.73, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 501, + 456, + 515 + ], + "score": 1.0, + "content": ". Because of the marginal constraint, we can write", + "type": "text" + }, + { + "bbox": [ + 456, + 501, + 505, + 513 + ], + "score": 0.9, + "content": "\\Gamma ( X , Y ) =", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 512, + 504, + 524 + ], + "spans": [ + { + "bbox": [ + 107, + 512, + 172, + 524 + ], + "score": 0.93, + "content": "\\bar { \\Gamma } ( \\bar { Y ( X ) } P _ { X } ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 512, + 257, + 524 + ], + "score": 1.0, + "content": "and we can consider", + "type": "text" + }, + { + "bbox": [ + 257, + 512, + 292, + 524 + ], + "score": 0.93, + "content": "\\Gamma ( Y | X )", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 512, + 443, + 524 + ], + "score": 1.0, + "content": "as a non-deterministic mapping from", + "type": "text" + }, + { + "bbox": [ + 443, + 513, + 453, + 522 + ], + "score": 0.81, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 512, + 465, + 524 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 465, + 513, + 474, + 522 + ], + "score": 0.77, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 512, + 504, + 524 + ], + "score": 1.0, + "content": ". Theo-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 523, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 304, + 536 + ], + "score": 1.0, + "content": "rem 1. shows how to factor this mapping through", + "type": "text" + }, + { + "bbox": [ + 304, + 524, + 313, + 533 + ], + "score": 0.79, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 523, + 505, + 536 + ], + "score": 1.0, + "content": ", i.e., decompose it into an encoding distribution", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 107, + 533, + 313, + 548 + ], + "spans": [ + { + "bbox": [ + 107, + 534, + 142, + 546 + ], + "score": 0.92, + "content": "Q ( Z | X )", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 533, + 268, + 548 + ], + "score": 1.0, + "content": "and the generating distribution", + "type": "text" + }, + { + "bbox": [ + 268, + 534, + 308, + 546 + ], + "score": 0.93, + "content": "P _ { G } ( Y | Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 533, + 313, + 548 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 490, + 505, + 548 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 550, + 505, + 640 + ], + "lines": [ + { + "bbox": [ + 105, + 550, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 182, + 564 + ], + "score": 1.0, + "content": "As in Section 2.2,", + "type": "text" + }, + { + "bbox": [ + 183, + 551, + 278, + 563 + ], + "score": 0.9, + "content": "\\mathcal { P } ( X \\sim P _ { X } , Y \\sim P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 550, + 453, + 564 + ], + "score": 1.0, + "content": "denotes the set of all joint distributions of", + "type": "text" + }, + { + "bbox": [ + 454, + 551, + 483, + 563 + ], + "score": 0.92, + "content": "( X , Y )", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 550, + 506, + 564 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 561, + 506, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 149, + 575 + ], + "score": 1.0, + "content": "marginals", + "type": "text" + }, + { + "bbox": [ + 149, + 563, + 181, + 573 + ], + "score": 0.91, + "content": "P _ { X } , P _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 561, + 256, + 575 + ], + "score": 1.0, + "content": ", and likewise for", + "type": "text" + }, + { + "bbox": [ + 256, + 562, + 353, + 573 + ], + "score": 0.9, + "content": "\\mathcal { P } ( X \\sim P _ { X } , Z \\sim P _ { Z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 561, + 506, + 575 + ], + "score": 1.0, + "content": ". The set of all joint distributions of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 572, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 107, + 573, + 146, + 585 + ], + "score": 0.92, + "content": "( X , Y , Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 572, + 186, + 586 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 186, + 573, + 223, + 584 + ], + "score": 0.84, + "content": "X \\sim P _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 572, + 227, + 586 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 228, + 574, + 289, + 585 + ], + "score": 0.81, + "content": "( Y , Z ) \\sim P _ { G , Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 572, + 309, + 586 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 310, + 574, + 360, + 585 + ], + "score": 0.88, + "content": "( Y \\perp \\perp X ) | Z", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 572, + 437, + 586 + ], + "score": 1.0, + "content": "will be denoted by", + "type": "text" + }, + { + "bbox": [ + 437, + 573, + 469, + 585 + ], + "score": 0.9, + "content": "{ \\mathcal { P } } _ { X , Y , Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 572, + 505, + 586 + ], + "score": 1.0, + "content": ". Finally,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 583, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 164, + 597 + ], + "score": 1.0, + "content": "we denote by", + "type": "text" + }, + { + "bbox": [ + 164, + 585, + 188, + 596 + ], + "score": 0.92, + "content": "\\mathcal { P } _ { X , Y }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 583, + 207, + 597 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 207, + 585, + 231, + 596 + ], + "score": 0.9, + "content": "\\mathcal { P } _ { X , Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 583, + 333, + 597 + ], + "score": 1.0, + "content": "the sets of marginals on", + "type": "text" + }, + { + "bbox": [ + 334, + 585, + 362, + 596 + ], + "score": 0.9, + "content": "( X , Y )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 583, + 383, + 597 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 383, + 584, + 411, + 596 + ], + "score": 0.93, + "content": "( X , Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 583, + 506, + 597 + ], + "score": 1.0, + "content": "(respectively) induced", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 594, + 507, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 185, + 609 + ], + "score": 1.0, + "content": "by distributions in", + "type": "text" + }, + { + "bbox": [ + 185, + 596, + 216, + 607 + ], + "score": 0.91, + "content": "{ \\mathcal { P } } _ { X , Y , Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 594, + 267, + 609 + ], + "score": 1.0, + "content": ". Note that", + "type": "text" + }, + { + "bbox": [ + 267, + 595, + 315, + 607 + ], + "score": 0.78, + "content": "\\mathcal { P } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 594, + 320, + 609 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 320, + 596, + 351, + 607 + ], + "score": 0.8, + "content": "{ \\mathcal { P } } _ { X , Y , Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 594, + 375, + 609 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 375, + 596, + 399, + 607 + ], + "score": 0.9, + "content": "\\mathcal { P } _ { X , Y }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 594, + 507, + 609 + ], + "score": 1.0, + "content": "depend on the choice of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 605, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 104, + 605, + 207, + 619 + ], + "score": 1.0, + "content": "conditional distributions", + "type": "text" + }, + { + "bbox": [ + 207, + 606, + 247, + 618 + ], + "score": 0.93, + "content": "P _ { G } ( Y | Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 605, + 276, + 619 + ], + "score": 1.0, + "content": ", while", + "type": "text" + }, + { + "bbox": [ + 277, + 607, + 300, + 618 + ], + "score": 0.89, + "content": "\\mathcal { P } _ { X , Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 605, + 469, + 619 + ], + "score": 1.0, + "content": "does not. In fact, it is easy to check that", + "type": "text" + }, + { + "bbox": [ + 469, + 606, + 505, + 618 + ], + "score": 0.91, + "content": "\\mathcal { P } _ { X , Z } =", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 107, + 616, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 107, + 617, + 197, + 629 + ], + "score": 0.9, + "content": "\\mathcal { P } ( X \\sim P _ { X } , Z \\sim P _ { Z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 616, + 338, + 630 + ], + "score": 1.0, + "content": ". From the definitions it is clear that", + "type": "text" + }, + { + "bbox": [ + 338, + 617, + 422, + 629 + ], + "score": 0.93, + "content": "\\mathcal { P } _ { X , Y } \\subseteq \\mathcal { P } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 616, + 505, + 630 + ], + "score": 1.0, + "content": "and we immediately", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 628, + 232, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 232, + 641 + ], + "score": 1.0, + "content": "get the following upper bound:", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37.5, + "bbox_fs": [ + 104, + 550, + 507, + 641 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 644, + 435, + 666 + ], + "lines": [ + { + "bbox": [ + 176, + 644, + 435, + 666 + ], + "spans": [ + { + "bbox": [ + 176, + 644, + 435, + 666 + ], + "score": 0.92, + "content": "W _ { c } ( P _ { X } , P _ { G } ) \\leq W _ { c } ^ { \\dagger } ( P _ { X } , P _ { G } ) : = \\operatorname* { i n f } _ { P \\in \\mathcal { P } _ { X , Y } } \\mathbb { E } _ { ( X , Y ) \\sim P } \\left[ c ( X , Y ) \\right] .", + "type": "interline_equation", + "image_path": "766228ca76f59ab0764a694e387d78f86a68c940c93d4443b7b327b70efb8a9e.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 176, + 644, + 435, + 666 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 670, + 460, + 684 + ], + "lines": [ + { + "bbox": [ + 104, + 669, + 461, + 685 + ], + "spans": [ + { + "bbox": [ + 104, + 669, + 115, + 685 + ], + "score": 1.0, + "content": "If", + "type": "text" + }, + { + "bbox": [ + 116, + 671, + 156, + 683 + ], + "score": 0.92, + "content": "P _ { G } ( Y | Z )", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 669, + 256, + 685 + ], + "score": 1.0, + "content": "are Dirac measures (i.e.,", + "type": "text" + }, + { + "bbox": [ + 257, + 671, + 305, + 683 + ], + "score": 0.9, + "content": "Y = G ( Z ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 669, + 372, + 685 + ], + "score": 1.0, + "content": ", it turns out that", + "type": "text" + }, + { + "bbox": [ + 373, + 671, + 456, + 684 + ], + "score": 0.92, + "content": "\\mathcal { P } _ { X , Y } = \\mathcal { P } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 669, + 461, + 685 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43, + "bbox_fs": [ + 104, + 669, + 461, + 685 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 460, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 461, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 151, + 96 + ], + "score": 1.0, + "content": "Lemma 1", + "type": "text" + }, + { + "bbox": [ + 151, + 82, + 236, + 95 + ], + "score": 0.94, + "content": "\\mathcal { P } _ { X , Y } \\subseteq \\mathcal { P } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 81, + 290, + 96 + ], + "score": 1.0, + "content": "with identity", + "type": "text" + }, + { + "bbox": [ + 290, + 82, + 361, + 95 + ], + "score": 0.92, + "content": "i f ^ { 6 } ~ P _ { G } ( Y | Z = z )", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 81, + 431, + 96 + ], + "score": 1.0, + "content": "are Dirac for all", + "type": "text" + }, + { + "bbox": [ + 431, + 83, + 457, + 93 + ], + "score": 0.88, + "content": "z \\in { \\mathcal { Z } }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 81, + 461, + 96 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 401, + 116 + ], + "score": 1.0, + "content": "Proof The first assertion is obvious. To prove the identity, note that when", + "type": "text" + }, + { + "bbox": [ + 401, + 104, + 410, + 113 + ], + "score": 0.8, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 102, + 505, + 116 + ], + "score": 1.0, + "content": "is a deterministic func-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 504, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 135, + 128 + ], + "score": 1.0, + "content": "tion of", + "type": "text" + }, + { + "bbox": [ + 136, + 115, + 144, + 124 + ], + "score": 0.82, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 114, + 178, + 128 + ], + "score": 1.0, + "content": ", for any", + "type": "text" + }, + { + "bbox": [ + 178, + 114, + 187, + 124 + ], + "score": 0.76, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 114, + 318, + 128 + ], + "score": 1.0, + "content": "in the sigma-algebra induced by", + "type": "text" + }, + { + "bbox": [ + 318, + 114, + 328, + 124 + ], + "score": 0.78, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 114, + 365, + 128 + ], + "score": 1.0, + "content": "we have", + "type": "text" + }, + { + "bbox": [ + 365, + 114, + 501, + 127 + ], + "score": 0.88, + "content": "\\mathbb { E } \\left[ \\mathbb { 1 } _ { [ Y \\in A ] } | X , Z \\right] = \\mathbb { E } \\left[ \\mathbb { 1 } _ { [ Y \\in A ] } | Z \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 114, + 504, + 128 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 126, + 503, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 159, + 139 + ], + "score": 1.0, + "content": "This implies", + "type": "text" + }, + { + "bbox": [ + 159, + 126, + 209, + 138 + ], + "score": 0.94, + "content": "( Y \\perp \\perp X ) | Z", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 126, + 311, + 139 + ], + "score": 1.0, + "content": "and concludes the proof.", + "type": "text" + }, + { + "bbox": [ + 498, + 128, + 503, + 136 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 159, + 389, + 172 + ], + "lines": [ + { + "bbox": [ + 106, + 159, + 389, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 389, + 173 + ], + "score": 1.0, + "content": "We are now in place to prove Theorem 1. Lemma 1 obviously leads to", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 176, + 367, + 191 + ], + "lines": [ + { + "bbox": [ + 243, + 176, + 367, + 191 + ], + "spans": [ + { + "bbox": [ + 243, + 176, + 367, + 191 + ], + "score": 0.92, + "content": "W _ { c } ( P _ { X } , P _ { G } ) = W _ { c } ^ { \\dagger } ( P _ { X } , P _ { G } ) .", + "type": "interline_equation", + "image_path": "5fad4c089ed46e041e888e1354250fd12c2da03691113069d45e7c34d2eb98f7.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 243, + 176, + 367, + 191 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 195, + 475, + 207 + ], + "lines": [ + { + "bbox": [ + 105, + 193, + 477, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 412, + 209 + ], + "score": 1.0, + "content": "The tower rule of expectation, and the conditional independence property of", + "type": "text" + }, + { + "bbox": [ + 412, + 196, + 443, + 207 + ], + "score": 0.92, + "content": "{ \\mathcal { P } } _ { X , Y , Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 193, + 477, + 209 + ], + "score": 1.0, + "content": "implies", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 174, + 212, + 436, + 298 + ], + "lines": [ + { + "bbox": [ + 174, + 212, + 436, + 298 + ], + "spans": [ + { + "bbox": [ + 174, + 212, + 436, + 298 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { W _ { c } ^ { \\dagger } ( P _ { X } , P _ { G } ) = \\underset { P \\in \\mathcal { P } _ { X , Y , Z } } { \\operatorname* { i n f } } \\mathbb { E } _ { ( X , Y , Z ) \\sim P } \\left[ c ( X , Y ) \\right] } \\\\ & { \\quad \\quad \\quad = \\underset { P \\in \\mathcal { P } _ { X , Y , Z } } { \\operatorname* { i n f } } \\mathbb { E } _ { P _ { Z } } \\mathbb { E } _ { X \\sim P ( X \\mid Z ) } \\mathbb { E } _ { Y \\sim P ( Y \\mid Z ) } [ c ( X , Y ) ] } \\\\ & { \\quad \\quad \\quad = \\underset { P \\in \\mathcal { P } _ { X , Y , Z } } { \\operatorname* { i n f } } \\mathbb { E } _ { P _ { Z } } \\mathbb { E } _ { X \\sim P ( X \\mid Z ) } \\left[ c \\left( X , G ( Z ) \\right) \\right] } \\\\ & { \\quad \\quad \\quad = \\underset { P \\in \\mathcal { P } _ { X , Z } } { \\operatorname* { i n f } } \\mathbb { E } _ { ( X , Z ) \\sim P } \\left[ c \\left( X , G ( Z ) \\right) \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "653bed1e8cad7ed1de42342b9a7c0aa95c3d1fe17f75f4d5d3812d5573a3ca76.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 174, + 212, + 436, + 240.66666666666666 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 174, + 240.66666666666666, + 436, + 269.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 174, + 269.3333333333333, + 436, + 298.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 302, + 397, + 315 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 398, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 204, + 316 + ], + "score": 1.0, + "content": "It remains to notice that", + "type": "text" + }, + { + "bbox": [ + 204, + 303, + 330, + 315 + ], + "score": 0.91, + "content": "\\mathcal { P } _ { X , Z } = \\mathcal { P } ( X \\sim P _ { X } , Z \\sim P _ { Z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 302, + 398, + 316 + ], + "score": 1.0, + "content": "as stated earlier.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "title", + "bbox": [ + 107, + 327, + 263, + 339 + ], + "lines": [ + { + "bbox": [ + 105, + 325, + 263, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 222, + 341 + ], + "score": 1.0, + "content": "B.1 RANDOM DECODERS", + "type": "text" + }, + { + "bbox": [ + 223, + 327, + 263, + 340 + ], + "score": 0.92, + "content": "P _ { G } ( Y | Z )", + "type": "inline_equation" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 105, + 348, + 504, + 371 + ], + "lines": [ + { + "bbox": [ + 104, + 346, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 104, + 346, + 505, + 361 + ], + "score": 1.0, + "content": "If the decoders are non-deterministic, Lemma 1 provides only the inclusion of sets", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 359, + 391, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 359, + 191, + 371 + ], + "score": 0.92, + "content": "\\mathcal { P } _ { X , Y } \\subseteq \\mathcal { P } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 359, + 391, + 371 + ], + "score": 1.0, + "content": "and we get the following upper bound on the OT:", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 380, + 505, + 416 + ], + "lines": [ + { + "bbox": [ + 106, + 379, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 177, + 394 + ], + "score": 1.0, + "content": "Corollary 1 Let", + "type": "text" + }, + { + "bbox": [ + 177, + 380, + 218, + 391 + ], + "score": 0.9, + "content": "\\mathcal { X } ~ = ~ \\mathcal { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 379, + 392, + 394 + ], + "score": 1.0, + "content": "and assume the conditional distributions", + "type": "text" + }, + { + "bbox": [ + 392, + 381, + 455, + 393 + ], + "score": 0.91, + "content": "P _ { G } ( Y | Z = z )", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 379, + 506, + 394 + ], + "score": 1.0, + "content": "have mean", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 390, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 135, + 406 + ], + "score": 1.0, + "content": "values", + "type": "text" + }, + { + "bbox": [ + 135, + 392, + 182, + 403 + ], + "score": 0.89, + "content": "G ( z ) \\in \\mathcal { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 390, + 281, + 406 + ], + "score": 1.0, + "content": "and marginal variances", + "type": "text" + }, + { + "bbox": [ + 282, + 392, + 344, + 404 + ], + "score": 0.93, + "content": "\\sigma _ { 1 } ^ { 2 } , \\ldots , \\sigma _ { d } ^ { 2 } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 390, + 373, + 406 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 373, + 393, + 400, + 403 + ], + "score": 0.88, + "content": "z \\in { \\mathcal { Z } }", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 390, + 430, + 406 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 431, + 393, + 479, + 402 + ], + "score": 0.88, + "content": "G \\colon { \\mathcal { Z } } \\to { \\mathcal { X } }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 390, + 506, + 406 + ], + "score": 1.0, + "content": ". Take", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 402, + 214, + 416 + ], + "spans": [ + { + "bbox": [ + 107, + 403, + 185, + 415 + ], + "score": 0.92, + "content": "c ( x , y ) = \\| x - y \\| _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 402, + 214, + 416 + ], + "score": 1.0, + "content": ". Then", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 117, + 419, + 478, + 453 + ], + "lines": [ + { + "bbox": [ + 117, + 419, + 478, + 453 + ], + "spans": [ + { + "bbox": [ + 117, + 419, + 478, + 453 + ], + "score": 0.94, + "content": "W _ { c } ( P _ { X } , P _ { G } ) \\leq W _ { c } ^ { \\dagger } ( P _ { X } , P _ { G } ) = \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { 2 } + \\operatorname* { i n f } _ { P \\in \\mathcal { P } ( X \\setminus P _ { X } , Z \\sim P _ { Z } ) } \\mathbb { E } _ { ( X , Z ) \\sim P } \\big [ \\| X - G ( Z ) \\| ^ { 2 } \\big ] .", + "type": "interline_equation", + "image_path": "3191801fdce877583d57ab64b281fe1a4a2f12b841d0bc7daead3630c2b31298.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 117, + 419, + 478, + 430.3333333333333 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 117, + 430.3333333333333, + 478, + 441.66666666666663 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 117, + 441.66666666666663, + 478, + 452.99999999999994 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 462, + 506, + 485 + ], + "lines": [ + { + "bbox": [ + 105, + 462, + 506, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 476 + ], + "score": 1.0, + "content": "Proof First inequality follows from (9). For the identity we proceed similarly to the proof of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 473, + 193, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 193, + 486 + ], + "score": 1.0, + "content": "Theorem 1 and write", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "interline_equation", + "bbox": [ + 167, + 488, + 444, + 510 + ], + "lines": [ + { + "bbox": [ + 167, + 488, + 444, + 510 + ], + "spans": [ + { + "bbox": [ + 167, + 488, + 444, + 510 + ], + "score": 0.91, + "content": "W _ { c } ^ { \\dagger } ( P _ { X } , P _ { G } ) = \\operatorname* { i n f } _ { P \\in \\mathcal { P } _ { X , Y , Z } } \\mathbb { E } _ { P _ { Z } } \\mathbb { E } _ { X \\sim P ( X \\mid Z ) } \\mathbb { E } _ { Y \\sim P ( Y \\mid Z ) } \\left[ \\left\\| X - Y \\right\\| ^ { 2 } \\right] .", + "type": "interline_equation", + "image_path": "435b3f67c7089dcb32fdf511c52506db9c9f938851293f40e5095673d00dd171.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 167, + 488, + 444, + 510 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 514, + 146, + 525 + ], + "lines": [ + { + "bbox": [ + 105, + 513, + 147, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 147, + 527 + ], + "score": 1.0, + "content": "Note that", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 126, + 528, + 485, + 597 + ], + "lines": [ + { + "bbox": [ + 126, + 528, + 485, + 597 + ], + "spans": [ + { + "bbox": [ + 126, + 528, + 485, + 597 + ], + "score": 0.93, + "content": "\\begin{array} { l } { \\mathbb { E } _ { Y \\sim P ( Y \\vert Z ) } \\big [ \\| X - Y \\| ^ { 2 } \\big ] = \\mathbb { E } _ { Y \\sim P ( Y \\vert Z ) } \\big [ \\| X - G ( Z ) + G ( Z ) - Y \\| ^ { 2 } \\big ] } \\\\ { = \\| X - G ( Z ) \\| ^ { 2 } + \\mathbb { E } _ { Y \\sim P ( Y \\vert Z ) } \\big [ \\langle X - G ( Z ) , G ( Z ) - Y \\rangle \\big ] + \\mathbb { E } _ { Y \\sim P ( Y \\vert Z ) } \\| G ( Z ) - Y \\| ^ { 2 } } \\\\ { = \\| X - G ( Z ) \\| ^ { 2 } + \\displaystyle \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "6635a165dd4c7884d61bad12d4d8eafea9a3505f1a3845db267635dbf26e8001.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 126, + 528, + 485, + 551.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 126, + 551.0, + 485, + 574.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 126, + 574.0, + 485, + 597.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 103, + 600, + 477, + 614 + ], + "lines": [ + { + "bbox": [ + 105, + 600, + 478, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 250, + 615 + ], + "score": 1.0, + "content": "Together with (11) and the fact that", + "type": "text" + }, + { + "bbox": [ + 250, + 601, + 376, + 613 + ], + "score": 0.93, + "content": "\\mathcal { P } _ { X , Z } = \\mathcal { P } ( X \\sim P _ { X } , Z \\sim P _ { Z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 600, + 478, + 615 + ], + "score": 1.0, + "content": "this concludes the proof.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "title", + "bbox": [ + 106, + 645, + 317, + 658 + ], + "lines": [ + { + "bbox": [ + 106, + 644, + 317, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 317, + 660 + ], + "score": 1.0, + "content": "C FURTHER DETAILS ON EXPERIMENTS", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "title", + "bbox": [ + 106, + 669, + 167, + 681 + ], + "lines": [ + { + "bbox": [ + 105, + 668, + 169, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 169, + 683 + ], + "score": 1.0, + "content": "C.1 MNIST", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 690, + 506, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 690, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 451, + 702 + ], + "score": 1.0, + "content": "We use mini-batches of size 100 and trained the models for 100 epochs. We used", + "type": "text" + }, + { + "bbox": [ + 451, + 691, + 486, + 701 + ], + "score": 0.9, + "content": "\\lambda = 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 690, + 505, + 702 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 700, + 506, + 716 + ], + "spans": [ + { + "bbox": [ + 107, + 701, + 140, + 714 + ], + "score": 0.92, + "content": "\\sigma _ { z } ^ { 2 } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 700, + 298, + 716 + ], + "score": 1.0, + "content": ". For the encoder-decoder pair we set", + "type": "text" + }, + { + "bbox": [ + 298, + 701, + 343, + 712 + ], + "score": 0.91, + "content": "\\alpha = 1 0 ^ { - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 700, + 506, + 716 + ], + "score": 1.0, + "content": "for Adam in the beginning and for the", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + } + ], + "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": [ + 118, + 721, + 453, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 719, + 453, + 734 + ], + "spans": [ + { + "bbox": [ + 118, + 719, + 453, + 734 + ], + "score": 1.0, + "content": "6We conjecture that this is also a necessary condition. The necessity is not used in the paper.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 496, + 600, + 505, + 613 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 460, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 461, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 151, + 96 + ], + "score": 1.0, + "content": "Lemma 1", + "type": "text" + }, + { + "bbox": [ + 151, + 82, + 236, + 95 + ], + "score": 0.94, + "content": "\\mathcal { P } _ { X , Y } \\subseteq \\mathcal { P } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 81, + 290, + 96 + ], + "score": 1.0, + "content": "with identity", + "type": "text" + }, + { + "bbox": [ + 290, + 82, + 361, + 95 + ], + "score": 0.92, + "content": "i f ^ { 6 } ~ P _ { G } ( Y | Z = z )", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 81, + 431, + 96 + ], + "score": 1.0, + "content": "are Dirac for all", + "type": "text" + }, + { + "bbox": [ + 431, + 83, + 457, + 93 + ], + "score": 0.88, + "content": "z \\in { \\mathcal { Z } }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 81, + 461, + 96 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 81, + 461, + 96 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 401, + 116 + ], + "score": 1.0, + "content": "Proof The first assertion is obvious. To prove the identity, note that when", + "type": "text" + }, + { + "bbox": [ + 401, + 104, + 410, + 113 + ], + "score": 0.8, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 102, + 505, + 116 + ], + "score": 1.0, + "content": "is a deterministic func-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 504, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 135, + 128 + ], + "score": 1.0, + "content": "tion of", + "type": "text" + }, + { + "bbox": [ + 136, + 115, + 144, + 124 + ], + "score": 0.82, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 114, + 178, + 128 + ], + "score": 1.0, + "content": ", for any", + "type": "text" + }, + { + "bbox": [ + 178, + 114, + 187, + 124 + ], + "score": 0.76, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 114, + 318, + 128 + ], + "score": 1.0, + "content": "in the sigma-algebra induced by", + "type": "text" + }, + { + "bbox": [ + 318, + 114, + 328, + 124 + ], + "score": 0.78, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 114, + 365, + 128 + ], + "score": 1.0, + "content": "we have", + "type": "text" + }, + { + "bbox": [ + 365, + 114, + 501, + 127 + ], + "score": 0.88, + "content": "\\mathbb { E } \\left[ \\mathbb { 1 } _ { [ Y \\in A ] } | X , Z \\right] = \\mathbb { E } \\left[ \\mathbb { 1 } _ { [ Y \\in A ] } | Z \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 114, + 504, + 128 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 126, + 503, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 159, + 139 + ], + "score": 1.0, + "content": "This implies", + "type": "text" + }, + { + "bbox": [ + 159, + 126, + 209, + 138 + ], + "score": 0.94, + "content": "( Y \\perp \\perp X ) | Z", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 126, + 311, + 139 + ], + "score": 1.0, + "content": "and concludes the proof.", + "type": "text" + }, + { + "bbox": [ + 498, + 128, + 503, + 136 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 102, + 505, + 139 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 159, + 389, + 172 + ], + "lines": [ + { + "bbox": [ + 106, + 159, + 389, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 389, + 173 + ], + "score": 1.0, + "content": "We are now in place to prove Theorem 1. Lemma 1 obviously leads to", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 106, + 159, + 389, + 173 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 176, + 367, + 191 + ], + "lines": [ + { + "bbox": [ + 243, + 176, + 367, + 191 + ], + "spans": [ + { + "bbox": [ + 243, + 176, + 367, + 191 + ], + "score": 0.92, + "content": "W _ { c } ( P _ { X } , P _ { G } ) = W _ { c } ^ { \\dagger } ( P _ { X } , P _ { G } ) .", + "type": "interline_equation", + "image_path": "5fad4c089ed46e041e888e1354250fd12c2da03691113069d45e7c34d2eb98f7.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 243, + 176, + 367, + 191 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 195, + 475, + 207 + ], + "lines": [ + { + "bbox": [ + 105, + 193, + 477, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 412, + 209 + ], + "score": 1.0, + "content": "The tower rule of expectation, and the conditional independence property of", + "type": "text" + }, + { + "bbox": [ + 412, + 196, + 443, + 207 + ], + "score": 0.92, + "content": "{ \\mathcal { P } } _ { X , Y , Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 193, + 477, + 209 + ], + "score": 1.0, + "content": "implies", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 193, + 477, + 209 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 174, + 212, + 436, + 298 + ], + "lines": [ + { + "bbox": [ + 174, + 212, + 436, + 298 + ], + "spans": [ + { + "bbox": [ + 174, + 212, + 436, + 298 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { W _ { c } ^ { \\dagger } ( P _ { X } , P _ { G } ) = \\underset { P \\in \\mathcal { P } _ { X , Y , Z } } { \\operatorname* { i n f } } \\mathbb { E } _ { ( X , Y , Z ) \\sim P } \\left[ c ( X , Y ) \\right] } \\\\ & { \\quad \\quad \\quad = \\underset { P \\in \\mathcal { P } _ { X , Y , Z } } { \\operatorname* { i n f } } \\mathbb { E } _ { P _ { Z } } \\mathbb { E } _ { X \\sim P ( X \\mid Z ) } \\mathbb { E } _ { Y \\sim P ( Y \\mid Z ) } [ c ( X , Y ) ] } \\\\ & { \\quad \\quad \\quad = \\underset { P \\in \\mathcal { P } _ { X , Y , Z } } { \\operatorname* { i n f } } \\mathbb { E } _ { P _ { Z } } \\mathbb { E } _ { X \\sim P ( X \\mid Z ) } \\left[ c \\left( X , G ( Z ) \\right) \\right] } \\\\ & { \\quad \\quad \\quad = \\underset { P \\in \\mathcal { P } _ { X , Z } } { \\operatorname* { i n f } } \\mathbb { E } _ { ( X , Z ) \\sim P } \\left[ c \\left( X , G ( Z ) \\right) \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "653bed1e8cad7ed1de42342b9a7c0aa95c3d1fe17f75f4d5d3812d5573a3ca76.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 174, + 212, + 436, + 240.66666666666666 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 174, + 240.66666666666666, + 436, + 269.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 174, + 269.3333333333333, + 436, + 298.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 302, + 397, + 315 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 398, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 204, + 316 + ], + "score": 1.0, + "content": "It remains to notice that", + "type": "text" + }, + { + "bbox": [ + 204, + 303, + 330, + 315 + ], + "score": 0.91, + "content": "\\mathcal { P } _ { X , Z } = \\mathcal { P } ( X \\sim P _ { X } , Z \\sim P _ { Z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 302, + 398, + 316 + ], + "score": 1.0, + "content": "as stated earlier.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 302, + 398, + 316 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 327, + 263, + 339 + ], + "lines": [ + { + "bbox": [ + 105, + 325, + 263, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 222, + 341 + ], + "score": 1.0, + "content": "B.1 RANDOM DECODERS", + "type": "text" + }, + { + "bbox": [ + 223, + 327, + 263, + 340 + ], + "score": 0.92, + "content": "P _ { G } ( Y | Z )", + "type": "inline_equation" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 105, + 348, + 504, + 371 + ], + "lines": [ + { + "bbox": [ + 104, + 346, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 104, + 346, + 505, + 361 + ], + "score": 1.0, + "content": "If the decoders are non-deterministic, Lemma 1 provides only the inclusion of sets", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 359, + 391, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 359, + 191, + 371 + ], + "score": 0.92, + "content": "\\mathcal { P } _ { X , Y } \\subseteq \\mathcal { P } ( P _ { X } , P _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 359, + 391, + 371 + ], + "score": 1.0, + "content": "and we get the following upper bound on the OT:", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 104, + 346, + 505, + 371 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 380, + 505, + 416 + ], + "lines": [ + { + "bbox": [ + 106, + 379, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 177, + 394 + ], + "score": 1.0, + "content": "Corollary 1 Let", + "type": "text" + }, + { + "bbox": [ + 177, + 380, + 218, + 391 + ], + "score": 0.9, + "content": "\\mathcal { X } ~ = ~ \\mathcal { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 379, + 392, + 394 + ], + "score": 1.0, + "content": "and assume the conditional distributions", + "type": "text" + }, + { + "bbox": [ + 392, + 381, + 455, + 393 + ], + "score": 0.91, + "content": "P _ { G } ( Y | Z = z )", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 379, + 506, + 394 + ], + "score": 1.0, + "content": "have mean", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 390, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 135, + 406 + ], + "score": 1.0, + "content": "values", + "type": "text" + }, + { + "bbox": [ + 135, + 392, + 182, + 403 + ], + "score": 0.89, + "content": "G ( z ) \\in \\mathcal { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 390, + 281, + 406 + ], + "score": 1.0, + "content": "and marginal variances", + "type": "text" + }, + { + "bbox": [ + 282, + 392, + 344, + 404 + ], + "score": 0.93, + "content": "\\sigma _ { 1 } ^ { 2 } , \\ldots , \\sigma _ { d } ^ { 2 } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 390, + 373, + 406 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 373, + 393, + 400, + 403 + ], + "score": 0.88, + "content": "z \\in { \\mathcal { Z } }", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 390, + 430, + 406 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 431, + 393, + 479, + 402 + ], + "score": 0.88, + "content": "G \\colon { \\mathcal { Z } } \\to { \\mathcal { X } }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 390, + 506, + 406 + ], + "score": 1.0, + "content": ". Take", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 402, + 214, + 416 + ], + "spans": [ + { + "bbox": [ + 107, + 403, + 185, + 415 + ], + "score": 0.92, + "content": "c ( x , y ) = \\| x - y \\| _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 402, + 214, + 416 + ], + "score": 1.0, + "content": ". Then", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 379, + 506, + 416 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 117, + 419, + 478, + 453 + ], + "lines": [ + { + "bbox": [ + 117, + 419, + 478, + 453 + ], + "spans": [ + { + "bbox": [ + 117, + 419, + 478, + 453 + ], + "score": 0.94, + "content": "W _ { c } ( P _ { X } , P _ { G } ) \\leq W _ { c } ^ { \\dagger } ( P _ { X } , P _ { G } ) = \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { 2 } + \\operatorname* { i n f } _ { P \\in \\mathcal { P } ( X \\setminus P _ { X } , Z \\sim P _ { Z } ) } \\mathbb { E } _ { ( X , Z ) \\sim P } \\big [ \\| X - G ( Z ) \\| ^ { 2 } \\big ] .", + "type": "interline_equation", + "image_path": "3191801fdce877583d57ab64b281fe1a4a2f12b841d0bc7daead3630c2b31298.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 117, + 419, + 478, + 430.3333333333333 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 117, + 430.3333333333333, + 478, + 441.66666666666663 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 117, + 441.66666666666663, + 478, + 452.99999999999994 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 462, + 506, + 485 + ], + "lines": [ + { + "bbox": [ + 105, + 462, + 506, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 476 + ], + "score": 1.0, + "content": "Proof First inequality follows from (9). For the identity we proceed similarly to the proof of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 473, + 193, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 193, + 486 + ], + "score": 1.0, + "content": "Theorem 1 and write", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 462, + 506, + 486 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 167, + 488, + 444, + 510 + ], + "lines": [ + { + "bbox": [ + 167, + 488, + 444, + 510 + ], + "spans": [ + { + "bbox": [ + 167, + 488, + 444, + 510 + ], + "score": 0.91, + "content": "W _ { c } ^ { \\dagger } ( P _ { X } , P _ { G } ) = \\operatorname* { i n f } _ { P \\in \\mathcal { P } _ { X , Y , Z } } \\mathbb { E } _ { P _ { Z } } \\mathbb { E } _ { X \\sim P ( X \\mid Z ) } \\mathbb { E } _ { Y \\sim P ( Y \\mid Z ) } \\left[ \\left\\| X - Y \\right\\| ^ { 2 } \\right] .", + "type": "interline_equation", + "image_path": "435b3f67c7089dcb32fdf511c52506db9c9f938851293f40e5095673d00dd171.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 167, + 488, + 444, + 510 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 514, + 146, + 525 + ], + "lines": [ + { + "bbox": [ + 105, + 513, + 147, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 147, + 527 + ], + "score": 1.0, + "content": "Note that", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 513, + 147, + 527 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 126, + 528, + 485, + 597 + ], + "lines": [ + { + "bbox": [ + 126, + 528, + 485, + 597 + ], + "spans": [ + { + "bbox": [ + 126, + 528, + 485, + 597 + ], + "score": 0.93, + "content": "\\begin{array} { l } { \\mathbb { E } _ { Y \\sim P ( Y \\vert Z ) } \\big [ \\| X - Y \\| ^ { 2 } \\big ] = \\mathbb { E } _ { Y \\sim P ( Y \\vert Z ) } \\big [ \\| X - G ( Z ) + G ( Z ) - Y \\| ^ { 2 } \\big ] } \\\\ { = \\| X - G ( Z ) \\| ^ { 2 } + \\mathbb { E } _ { Y \\sim P ( Y \\vert Z ) } \\big [ \\langle X - G ( Z ) , G ( Z ) - Y \\rangle \\big ] + \\mathbb { E } _ { Y \\sim P ( Y \\vert Z ) } \\| G ( Z ) - Y \\| ^ { 2 } } \\\\ { = \\| X - G ( Z ) \\| ^ { 2 } + \\displaystyle \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "6635a165dd4c7884d61bad12d4d8eafea9a3505f1a3845db267635dbf26e8001.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 126, + 528, + 485, + 551.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 126, + 551.0, + 485, + 574.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 126, + 574.0, + 485, + 597.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 103, + 600, + 477, + 614 + ], + "lines": [ + { + "bbox": [ + 105, + 600, + 478, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 250, + 615 + ], + "score": 1.0, + "content": "Together with (11) and the fact that", + "type": "text" + }, + { + "bbox": [ + 250, + 601, + 376, + 613 + ], + "score": 0.93, + "content": "\\mathcal { P } _ { X , Z } = \\mathcal { P } ( X \\sim P _ { X } , Z \\sim P _ { Z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 600, + 478, + 615 + ], + "score": 1.0, + "content": "this concludes the proof.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 600, + 478, + 615 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 645, + 317, + 658 + ], + "lines": [ + { + "bbox": [ + 106, + 644, + 317, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 317, + 660 + ], + "score": 1.0, + "content": "C FURTHER DETAILS ON EXPERIMENTS", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "title", + "bbox": [ + 106, + 669, + 167, + 681 + ], + "lines": [ + { + "bbox": [ + 105, + 668, + 169, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 169, + 683 + ], + "score": 1.0, + "content": "C.1 MNIST", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 690, + 506, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 690, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 451, + 702 + ], + "score": 1.0, + "content": "We use mini-batches of size 100 and trained the models for 100 epochs. We used", + "type": "text" + }, + { + "bbox": [ + 451, + 691, + 486, + 701 + ], + "score": 0.9, + "content": "\\lambda = 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 690, + 505, + 702 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 700, + 506, + 716 + ], + "spans": [ + { + "bbox": [ + 107, + 701, + 140, + 714 + ], + "score": 0.92, + "content": "\\sigma _ { z } ^ { 2 } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 700, + 298, + 716 + ], + "score": 1.0, + "content": ". For the encoder-decoder pair we set", + "type": "text" + }, + { + "bbox": [ + 298, + 701, + 343, + 712 + ], + "score": 0.91, + "content": "\\alpha = 1 0 ^ { - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 700, + 506, + 716 + ], + "score": 1.0, + "content": "for Adam in the beginning and for the", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 106, + 690, + 506, + 716 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 218, + 95 + ], + "score": 1.0, + "content": "adversary in WAE-GAN to", + "type": "text" + }, + { + "bbox": [ + 218, + 82, + 278, + 93 + ], + "score": 0.93, + "content": "\\alpha = 5 \\times 1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 81, + 506, + 95 + ], + "score": 1.0, + "content": ". After 30 epochs we decreased both by factor of 2, and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 277, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 277, + 106 + ], + "score": 1.0, + "content": "after first 50 epochs further by factor of 5.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 110, + 487, + 122 + ], + "lines": [ + { + "bbox": [ + 105, + 109, + 487, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 487, + 123 + ], + "score": 1.0, + "content": "Both encoder and decoder used fully convolutional architectures with 4x4 convolutional filters.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 127, + 193, + 138 + ], + "lines": [ + { + "bbox": [ + 106, + 127, + 194, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 194, + 139 + ], + "score": 1.0, + "content": "Encoder architecture:", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 139, + 412, + 197 + ], + "lines": [ + { + "bbox": [ + 199, + 139, + 412, + 197 + ], + "spans": [ + { + "bbox": [ + 199, + 139, + 412, + 197 + ], + "score": 0.92, + "content": "\\begin{array} { r l } { x \\in \\mathcal { R } ^ { 2 8 \\times 2 8 } \\mathrm { C o n v _ { 1 2 8 } } \\mathrm { B N } \\mathrm { R e L U } } & { } \\\\ { \\mathrm { C o n v _ { 2 5 6 } } \\mathrm { B N } \\mathrm { R e L U } } & { } \\\\ { \\mathrm { C o n v _ { 5 1 2 } } \\mathrm { B N } \\mathrm { R e L U } } & { } \\\\ { \\mathrm { C o n v _ { 1 0 2 4 } } \\mathrm { B N } \\mathrm { R e L U } \\mathrm { F C } _ { 8 } } \\end{array}", + "type": "interline_equation", + "image_path": "4ec08ef2fb77f6182905c1b2463089a01ddd69b21d39057868d34af6a063a0a8.jpg" + } + ] + } + ], + "index": 5.5, + "virtual_lines": [ + { + "bbox": [ + 199, + 139, + 412, + 153.5 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 199, + 153.5, + 412, + 168.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 199, + 168.0, + 412, + 182.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 199, + 182.5, + 412, + 197.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 194, + 216 + ], + "lines": [ + { + "bbox": [ + 106, + 203, + 195, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 195, + 217 + ], + "score": 1.0, + "content": "Decoder architecture:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 217, + 415, + 261 + ], + "lines": [ + { + "bbox": [ + 194, + 217, + 415, + 261 + ], + "spans": [ + { + "bbox": [ + 194, + 217, + 415, + 261 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { z \\in \\mathcal { R } ^ { 8 } \\mathrm { F C } _ { 7 \\times 7 \\times 1 0 2 4 } } \\\\ & { \\qquad \\mathrm { F S C o n v } _ { 5 1 2 } \\mathrm { B N } \\mathrm { R e L U } } \\\\ & { \\qquad \\mathrm { F S C o n v } _ { 2 5 6 } \\mathrm { B N } \\mathrm { R e L U } \\mathrm { F S C o n v } _ { 1 } } \\end{array}", + "type": "interline_equation", + "image_path": "5f2642888c10b61733327ce52932487c854bc6e0a19397bc95bd54e41612f99b.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 194, + 217, + 415, + 231.66666666666666 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 194, + 231.66666666666666, + 415, + 246.33333333333331 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 194, + 246.33333333333331, + 415, + 261.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 267, + 265, + 279 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 266, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 266, + 280 + ], + "score": 1.0, + "content": "Adversary architecture for WAE-GAN:", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 280, + 380, + 338 + ], + "lines": [ + { + "bbox": [ + 230, + 280, + 380, + 338 + ], + "spans": [ + { + "bbox": [ + 230, + 280, + 380, + 338 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { z \\in \\mathcal { R } ^ { 8 } \\mathrm { F C } _ { 5 1 2 } \\mathrm { R e L U } } \\\\ & { ~ \\mathrm { F C } _ { 5 1 2 } \\mathrm { R e L U } } \\\\ & { ~ \\mathrm { F C } _ { 5 1 2 } \\mathrm { R e L U } } \\\\ & { ~ \\mathrm { F C } _ { 5 1 2 } \\mathrm { R e L U } \\mathrm { F C } _ { 1 } } \\end{array}", + "type": "interline_equation", + "image_path": "e1f139d7840af0aceff1b6d56897c99b40596ad65bd6ff3df7eeac4824de9bbf.jpg" + } + ] + } + ], + "index": 13.5, + "virtual_lines": [ + { + "bbox": [ + 230, + 280, + 380, + 309.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 230, + 309.0, + 380, + 338.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 344, + 505, + 401 + ], + "lines": [ + { + "bbox": [ + 106, + 344, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 128, + 356 + ], + "score": 1.0, + "content": "Here", + "type": "text" + }, + { + "bbox": [ + 129, + 345, + 158, + 356 + ], + "score": 0.9, + "content": "\\operatorname { C o n v } _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 344, + 277, + 356 + ], + "score": 1.0, + "content": "stands for a convolution with", + "type": "text" + }, + { + "bbox": [ + 277, + 345, + 285, + 355 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 344, + 313, + 356 + ], + "score": 1.0, + "content": "filters,", + "type": "text" + }, + { + "bbox": [ + 314, + 345, + 354, + 356 + ], + "score": 0.89, + "content": "\\mathrm { F S C o n v } _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 344, + 505, + 356 + ], + "score": 1.0, + "content": "for the fractional strided convolution", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 355, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 355, + 126, + 367 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 127, + 356, + 133, + 366 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 355, + 505, + 367 + ], + "score": 1.0, + "content": "filters (first two of them were doubling the resolution, the third one kept it constant), BN for", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 365, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 367, + 380 + ], + "score": 1.0, + "content": "the batch normalization, ReLU for the rectified linear units, and", + "type": "text" + }, + { + "bbox": [ + 367, + 367, + 387, + 378 + ], + "score": 0.89, + "content": "\\mathrm { F C } _ { \\mathrm { k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 365, + 506, + 380 + ], + "score": 1.0, + "content": "for the fully connected layer", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 376, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 104, + 376, + 154, + 390 + ], + "score": 1.0, + "content": "mapping to", + "type": "text" + }, + { + "bbox": [ + 154, + 377, + 168, + 388 + ], + "score": 0.89, + "content": "\\mathcal { R } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 376, + 506, + 390 + ], + "score": 1.0, + "content": ". All the convolutions in the encoder used vertical and horizontal strides 2 and SAME", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 388, + 145, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 145, + 403 + ], + "score": 1.0, + "content": "padding.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 405, + 505, + 483 + ], + "lines": [ + { + "bbox": [ + 105, + 405, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 505, + 419 + ], + "score": 1.0, + "content": "Finally, we used two heuristics. First, we always pretrained separately the encoder for several mini-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 460, + 429 + ], + "score": 1.0, + "content": "batch steps before the main training stage so that the sample mean and covariance of", + "type": "text" + }, + { + "bbox": [ + 460, + 417, + 475, + 428 + ], + "score": 0.9, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "would", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 428, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 198, + 440 + ], + "score": 1.0, + "content": "try to match those of", + "type": "text" + }, + { + "bbox": [ + 198, + 428, + 212, + 439 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 428, + 505, + 440 + ], + "score": 1.0, + "content": ". Second, while training we were adding a pixel-wise Gaussian noise", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 439, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 505, + 451 + ], + "score": 1.0, + "content": "truncated at 0.01 to all the images before feeding them to the encoder, which was meant to make the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 449, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 505, + 462 + ], + "score": 1.0, + "content": "encoders random. We played with all possible ways of combining these two heuristics and noticed", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 461, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 506, + 473 + ], + "score": 1.0, + "content": "that together they result in slightly (almost negligibly) better results compared to using only one or", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 472, + 164, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 164, + 482 + ], + "score": 1.0, + "content": "none of them.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 488, + 504, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 486, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 506, + 501 + ], + "score": 1.0, + "content": "Our VAE model used cross-entropy loss (Bernoulli decoder) and otherwise same architectures and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 499, + 239, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 239, + 512 + ], + "score": 1.0, + "content": "hyperparameters as listed above.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "title", + "bbox": [ + 107, + 523, + 170, + 535 + ], + "lines": [ + { + "bbox": [ + 106, + 522, + 171, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 171, + 537 + ], + "score": 1.0, + "content": "C.2 CELEBA", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 544, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 544, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 316, + 557 + ], + "score": 1.0, + "content": "We pre-processed CelebA images by first taking a", + "type": "text" + }, + { + "bbox": [ + 316, + 545, + 352, + 555 + ], + "score": 0.34, + "content": "1 4 0 \\mathrm { x } 1 4 0", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 544, + 505, + 557 + ], + "score": 1.0, + "content": "center crops and then resizing to the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 555, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 133, + 566 + ], + "score": 0.33, + "content": "6 4 \\mathrm { x } 6 4", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 555, + 506, + 567 + ], + "score": 1.0, + "content": "resolution. We used mini-batches of size 100 and trained the models for various number of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 565, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 505, + 579 + ], + "score": 1.0, + "content": "epochs (up to 250). All reported WAE models were trained for 55 epochs and VAE for 68 epochs.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 577, + 433, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 209, + 590 + ], + "score": 1.0, + "content": "For WAE-MMD we used", + "type": "text" + }, + { + "bbox": [ + 210, + 577, + 245, + 587 + ], + "score": 0.9, + "content": "\\lambda = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 577, + 326, + 590 + ], + "score": 1.0, + "content": "and for WAE-GAN", + "type": "text" + }, + { + "bbox": [ + 326, + 577, + 351, + 587 + ], + "score": 0.89, + "content": "\\lambda = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 577, + 398, + 590 + ], + "score": 1.0, + "content": ". Both used", + "type": "text" + }, + { + "bbox": [ + 399, + 577, + 428, + 589 + ], + "score": 0.92, + "content": "\\sigma _ { z } ^ { 2 } = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 577, + 433, + 590 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 594, + 505, + 639 + ], + "lines": [ + { + "bbox": [ + 105, + 593, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 368, + 606 + ], + "score": 1.0, + "content": "For WAE-MMD the learning rate of Adam was initially set to", + "type": "text" + }, + { + "bbox": [ + 369, + 593, + 414, + 604 + ], + "score": 0.91, + "content": "\\alpha = 1 0 ^ { - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 593, + 506, + 606 + ], + "score": 1.0, + "content": ". For WAE-GAN the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 104, + 604, + 394, + 617 + ], + "score": 1.0, + "content": "learning rate of Adam for the encoder-decoder pair was initially set to", + "type": "text" + }, + { + "bbox": [ + 395, + 605, + 456, + 615 + ], + "score": 0.92, + "content": "\\alpha = 3 \\times 1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "and for the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 157, + 629 + ], + "score": 1.0, + "content": "adversary to", + "type": "text" + }, + { + "bbox": [ + 158, + 615, + 179, + 626 + ], + "score": 0.9, + "content": "1 0 ^ { - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 615, + 506, + 629 + ], + "score": 1.0, + "content": ". All learning rates were decreased by factor of 2 after 30 epochs, further by factor", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 627, + 433, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 433, + 639 + ], + "score": 1.0, + "content": "of 5 after 50 first epochs, and finally additional factor of 10 after 100 first epochs.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 104, + 643, + 486, + 655 + ], + "lines": [ + { + "bbox": [ + 105, + 642, + 487, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 385, + 657 + ], + "score": 1.0, + "content": "Both encoder and decoder used fully convolutional architectures with", + "type": "text" + }, + { + "bbox": [ + 385, + 644, + 402, + 654 + ], + "score": 0.37, + "content": "5 \\mathrm { x } 5", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 642, + 487, + 657 + ], + "score": 1.0, + "content": "convolutional filters.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 661, + 193, + 672 + ], + "lines": [ + { + "bbox": [ + 106, + 659, + 195, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 195, + 673 + ], + "score": 1.0, + "content": "Encoder architecture:", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "interline_equation", + "bbox": [ + 192, + 672, + 420, + 731 + ], + "lines": [ + { + "bbox": [ + 192, + 672, + 420, + 731 + ], + "spans": [ + { + "bbox": [ + 192, + 672, + 420, + 731 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { x \\in \\mathcal { R } ^ { 6 4 \\times 6 4 \\times 3 } \\to \\mathrm { C o n v _ { 1 2 8 } } \\to \\mathrm { B N } \\to \\mathrm { R e L U } } \\\\ & { \\qquad \\to \\mathrm { C o n v _ { 2 5 6 } } \\to \\mathrm { B N } \\to \\mathrm { R e L U } } \\\\ & { \\qquad \\to \\mathrm { C o n v _ { 5 1 2 } } \\to \\mathrm { B N } \\to \\mathrm { R e L U } } \\\\ & { \\qquad \\to \\mathrm { C o n v _ { 1 0 2 4 } } \\to \\mathrm { B N } \\to \\mathrm { R e L U } \\to \\mathrm { F C } _ { 6 4 } } \\end{array}", + "type": "interline_equation", + "image_path": "0b4a05953840371a154045fa91646c9656f16a1d3250d31dbf4bb2d438b78793.jpg" + } + ] + } + ], + "index": 41.5, + "virtual_lines": [ + { + "bbox": [ + 192, + 672, + 420, + 686.75 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 192, + 686.75, + 420, + 701.5 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 192, + 701.5, + 420, + 716.25 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 192, + 716.25, + 420, + 731.0 + ], + "spans": [], + "index": 43 + } + ] + } + ], + "page_idx": 14, + "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": "15", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 218, + 95 + ], + "score": 1.0, + "content": "adversary in WAE-GAN to", + "type": "text" + }, + { + "bbox": [ + 218, + 82, + 278, + 93 + ], + "score": 0.93, + "content": "\\alpha = 5 \\times 1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 81, + 506, + 95 + ], + "score": 1.0, + "content": ". After 30 epochs we decreased both by factor of 2, and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 277, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 277, + 106 + ], + "score": 1.0, + "content": "after first 50 epochs further by factor of 5.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 506, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 110, + 487, + 122 + ], + "lines": [ + { + "bbox": [ + 105, + 109, + 487, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 487, + 123 + ], + "score": 1.0, + "content": "Both encoder and decoder used fully convolutional architectures with 4x4 convolutional filters.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 109, + 487, + 123 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 127, + 193, + 138 + ], + "lines": [ + { + "bbox": [ + 106, + 127, + 194, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 194, + 139 + ], + "score": 1.0, + "content": "Encoder architecture:", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 106, + 127, + 194, + 139 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 139, + 412, + 197 + ], + "lines": [ + { + "bbox": [ + 199, + 139, + 412, + 197 + ], + "spans": [ + { + "bbox": [ + 199, + 139, + 412, + 197 + ], + "score": 0.92, + "content": "\\begin{array} { r l } { x \\in \\mathcal { R } ^ { 2 8 \\times 2 8 } \\mathrm { C o n v _ { 1 2 8 } } \\mathrm { B N } \\mathrm { R e L U } } & { } \\\\ { \\mathrm { C o n v _ { 2 5 6 } } \\mathrm { B N } \\mathrm { R e L U } } & { } \\\\ { \\mathrm { C o n v _ { 5 1 2 } } \\mathrm { B N } \\mathrm { R e L U } } & { } \\\\ { \\mathrm { C o n v _ { 1 0 2 4 } } \\mathrm { B N } \\mathrm { R e L U } \\mathrm { F C } _ { 8 } } \\end{array}", + "type": "interline_equation", + "image_path": "4ec08ef2fb77f6182905c1b2463089a01ddd69b21d39057868d34af6a063a0a8.jpg" + } + ] + } + ], + "index": 5.5, + "virtual_lines": [ + { + "bbox": [ + 199, + 139, + 412, + 153.5 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 199, + 153.5, + 412, + 168.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 199, + 168.0, + 412, + 182.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 199, + 182.5, + 412, + 197.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 194, + 216 + ], + "lines": [ + { + "bbox": [ + 106, + 203, + 195, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 195, + 217 + ], + "score": 1.0, + "content": "Decoder architecture:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 106, + 203, + 195, + 217 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 217, + 415, + 261 + ], + "lines": [ + { + "bbox": [ + 194, + 217, + 415, + 261 + ], + "spans": [ + { + "bbox": [ + 194, + 217, + 415, + 261 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { z \\in \\mathcal { R } ^ { 8 } \\mathrm { F C } _ { 7 \\times 7 \\times 1 0 2 4 } } \\\\ & { \\qquad \\mathrm { F S C o n v } _ { 5 1 2 } \\mathrm { B N } \\mathrm { R e L U } } \\\\ & { \\qquad \\mathrm { F S C o n v } _ { 2 5 6 } \\mathrm { B N } \\mathrm { R e L U } \\mathrm { F S C o n v } _ { 1 } } \\end{array}", + "type": "interline_equation", + "image_path": "5f2642888c10b61733327ce52932487c854bc6e0a19397bc95bd54e41612f99b.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 194, + 217, + 415, + 231.66666666666666 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 194, + 231.66666666666666, + 415, + 246.33333333333331 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 194, + 246.33333333333331, + 415, + 261.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 267, + 265, + 279 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 266, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 266, + 280 + ], + "score": 1.0, + "content": "Adversary architecture for WAE-GAN:", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 266, + 266, + 280 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 280, + 380, + 338 + ], + "lines": [ + { + "bbox": [ + 230, + 280, + 380, + 338 + ], + "spans": [ + { + "bbox": [ + 230, + 280, + 380, + 338 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { z \\in \\mathcal { R } ^ { 8 } \\mathrm { F C } _ { 5 1 2 } \\mathrm { R e L U } } \\\\ & { ~ \\mathrm { F C } _ { 5 1 2 } \\mathrm { R e L U } } \\\\ & { ~ \\mathrm { F C } _ { 5 1 2 } \\mathrm { R e L U } } \\\\ & { ~ \\mathrm { F C } _ { 5 1 2 } \\mathrm { R e L U } \\mathrm { F C } _ { 1 } } \\end{array}", + "type": "interline_equation", + "image_path": "e1f139d7840af0aceff1b6d56897c99b40596ad65bd6ff3df7eeac4824de9bbf.jpg" + } + ] + } + ], + "index": 13.5, + "virtual_lines": [ + { + "bbox": [ + 230, + 280, + 380, + 309.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 230, + 309.0, + 380, + 338.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 344, + 505, + 401 + ], + "lines": [ + { + "bbox": [ + 106, + 344, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 128, + 356 + ], + "score": 1.0, + "content": "Here", + "type": "text" + }, + { + "bbox": [ + 129, + 345, + 158, + 356 + ], + "score": 0.9, + "content": "\\operatorname { C o n v } _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 344, + 277, + 356 + ], + "score": 1.0, + "content": "stands for a convolution with", + "type": "text" + }, + { + "bbox": [ + 277, + 345, + 285, + 355 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 344, + 313, + 356 + ], + "score": 1.0, + "content": "filters,", + "type": "text" + }, + { + "bbox": [ + 314, + 345, + 354, + 356 + ], + "score": 0.89, + "content": "\\mathrm { F S C o n v } _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 344, + 505, + 356 + ], + "score": 1.0, + "content": "for the fractional strided convolution", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 355, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 355, + 126, + 367 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 127, + 356, + 133, + 366 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 355, + 505, + 367 + ], + "score": 1.0, + "content": "filters (first two of them were doubling the resolution, the third one kept it constant), BN for", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 365, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 367, + 380 + ], + "score": 1.0, + "content": "the batch normalization, ReLU for the rectified linear units, and", + "type": "text" + }, + { + "bbox": [ + 367, + 367, + 387, + 378 + ], + "score": 0.89, + "content": "\\mathrm { F C } _ { \\mathrm { k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 365, + 506, + 380 + ], + "score": 1.0, + "content": "for the fully connected layer", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 376, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 104, + 376, + 154, + 390 + ], + "score": 1.0, + "content": "mapping to", + "type": "text" + }, + { + "bbox": [ + 154, + 377, + 168, + 388 + ], + "score": 0.89, + "content": "\\mathcal { R } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 376, + 506, + 390 + ], + "score": 1.0, + "content": ". All the convolutions in the encoder used vertical and horizontal strides 2 and SAME", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 388, + 145, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 145, + 403 + ], + "score": 1.0, + "content": "padding.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17, + "bbox_fs": [ + 104, + 344, + 506, + 403 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 405, + 505, + 483 + ], + "lines": [ + { + "bbox": [ + 105, + 405, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 505, + 419 + ], + "score": 1.0, + "content": "Finally, we used two heuristics. First, we always pretrained separately the encoder for several mini-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 460, + 429 + ], + "score": 1.0, + "content": "batch steps before the main training stage so that the sample mean and covariance of", + "type": "text" + }, + { + "bbox": [ + 460, + 417, + 475, + 428 + ], + "score": 0.9, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "would", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 428, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 198, + 440 + ], + "score": 1.0, + "content": "try to match those of", + "type": "text" + }, + { + "bbox": [ + 198, + 428, + 212, + 439 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 428, + 505, + 440 + ], + "score": 1.0, + "content": ". Second, while training we were adding a pixel-wise Gaussian noise", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 439, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 505, + 451 + ], + "score": 1.0, + "content": "truncated at 0.01 to all the images before feeding them to the encoder, which was meant to make the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 449, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 505, + 462 + ], + "score": 1.0, + "content": "encoders random. We played with all possible ways of combining these two heuristics and noticed", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 461, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 506, + 473 + ], + "score": 1.0, + "content": "that together they result in slightly (almost negligibly) better results compared to using only one or", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 472, + 164, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 164, + 482 + ], + "score": 1.0, + "content": "none of them.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 405, + 506, + 482 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 488, + 504, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 486, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 506, + 501 + ], + "score": 1.0, + "content": "Our VAE model used cross-entropy loss (Bernoulli decoder) and otherwise same architectures and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 499, + 239, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 239, + 512 + ], + "score": 1.0, + "content": "hyperparameters as listed above.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 486, + 506, + 512 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 523, + 170, + 535 + ], + "lines": [ + { + "bbox": [ + 106, + 522, + 171, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 171, + 537 + ], + "score": 1.0, + "content": "C.2 CELEBA", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 544, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 544, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 316, + 557 + ], + "score": 1.0, + "content": "We pre-processed CelebA images by first taking a", + "type": "text" + }, + { + "bbox": [ + 316, + 545, + 352, + 555 + ], + "score": 0.34, + "content": "1 4 0 \\mathrm { x } 1 4 0", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 544, + 505, + 557 + ], + "score": 1.0, + "content": "center crops and then resizing to the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 555, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 133, + 566 + ], + "score": 0.33, + "content": "6 4 \\mathrm { x } 6 4", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 555, + 506, + 567 + ], + "score": 1.0, + "content": "resolution. We used mini-batches of size 100 and trained the models for various number of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 565, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 505, + 579 + ], + "score": 1.0, + "content": "epochs (up to 250). All reported WAE models were trained for 55 epochs and VAE for 68 epochs.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 577, + 433, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 209, + 590 + ], + "score": 1.0, + "content": "For WAE-MMD we used", + "type": "text" + }, + { + "bbox": [ + 210, + 577, + 245, + 587 + ], + "score": 0.9, + "content": "\\lambda = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 577, + 326, + 590 + ], + "score": 1.0, + "content": "and for WAE-GAN", + "type": "text" + }, + { + "bbox": [ + 326, + 577, + 351, + 587 + ], + "score": 0.89, + "content": "\\lambda = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 577, + 398, + 590 + ], + "score": 1.0, + "content": ". Both used", + "type": "text" + }, + { + "bbox": [ + 399, + 577, + 428, + 589 + ], + "score": 0.92, + "content": "\\sigma _ { z } ^ { 2 } = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 577, + 433, + 590 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 544, + 506, + 590 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 594, + 505, + 639 + ], + "lines": [ + { + "bbox": [ + 105, + 593, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 368, + 606 + ], + "score": 1.0, + "content": "For WAE-MMD the learning rate of Adam was initially set to", + "type": "text" + }, + { + "bbox": [ + 369, + 593, + 414, + 604 + ], + "score": 0.91, + "content": "\\alpha = 1 0 ^ { - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 593, + 506, + 606 + ], + "score": 1.0, + "content": ". For WAE-GAN the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 104, + 604, + 394, + 617 + ], + "score": 1.0, + "content": "learning rate of Adam for the encoder-decoder pair was initially set to", + "type": "text" + }, + { + "bbox": [ + 395, + 605, + 456, + 615 + ], + "score": 0.92, + "content": "\\alpha = 3 \\times 1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "and for the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 157, + 629 + ], + "score": 1.0, + "content": "adversary to", + "type": "text" + }, + { + "bbox": [ + 158, + 615, + 179, + 626 + ], + "score": 0.9, + "content": "1 0 ^ { - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 615, + 506, + 629 + ], + "score": 1.0, + "content": ". All learning rates were decreased by factor of 2 after 30 epochs, further by factor", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 627, + 433, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 433, + 639 + ], + "score": 1.0, + "content": "of 5 after 50 first epochs, and finally additional factor of 10 after 100 first epochs.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5, + "bbox_fs": [ + 104, + 593, + 506, + 639 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 643, + 486, + 655 + ], + "lines": [ + { + "bbox": [ + 105, + 642, + 487, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 385, + 657 + ], + "score": 1.0, + "content": "Both encoder and decoder used fully convolutional architectures with", + "type": "text" + }, + { + "bbox": [ + 385, + 644, + 402, + 654 + ], + "score": 0.37, + "content": "5 \\mathrm { x } 5", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 642, + 487, + 657 + ], + "score": 1.0, + "content": "convolutional filters.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 642, + 487, + 657 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 661, + 193, + 672 + ], + "lines": [ + { + "bbox": [ + 106, + 659, + 195, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 195, + 673 + ], + "score": 1.0, + "content": "Encoder architecture:", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39, + "bbox_fs": [ + 106, + 659, + 195, + 673 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 192, + 672, + 420, + 731 + ], + "lines": [ + { + "bbox": [ + 192, + 672, + 420, + 731 + ], + "spans": [ + { + "bbox": [ + 192, + 672, + 420, + 731 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { x \\in \\mathcal { R } ^ { 6 4 \\times 6 4 \\times 3 } \\to \\mathrm { C o n v _ { 1 2 8 } } \\to \\mathrm { B N } \\to \\mathrm { R e L U } } \\\\ & { \\qquad \\to \\mathrm { C o n v _ { 2 5 6 } } \\to \\mathrm { B N } \\to \\mathrm { R e L U } } \\\\ & { \\qquad \\to \\mathrm { C o n v _ { 5 1 2 } } \\to \\mathrm { B N } \\to \\mathrm { R e L U } } \\\\ & { \\qquad \\to \\mathrm { C o n v _ { 1 0 2 4 } } \\to \\mathrm { B N } \\to \\mathrm { R e L U } \\to \\mathrm { F C } _ { 6 4 } } \\end{array}", + "type": "interline_equation", + "image_path": "0b4a05953840371a154045fa91646c9656f16a1d3250d31dbf4bb2d438b78793.jpg" + } + ] + } + ], + "index": 41.5, + "virtual_lines": [ + { + "bbox": [ + 192, + 672, + 420, + 686.75 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 192, + 686.75, + 420, + 701.5 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 192, + 701.5, + 420, + 716.25 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 192, + 716.25, + 420, + 731.0 + ], + "spans": [], + "index": 43 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 194, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 195, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 195, + 95 + ], + "score": 1.0, + "content": "Decoder architecture:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 191, + 98, + 417, + 156 + ], + "lines": [ + { + "bbox": [ + 191, + 98, + 417, + 156 + ], + "spans": [ + { + "bbox": [ + 191, + 98, + 417, + 156 + ], + "score": 0.88, + "content": "\\begin{array} { r l } { z \\in \\mathcal { R } ^ { 6 4 } \\mathrm { F C } _ { 8 \\times 8 \\times 1 0 2 4 } } & { } \\\\ { \\mathrm { F S C o n v } _ { 5 1 2 } \\mathrm { B N } \\mathrm { R e L U } } \\\\ { \\mathrm { F S C o n v } _ { 2 5 6 } \\mathrm { B N } \\mathrm { R e L U } } & { } \\\\ { \\mathrm { F S C o n v } _ { 1 2 8 } \\mathrm { B N } \\mathrm { R e L U } \\mathrm { F S C o n v } _ { 1 } } \\end{array}", + "type": "interline_equation", + "image_path": "3e05e6baaffed94a4836e3264097296730055df532749b1f7b051889c00086f8.jpg" + } + ] + } + ], + "index": 2.5, + "virtual_lines": [ + { + "bbox": [ + 191, + 98, + 417, + 112.5 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 191, + 112.5, + 417, + 127.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 191, + 127.0, + 417, + 141.5 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 191, + 141.5, + 417, + 156.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 166, + 265, + 178 + ], + "lines": [ + { + "bbox": [ + 105, + 166, + 266, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 266, + 179 + ], + "score": 1.0, + "content": "Adversary architecture for WAE-GAN:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 228, + 181, + 382, + 240 + ], + "lines": [ + { + "bbox": [ + 228, + 181, + 382, + 240 + ], + "spans": [ + { + "bbox": [ + 228, + 181, + 382, + 240 + ], + "score": 0.92, + "content": "\\begin{array} { r l } { z \\in \\mathcal { R } ^ { 6 4 } \\to \\mathrm { F C } _ { 5 1 2 } \\to \\mathrm { R e L U } } \\\\ { \\to \\mathrm { F C } _ { 5 1 2 } \\to \\mathrm { R e L U } } \\\\ { \\to \\mathrm { F C } _ { 5 1 2 } \\to \\mathrm { R e L U } } \\\\ { \\to \\mathrm { F C } _ { 5 1 2 } \\to \\mathrm { R e L U } \\to \\mathrm { F C } _ { 1 } } \\end{array}", + "type": "interline_equation", + "image_path": "efe2c9405faf9db2c3548f178daba26ef0ed251f5b288574f892bd82ed35f8f0.jpg" + } + ] + } + ], + "index": 7.5, + "virtual_lines": [ + { + "bbox": [ + 228, + 181, + 382, + 195.75 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 228, + 195.75, + 382, + 210.5 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 228, + 210.5, + 382, + 225.25 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 228, + 225.25, + 382, + 240.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 249, + 505, + 306 + ], + "lines": [ + { + "bbox": [ + 106, + 249, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 374, + 262 + ], + "score": 1.0, + "content": "For WAE-GAN we used a heuristic proposed in Supplementary", + "type": "text" + }, + { + "bbox": [ + 374, + 250, + 387, + 260 + ], + "score": 0.27, + "content": "\\mathrm { I V }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 249, + 505, + 262 + ], + "score": 1.0, + "content": "of Mescheder et al. (2017).", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 259, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 371, + 274 + ], + "score": 1.0, + "content": "Notice that the theoretically optimal discriminator would result in", + "type": "text" + }, + { + "bbox": [ + 371, + 261, + 501, + 273 + ], + "score": 0.92, + "content": "D ^ { * } ( z ) = \\log p _ { Z } ( z ) - \\log q _ { Z } ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 259, + 505, + 274 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 269, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 104, + 269, + 133, + 286 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 273, + 147, + 283 + ], + "score": 0.84, + "content": "p _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 269, + 166, + 286 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 167, + 273, + 178, + 283 + ], + "score": 0.84, + "content": "q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 269, + 246, + 286 + ], + "score": 1.0, + "content": "are densities of", + "type": "text" + }, + { + "bbox": [ + 246, + 272, + 260, + 283 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 269, + 279, + 286 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 280, + 272, + 295, + 284 + ], + "score": 0.89, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 269, + 506, + 286 + ], + "score": 1.0, + "content": "respectively. In our experiments we added the log", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 282, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 128, + 296 + ], + "score": 1.0, + "content": "prior", + "type": "text" + }, + { + "bbox": [ + 128, + 283, + 168, + 295 + ], + "score": 0.91, + "content": "\\log p _ { Z } ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 282, + 505, + 296 + ], + "score": 1.0, + "content": "explicitly to the adversary output as we know it analytically. This should hopefully", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 294, + 395, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 324, + 306 + ], + "score": 1.0, + "content": "make it easier for the adversary to learn the remaining", + "type": "text" + }, + { + "bbox": [ + 324, + 294, + 340, + 306 + ], + "score": 0.89, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 294, + 395, + 306 + ], + "score": 1.0, + "content": "density term.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 310, + 504, + 344 + ], + "lines": [ + { + "bbox": [ + 105, + 309, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 446, + 324 + ], + "score": 1.0, + "content": "Our VAE model used a cross-entropy reconstruction loss (Bernoulli decoder) and", + "type": "text" + }, + { + "bbox": [ + 446, + 310, + 492, + 321 + ], + "score": 0.91, + "content": "\\alpha = 1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 309, + 506, + 324 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 322, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 506, + 334 + ], + "score": 1.0, + "content": "the initial Adam learning rate and the same decay schedule as explained above. Otherwise all the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 333, + 348, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 348, + 345 + ], + "score": 1.0, + "content": "architectures and hyperparameters were as explained above.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + } + ], + "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 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": "text", + "bbox": [ + 107, + 82, + 194, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 195, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 195, + 95 + ], + "score": 1.0, + "content": "Decoder architecture:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 81, + 195, + 95 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 191, + 98, + 417, + 156 + ], + "lines": [ + { + "bbox": [ + 191, + 98, + 417, + 156 + ], + "spans": [ + { + "bbox": [ + 191, + 98, + 417, + 156 + ], + "score": 0.88, + "content": "\\begin{array} { r l } { z \\in \\mathcal { R } ^ { 6 4 } \\mathrm { F C } _ { 8 \\times 8 \\times 1 0 2 4 } } & { } \\\\ { \\mathrm { F S C o n v } _ { 5 1 2 } \\mathrm { B N } \\mathrm { R e L U } } \\\\ { \\mathrm { F S C o n v } _ { 2 5 6 } \\mathrm { B N } \\mathrm { R e L U } } & { } \\\\ { \\mathrm { F S C o n v } _ { 1 2 8 } \\mathrm { B N } \\mathrm { R e L U } \\mathrm { F S C o n v } _ { 1 } } \\end{array}", + "type": "interline_equation", + "image_path": "3e05e6baaffed94a4836e3264097296730055df532749b1f7b051889c00086f8.jpg" + } + ] + } + ], + "index": 2.5, + "virtual_lines": [ + { + "bbox": [ + 191, + 98, + 417, + 112.5 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 191, + 112.5, + 417, + 127.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 191, + 127.0, + 417, + 141.5 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 191, + 141.5, + 417, + 156.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 166, + 265, + 178 + ], + "lines": [ + { + "bbox": [ + 105, + 166, + 266, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 266, + 179 + ], + "score": 1.0, + "content": "Adversary architecture for WAE-GAN:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 166, + 266, + 179 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 228, + 181, + 382, + 240 + ], + "lines": [ + { + "bbox": [ + 228, + 181, + 382, + 240 + ], + "spans": [ + { + "bbox": [ + 228, + 181, + 382, + 240 + ], + "score": 0.92, + "content": "\\begin{array} { r l } { z \\in \\mathcal { R } ^ { 6 4 } \\to \\mathrm { F C } _ { 5 1 2 } \\to \\mathrm { R e L U } } \\\\ { \\to \\mathrm { F C } _ { 5 1 2 } \\to \\mathrm { R e L U } } \\\\ { \\to \\mathrm { F C } _ { 5 1 2 } \\to \\mathrm { R e L U } } \\\\ { \\to \\mathrm { F C } _ { 5 1 2 } \\to \\mathrm { R e L U } \\to \\mathrm { F C } _ { 1 } } \\end{array}", + "type": "interline_equation", + "image_path": "efe2c9405faf9db2c3548f178daba26ef0ed251f5b288574f892bd82ed35f8f0.jpg" + } + ] + } + ], + "index": 7.5, + "virtual_lines": [ + { + "bbox": [ + 228, + 181, + 382, + 195.75 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 228, + 195.75, + 382, + 210.5 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 228, + 210.5, + 382, + 225.25 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 228, + 225.25, + 382, + 240.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 249, + 505, + 306 + ], + "lines": [ + { + "bbox": [ + 106, + 249, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 374, + 262 + ], + "score": 1.0, + "content": "For WAE-GAN we used a heuristic proposed in Supplementary", + "type": "text" + }, + { + "bbox": [ + 374, + 250, + 387, + 260 + ], + "score": 0.27, + "content": "\\mathrm { I V }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 249, + 505, + 262 + ], + "score": 1.0, + "content": "of Mescheder et al. (2017).", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 259, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 371, + 274 + ], + "score": 1.0, + "content": "Notice that the theoretically optimal discriminator would result in", + "type": "text" + }, + { + "bbox": [ + 371, + 261, + 501, + 273 + ], + "score": 0.92, + "content": "D ^ { * } ( z ) = \\log p _ { Z } ( z ) - \\log q _ { Z } ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 259, + 505, + 274 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 269, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 104, + 269, + 133, + 286 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 273, + 147, + 283 + ], + "score": 0.84, + "content": "p _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 269, + 166, + 286 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 167, + 273, + 178, + 283 + ], + "score": 0.84, + "content": "q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 269, + 246, + 286 + ], + "score": 1.0, + "content": "are densities of", + "type": "text" + }, + { + "bbox": [ + 246, + 272, + 260, + 283 + ], + "score": 0.89, + "content": "P _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 269, + 279, + 286 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 280, + 272, + 295, + 284 + ], + "score": 0.89, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 269, + 506, + 286 + ], + "score": 1.0, + "content": "respectively. In our experiments we added the log", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 282, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 128, + 296 + ], + "score": 1.0, + "content": "prior", + "type": "text" + }, + { + "bbox": [ + 128, + 283, + 168, + 295 + ], + "score": 0.91, + "content": "\\log p _ { Z } ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 282, + 505, + 296 + ], + "score": 1.0, + "content": "explicitly to the adversary output as we know it analytically. This should hopefully", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 294, + 395, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 324, + 306 + ], + "score": 1.0, + "content": "make it easier for the adversary to learn the remaining", + "type": "text" + }, + { + "bbox": [ + 324, + 294, + 340, + 306 + ], + "score": 0.89, + "content": "Q _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 294, + 395, + 306 + ], + "score": 1.0, + "content": "density term.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12, + "bbox_fs": [ + 104, + 249, + 506, + 306 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 310, + 504, + 344 + ], + "lines": [ + { + "bbox": [ + 105, + 309, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 446, + 324 + ], + "score": 1.0, + "content": "Our VAE model used a cross-entropy reconstruction loss (Bernoulli decoder) and", + "type": "text" + }, + { + "bbox": [ + 446, + 310, + 492, + 321 + ], + "score": 0.91, + "content": "\\alpha = 1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 309, + 506, + 324 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 322, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 506, + 334 + ], + "score": 1.0, + "content": "the initial Adam learning rate and the same decay schedule as explained above. Otherwise all the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 333, + 348, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 348, + 345 + ], + "score": 1.0, + "content": "architectures and hyperparameters were as explained above.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 309, + 506, + 345 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/HkL7n1-0b/HkL7n1-0b_model.json b/parse/train/HkL7n1-0b/HkL7n1-0b_model.json new file mode 100644 index 0000000000000000000000000000000000000000..bcf89ef8e24f029979471062da333b63a0ef01f6 --- /dev/null +++ b/parse/train/HkL7n1-0b/HkL7n1-0b_model.json @@ -0,0 +1,31728 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1286, + 1404, + 1286, + 1404, + 1683, + 298, + 1683 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1698, + 1404, + 1698, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 398, + 777, + 1302, + 777, + 1302, + 1112, + 398, + 1112 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 314, + 321, + 627, + 321, + 627, + 445, + 314, + 445 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 1047, + 321, + 1386, + 321, + 1386, + 445, + 1047, + 445 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 314, + 491, + 701, + 491, + 701, + 614, + 314, + 614 + ], + "score": 0.955 + }, + { + "category_id": 0, + "poly": [ + 300, + 221, + 971, + 221, + 971, + 268, + 300, + 268 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 900, + 491, + 1213, + 491, + 1213, + 613, + 900, + 613 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 302, + 1204, + 573, + 1204, + 573, + 1239, + 302, + 1239 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 104, + 299, + 104 + ], + "score": 0.849 + }, + { + "category_id": 0, + "poly": [ + 773, + 695, + 926, + 695, + 926, + 728, + 773, + 728 + ], + "score": 0.825 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 857, + 2088, + 857, + 2112, + 842, + 2112 + ], + "score": 0.639 + }, + { + "category_id": 0, + "poly": [ + 315, + 492, + 473, + 492, + 473, + 522, + 315, + 522 + ], + "score": 0.178 + }, + { + "category_id": 0, + "poly": [ + 903, + 492, + 1144, + 492, + 1144, + 521, + 903, + 521 + ], + "score": 0.114 + }, + { + "category_id": 13, + "poly": [ + 1070, + 1883, + 1090, + 1883, + 1090, + 1914, + 1070, + 1914 + ], + "score": 0.84, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 298, + 1821, + 317, + 1821, + 317, + 1853, + 298, + 1853 + ], + "score": 0.84, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 471, + 1883, + 498, + 1883, + 498, + 1909, + 471, + 1909 + ], + "score": 0.73, + "latex": "\\mathcal { X }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 216.0, + 975.0, + 216.0, + 975.0, + 275.0, + 295.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1201.0, + 579.0, + 1201.0, + 579.0, + 1248.0, + 294.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 694.0, + 932.0, + 694.0, + 932.0, + 731.0, + 769.0, + 731.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": [ + 310.0, + 485.0, + 479.0, + 485.0, + 479.0, + 532.0, + 310.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 487.0, + 1149.0, + 487.0, + 1149.0, + 529.0, + 898.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1283.0, + 1406.0, + 1283.0, + 1406.0, + 1324.0, + 293.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1316.0, + 1408.0, + 1316.0, + 1408.0, + 1352.0, + 294.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1347.0, + 1406.0, + 1347.0, + 1406.0, + 1382.0, + 293.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1377.0, + 1405.0, + 1377.0, + 1405.0, + 1413.0, + 293.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1408.0, + 1404.0, + 1408.0, + 1404.0, + 1444.0, + 293.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1438.0, + 1405.0, + 1438.0, + 1405.0, + 1473.0, + 293.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1468.0, + 1406.0, + 1468.0, + 1406.0, + 1504.0, + 293.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1499.0, + 1404.0, + 1499.0, + 1404.0, + 1534.0, + 293.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1531.0, + 1404.0, + 1531.0, + 1404.0, + 1563.0, + 294.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1560.0, + 1405.0, + 1560.0, + 1405.0, + 1596.0, + 293.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1588.0, + 1404.0, + 1588.0, + 1404.0, + 1627.0, + 293.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1622.0, + 1404.0, + 1622.0, + 1404.0, + 1654.0, + 296.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1653.0, + 846.0, + 1653.0, + 846.0, + 1685.0, + 297.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1695.0, + 1405.0, + 1695.0, + 1405.0, + 1736.0, + 292.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1726.0, + 1405.0, + 1726.0, + 1405.0, + 1766.0, + 293.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1758.0, + 1405.0, + 1758.0, + 1405.0, + 1795.0, + 293.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1788.0, + 1405.0, + 1788.0, + 1405.0, + 1828.0, + 292.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1819.0, + 297.0, + 1819.0, + 297.0, + 1857.0, + 294.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1819.0, + 1405.0, + 1819.0, + 1405.0, + 1857.0, + 318.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1849.0, + 1408.0, + 1849.0, + 1408.0, + 1891.0, + 292.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1882.0, + 470.0, + 1882.0, + 470.0, + 1917.0, + 294.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 1882.0, + 1069.0, + 1882.0, + 1069.0, + 1917.0, + 499.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 1882.0, + 1404.0, + 1882.0, + 1404.0, + 1917.0, + 1091.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 1402.0, + 1912.0, + 1402.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1943.0, + 1404.0, + 1943.0, + 1404.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1970.0, + 1406.0, + 1970.0, + 1406.0, + 2010.0, + 292.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2006.0, + 558.0, + 2006.0, + 558.0, + 2037.0, + 296.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 776.0, + 1305.0, + 776.0, + 1305.0, + 814.0, + 395.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 808.0, + 1306.0, + 808.0, + 1306.0, + 841.0, + 391.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 839.0, + 1304.0, + 839.0, + 1304.0, + 871.0, + 394.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 869.0, + 1305.0, + 869.0, + 1305.0, + 902.0, + 394.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 896.0, + 1306.0, + 896.0, + 1306.0, + 936.0, + 393.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 929.0, + 1305.0, + 929.0, + 1305.0, + 963.0, + 394.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 958.0, + 1308.0, + 958.0, + 1308.0, + 997.0, + 392.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 989.0, + 1307.0, + 989.0, + 1307.0, + 1025.0, + 393.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1021.0, + 1304.0, + 1021.0, + 1304.0, + 1053.0, + 395.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1051.0, + 1304.0, + 1051.0, + 1304.0, + 1087.0, + 394.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1081.0, + 710.0, + 1081.0, + 710.0, + 1118.0, + 393.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 321.0, + 492.0, + 321.0, + 492.0, + 352.0, + 312.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 349.0, + 630.0, + 349.0, + 630.0, + 388.0, + 311.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 380.0, + 544.0, + 380.0, + 544.0, + 419.0, + 311.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 412.0, + 570.0, + 412.0, + 570.0, + 450.0, + 312.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 318.0, + 1257.0, + 318.0, + 1257.0, + 356.0, + 1045.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 350.0, + 1208.0, + 350.0, + 1208.0, + 387.0, + 1045.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 382.0, + 1275.0, + 382.0, + 1275.0, + 414.0, + 1046.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 416.0, + 1387.0, + 416.0, + 1387.0, + 447.0, + 1049.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 487.0, + 479.0, + 487.0, + 479.0, + 528.0, + 310.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 520.0, + 473.0, + 520.0, + 473.0, + 554.0, + 311.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 552.0, + 541.0, + 552.0, + 541.0, + 583.0, + 312.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 584.0, + 702.0, + 584.0, + 702.0, + 616.0, + 314.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 491.0, + 1150.0, + 491.0, + 1150.0, + 525.0, + 900.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 518.0, + 1216.0, + 518.0, + 1216.0, + 557.0, + 898.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 551.0, + 1129.0, + 551.0, + 1129.0, + 589.0, + 897.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 582.0, + 1124.0, + 582.0, + 1124.0, + 620.0, + 896.0, + 620.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1850, + 1404, + 1850, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.975 + }, + { + "category_id": 4, + "poly": [ + 296, + 677, + 1404, + 677, + 1404, + 922, + 296, + 922 + ], + "score": 0.969 + }, + { + "category_id": 3, + "poly": [ + 331, + 221, + 1368, + 221, + 1368, + 643, + 331, + 643 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 300, + 991, + 1403, + 991, + 1403, + 1116, + 300, + 1116 + ], + "score": 0.966 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 814, + 76, + 814, + 104, + 299, + 104 + ], + "score": 0.888 + }, + { + "category_id": 1, + "poly": [ + 366, + 1146, + 1405, + 1146, + 1405, + 1822, + 366, + 1822 + ], + "score": 0.849 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.712 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.163 + }, + { + "category_id": 13, + "poly": [ + 825, + 1239, + 975, + 1239, + 975, + 1272, + 825, + 1272 + ], + "score": 0.94, + "latex": "\\mathcal { D } _ { Z } ( P _ { Z } , Q _ { Z } )" + }, + { + "category_id": 13, + "poly": [ + 392, + 829, + 659, + 829, + 659, + 866, + 392, + 866 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\dot { Q _ { Z } } : = \\int Q ( Z | X ) \\dot { d } P _ { X } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 975, + 1523, + 1125, + 1523, + 1125, + 1557, + 975, + 1557 + ], + "score": 0.93, + "latex": "\\mathcal { D } _ { Z } ( P _ { Z } , Q _ { Z } )" + }, + { + "category_id": 13, + "poly": [ + 718, + 993, + 865, + 993, + 865, + 1027, + 718, + 1027 + ], + "score": 0.93, + "latex": "W _ { c } ( P _ { X } , P _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 1142, + 1269, + 1393, + 1269, + 1393, + 1303, + 1142, + 1303 + ], + "score": 0.93, + "latex": "Q _ { Z } \\backslash = \\dot { \\mathbb { E } } _ { P _ { X } } [ Q ( Z | X ) ]" + }, + { + "category_id": 13, + "poly": [ + 1211, + 1178, + 1359, + 1178, + 1359, + 1212, + 1211, + 1212 + ], + "score": 0.92, + "latex": "W _ { c } ( P _ { X } , P _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 584, + 1055, + 698, + 1055, + 698, + 1088, + 584, + 1088 + ], + "score": 0.92, + "latex": "P _ { G } ( X | Z )" + }, + { + "category_id": 13, + "poly": [ + 1313, + 1024, + 1401, + 1024, + 1401, + 1053, + 1313, + 1053 + ], + "score": 0.92, + "latex": "Z \\in { \\mathcal { Z } }" + }, + { + "category_id": 13, + "poly": [ + 1132, + 1789, + 1233, + 1789, + 1233, + 1821, + 1132, + 1821 + ], + "score": 0.92, + "latex": "Q ( Z | X )" + }, + { + "category_id": 13, + "poly": [ + 1248, + 709, + 1400, + 709, + 1400, + 743, + 1248, + 743 + ], + "score": 0.91, + "latex": "Q ( Z | X = x )" + }, + { + "category_id": 13, + "poly": [ + 397, + 1410, + 508, + 1410, + 508, + 1446, + 397, + 1446 + ], + "score": 0.91, + "latex": "\\| x - y \\| _ { 2 } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1105, + 1757, + 1253, + 1757, + 1253, + 1790, + 1105, + 1790 + ], + "score": 0.91, + "latex": "W _ { c } ( P _ { X } , P _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 1292, + 1381, + 1405, + 1381, + 1405, + 1414, + 1292, + 1414 + ], + "score": 0.91, + "latex": "c ( x , y ) =" + }, + { + "category_id": 13, + "poly": [ + 902, + 1055, + 989, + 1055, + 989, + 1083, + 902, + 1083 + ], + "score": 0.9, + "latex": "X \\in { \\mathcal { X } }" + }, + { + "category_id": 13, + "poly": [ + 747, + 1301, + 789, + 1301, + 789, + 1331, + 747, + 1331 + ], + "score": 0.9, + "latex": "\\mathcal { D } _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 1095, + 1025, + 1134, + 1025, + 1134, + 1055, + 1095, + 1055 + ], + "score": 0.9, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 404, + 741, + 443, + 741, + 443, + 770, + 404, + 770 + ], + "score": 0.89, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 441, + 1882, + 483, + 1882, + 483, + 1912, + 441, + 1912 + ], + "score": 0.89, + "latex": "P _ { X }" + }, + { + "category_id": 13, + "poly": [ + 545, + 1616, + 584, + 1616, + 584, + 1646, + 545, + 1646 + ], + "score": 0.89, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 1018, + 741, + 1059, + 741, + 1059, + 770, + 1018, + 770 + ], + "score": 0.89, + "latex": "P _ { X }" + }, + { + "category_id": 13, + "poly": [ + 771, + 831, + 809, + 831, + 809, + 862, + 771, + 862 + ], + "score": 0.89, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 595, + 711, + 634, + 711, + 634, + 740, + 595, + 740 + ], + "score": 0.89, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1025, + 339, + 1025, + 339, + 1055, + 298, + 1055 + ], + "score": 0.88, + "latex": "P _ { X }" + }, + { + "category_id": 13, + "poly": [ + 866, + 771, + 905, + 771, + 905, + 802, + 866, + 802 + ], + "score": 0.88, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 822, + 1882, + 862, + 1882, + 862, + 1912, + 822, + 1912 + ], + "score": 0.88, + "latex": "P _ { G }" + }, + { + "category_id": 13, + "poly": [ + 665, + 1025, + 704, + 1025, + 704, + 1055, + 665, + 1055 + ], + "score": 0.88, + "latex": "P _ { G }" + }, + { + "category_id": 13, + "poly": [ + 1077, + 710, + 1103, + 710, + 1103, + 740, + 1077, + 740 + ], + "score": 0.79, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 897, + 382, + 1012, + 382, + 1012, + 411, + 897, + 411 + ], + "score": 0.79, + "latex": "P _ { G } ( X | Z )" + }, + { + "category_id": 13, + "poly": [ + 331, + 382, + 448, + 382, + 448, + 412, + 331, + 412 + ], + "score": 0.79, + "latex": "| P _ { G } ( X | Z )" + }, + { + "category_id": 13, + "poly": [ + 1061, + 1056, + 1084, + 1056, + 1084, + 1082, + 1061, + 1082 + ], + "score": 0.77, + "latex": "Z" + }, + { + "category_id": 13, + "poly": [ + 470, + 1305, + 487, + 1305, + 487, + 1327, + 470, + 1327 + ], + "score": 0.73, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 875, + 1556, + 900, + 1556, + 900, + 1582, + 875, + 1582 + ], + "score": 0.72, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 741, + 489, + 766, + 489, + 766, + 509, + 741, + 509 + ], + "score": 0.72, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 852, + 745, + 872, + 745, + 872, + 768, + 852, + 768 + ], + "score": 0.7, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 605, + 1270, + 643, + 1270, + 643, + 1300, + 605, + 1300 + ], + "score": 0.7, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 398, + 1248, + 412, + 1248, + 412, + 1267, + 398, + 1267 + ], + "score": 0.66, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 1305, + 489, + 1330, + 489, + 1330, + 509, + 1305, + 509 + ], + "score": 0.57, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 512, + 294, + 550, + 294, + 550, + 323, + 512, + 323 + ], + "score": 0.49, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 741, + 316, + 764, + 316, + 764, + 337, + 741, + 337 + ], + "score": 0.47, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 593, + 1215, + 608, + 1215, + 608, + 1236, + 593, + 1236 + ], + "score": 0.45, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 1305, + 316, + 1328, + 316, + 1328, + 337, + 1305, + 337 + ], + "score": 0.42, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 568, + 1271, + 592, + 1271, + 592, + 1298, + 568, + 1298 + ], + "score": 0.28, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 1037, + 297, + 1074, + 297, + 1074, + 323, + 1037, + 323 + ], + "score": 0.28, + "latex": "P _ { Z }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 679.0, + 1401.0, + 679.0, + 1401.0, + 712.0, + 296.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 707.0, + 594.0, + 707.0, + 594.0, + 746.0, + 293.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 707.0, + 1076.0, + 707.0, + 1076.0, + 746.0, + 635.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 707.0, + 1247.0, + 707.0, + 1247.0, + 746.0, + 1104.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 707.0, + 1405.0, + 707.0, + 1405.0, + 746.0, + 1401.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 741.0, + 403.0, + 741.0, + 403.0, + 774.0, + 294.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 741.0, + 851.0, + 741.0, + 851.0, + 774.0, + 444.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 741.0, + 1017.0, + 741.0, + 1017.0, + 774.0, + 873.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 741.0, + 1406.0, + 741.0, + 1406.0, + 774.0, + 1060.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 770.0, + 865.0, + 770.0, + 865.0, + 805.0, + 294.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 770.0, + 1406.0, + 770.0, + 1406.0, + 805.0, + 906.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 798.0, + 1406.0, + 798.0, + 1406.0, + 837.0, + 293.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 829.0, + 391.0, + 829.0, + 391.0, + 867.0, + 293.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 829.0, + 770.0, + 829.0, + 770.0, + 867.0, + 660.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 829.0, + 1407.0, + 829.0, + 1407.0, + 867.0, + 810.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 861.0, + 1406.0, + 861.0, + 1406.0, + 897.0, + 293.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 893.0, + 538.0, + 893.0, + 538.0, + 923.0, + 295.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 223.0, + 613.0, + 223.0, + 613.0, + 255.0, + 518.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 223.0, + 1180.0, + 223.0, + 1180.0, + 255.0, + 1078.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 303.0, + 1172.0, + 303.0, + 1172.0, + 331.0, + 1131.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 373.0, + 452.0, + 373.0, + 452.0, + 415.0, + 449.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 366.0, + 787.0, + 366.0, + 787.0, + 406.0, + 631.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 374.0, + 1016.0, + 374.0, + 1016.0, + 413.0, + 1013.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 366.0, + 1364.0, + 366.0, + 1364.0, + 406.0, + 1202.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 597.0, + 607.0, + 597.0, + 607.0, + 634.0, + 376.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 604.0, + 1178.0, + 604.0, + 1178.0, + 645.0, + 940.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1849.0, + 1406.0, + 1849.0, + 1406.0, + 1885.0, + 296.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1880.0, + 440.0, + 1880.0, + 440.0, + 1917.0, + 293.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 1880.0, + 821.0, + 1880.0, + 821.0, + 1917.0, + 484.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 1880.0, + 1405.0, + 1880.0, + 1405.0, + 1917.0, + 863.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1913.0, + 1402.0, + 1913.0, + 1402.0, + 1945.0, + 296.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1970.0, + 1405.0, + 1970.0, + 1405.0, + 2008.0, + 292.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2004.0, + 921.0, + 2004.0, + 921.0, + 2037.0, + 293.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 990.0, + 717.0, + 990.0, + 717.0, + 1029.0, + 293.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 990.0, + 1405.0, + 990.0, + 1405.0, + 1029.0, + 866.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1024.0, + 664.0, + 1024.0, + 664.0, + 1057.0, + 340.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 1024.0, + 1094.0, + 1024.0, + 1094.0, + 1057.0, + 705.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 1024.0, + 1312.0, + 1024.0, + 1312.0, + 1057.0, + 1135.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1052.0, + 583.0, + 1052.0, + 583.0, + 1090.0, + 293.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 1052.0, + 901.0, + 1052.0, + 901.0, + 1090.0, + 699.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 1052.0, + 1060.0, + 1052.0, + 1060.0, + 1090.0, + 990.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 1052.0, + 1407.0, + 1052.0, + 1407.0, + 1090.0, + 1085.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1084.0, + 652.0, + 1084.0, + 652.0, + 1120.0, + 294.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 1147.0, + 1404.0, + 1147.0, + 1404.0, + 1181.0, + 371.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1177.0, + 1210.0, + 1177.0, + 1210.0, + 1214.0, + 394.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 1177.0, + 1406.0, + 1177.0, + 1406.0, + 1214.0, + 1360.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1208.0, + 592.0, + 1208.0, + 592.0, + 1244.0, + 393.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 1208.0, + 1406.0, + 1208.0, + 1406.0, + 1244.0, + 609.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1237.0, + 397.0, + 1237.0, + 397.0, + 1277.0, + 392.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 1237.0, + 824.0, + 1237.0, + 824.0, + 1277.0, + 413.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 1237.0, + 1406.0, + 1237.0, + 1406.0, + 1277.0, + 976.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1268.0, + 567.0, + 1268.0, + 567.0, + 1305.0, + 393.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 1268.0, + 604.0, + 1268.0, + 604.0, + 1305.0, + 593.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1268.0, + 1141.0, + 1268.0, + 1141.0, + 1305.0, + 644.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1268.0, + 1403.0, + 1268.0, + 1403.0, + 1305.0, + 1394.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1298.0, + 469.0, + 1298.0, + 469.0, + 1332.0, + 395.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 1298.0, + 746.0, + 1298.0, + 746.0, + 1332.0, + 488.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 1298.0, + 1403.0, + 1298.0, + 1403.0, + 1332.0, + 790.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1332.0, + 853.0, + 1332.0, + 853.0, + 1363.0, + 395.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 1378.0, + 1291.0, + 1378.0, + 1291.0, + 1419.0, + 387.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1410.0, + 396.0, + 1410.0, + 396.0, + 1446.0, + 392.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 1410.0, + 1406.0, + 1410.0, + 1406.0, + 1446.0, + 509.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1445.0, + 1404.0, + 1445.0, + 1404.0, + 1476.0, + 395.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1473.0, + 1050.0, + 1473.0, + 1050.0, + 1507.0, + 393.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1524.0, + 974.0, + 1524.0, + 974.0, + 1558.0, + 369.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 1524.0, + 1405.0, + 1524.0, + 1405.0, + 1558.0, + 1126.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1551.0, + 874.0, + 1551.0, + 874.0, + 1592.0, + 392.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 1551.0, + 1404.0, + 1551.0, + 1404.0, + 1592.0, + 901.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1586.0, + 1405.0, + 1586.0, + 1405.0, + 1617.0, + 393.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1616.0, + 544.0, + 1616.0, + 544.0, + 1650.0, + 395.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 1616.0, + 1403.0, + 1616.0, + 1403.0, + 1650.0, + 585.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1646.0, + 918.0, + 1646.0, + 918.0, + 1680.0, + 394.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1695.0, + 1405.0, + 1695.0, + 1405.0, + 1731.0, + 368.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1725.0, + 1405.0, + 1725.0, + 1405.0, + 1760.0, + 393.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1757.0, + 1104.0, + 1757.0, + 1104.0, + 1793.0, + 392.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 1757.0, + 1406.0, + 1757.0, + 1406.0, + 1793.0, + 1254.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1788.0, + 1131.0, + 1788.0, + 1131.0, + 1822.0, + 393.0, + 1822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 1788.0, + 1249.0, + 1788.0, + 1249.0, + 1822.0, + 1234.0, + 1822.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 612, + 1405, + 612, + 1405, + 844, + 297, + 844 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 297, + 1404, + 297, + 1404, + 514, + 297, + 514 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1500, + 1403, + 1500, + 1403, + 1656, + 298, + 1656 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1098, + 1404, + 1098, + 1404, + 1224, + 298, + 1224 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1669, + 1405, + 1669, + 1405, + 1947, + 297, + 1947 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 293, + 942, + 1398, + 942, + 1398, + 1006, + 293, + 1006 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 537, + 1287, + 1161, + 1287, + 1161, + 1349, + 537, + 1349 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 529, + 1024, + 1169, + 1024, + 1169, + 1079, + 529, + 1079 + ], + "score": 0.946 + }, + { + "category_id": 2, + "poly": [ + 296, + 1977, + 1405, + 1977, + 1405, + 2033, + 296, + 2033 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 298, + 1368, + 1069, + 1368, + 1069, + 1402, + 298, + 1402 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 299, + 1237, + 1165, + 1237, + 1165, + 1272, + 299, + 1272 + ], + "score": 0.925 + }, + { + "category_id": 0, + "poly": [ + 300, + 226, + 635, + 226, + 635, + 261, + 300, + 261 + ], + "score": 0.906 + }, + { + "category_id": 0, + "poly": [ + 298, + 885, + 998, + 885, + 998, + 915, + 298, + 915 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1028, + 1400, + 1028, + 1400, + 1059, + 1366, + 1059 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.889 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1293, + 1400, + 1293, + 1400, + 1323, + 1366, + 1323 + ], + "score": 0.887 + }, + { + "category_id": 0, + "poly": [ + 301, + 555, + 755, + 555, + 755, + 586, + 301, + 586 + ], + "score": 0.723 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.676 + }, + { + "category_id": 0, + "poly": [ + 301, + 1442, + 1231, + 1442, + 1231, + 1475, + 301, + 1475 + ], + "score": 0.537 + }, + { + "category_id": 0, + "poly": [ + 302, + 555, + 755, + 555, + 755, + 586, + 302, + 586 + ], + "score": 0.49 + }, + { + "category_id": 1, + "poly": [ + 301, + 1442, + 1231, + 1442, + 1231, + 1475, + 301, + 1475 + ], + "score": 0.464 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.346 + }, + { + "category_id": 13, + "poly": [ + 893, + 298, + 1041, + 298, + 1041, + 331, + 893, + 331 + ], + "score": 0.95, + "latex": "W _ { c } ( P _ { X } , P _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 371, + 1239, + 564, + 1239, + 564, + 1273, + 371, + 1273 + ], + "score": 0.93, + "latex": "c ( x , y ) = d ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 368, + 451, + 518, + 451, + 518, + 485, + 368, + 485 + ], + "score": 0.93, + "latex": "\\mathcal { D } _ { Z } ( Q _ { Z } , P _ { Z } )" + }, + { + "category_id": 13, + "poly": [ + 766, + 1671, + 931, + 1671, + 931, + 1705, + 766, + 1705 + ], + "score": 0.93, + "latex": "D _ { \\mathrm { K L } } ( P _ { X } , P _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 468, + 1701, + 658, + 1701, + 658, + 1735, + 468, + 1735 + ], + "score": 0.93, + "latex": "E _ { P _ { X } } [ \\bar { \\log { p _ { G } ( X ) } } ]" + }, + { + "category_id": 13, + "poly": [ + 848, + 1824, + 996, + 1824, + 996, + 1857, + 848, + 1857 + ], + "score": 0.93, + "latex": "W _ { c } ( P _ { X } , P _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 540, + 420, + 800, + 420, + 800, + 454, + 540, + 454 + ], + "score": 0.93, + "latex": "{ \\dot { Q } } _ { Z } : = \\mathbb { E } _ { P _ { X } } [ Q ( Z | X ) ]" + }, + { + "category_id": 14, + "poly": [ + 537, + 1288, + 1160, + 1288, + 1160, + 1350, + 537, + 1350 + ], + "score": 0.93, + "latex": "W _ { 1 } ( P _ { X } , P _ { G } ) = \\operatorname* { s u p } _ { f \\in { \\mathcal { F } } _ { L } } \\mathbb { E } _ { X \\sim P _ { X } } [ f ( X ) ] - \\mathbb { E } _ { Y \\sim P _ { G } } [ f ( Y ) ] ," + }, + { + "category_id": 13, + "poly": [ + 988, + 1369, + 1061, + 1369, + 1061, + 1403, + 988, + 1403 + ], + "score": 0.92, + "latex": "( \\mathcal { X } , d )" + }, + { + "category_id": 13, + "poly": [ + 1039, + 1762, + 1187, + 1762, + 1187, + 1796, + 1039, + 1796 + ], + "score": 0.92, + "latex": "D _ { f } ( P _ { X } , P _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 955, + 737, + 1395, + 737, + 1395, + 783, + 955, + 783 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { D _ { f } ( P _ { X } \\| P _ { G } ) : = \\int f \\big ( \\frac { p _ { X } ( x ) } { p _ { G } ( x ) } \\big ) p _ { G } ( x ) d x } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 450, + 1162, + 523, + 1162, + 523, + 1195, + 450, + 1195 + ], + "score": 0.92, + "latex": "( \\mathcal { X } , d )" + }, + { + "category_id": 13, + "poly": [ + 774, + 1162, + 986, + 1162, + 986, + 1195, + 774, + 1195 + ], + "score": 0.92, + "latex": "c ( x , y ) = d ^ { p } ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 934, + 780, + 1042, + 780, + 1042, + 814, + 934, + 814 + ], + "score": 0.92, + "latex": "f ( 1 ) = 0" + }, + { + "category_id": 14, + "poly": [ + 530, + 1023, + 1166, + 1023, + 1166, + 1079, + 530, + 1079 + ], + "score": 0.92, + "latex": "W _ { c } ( P _ { X } , P _ { G } ) : = \\operatorname* { i n f } _ { \\Gamma \\in { \\mathcal { P } } ( X \\sim P _ { X } , Y \\sim P _ { G } ) } \\mathbb { E } _ { ( X , Y ) \\sim \\Gamma } [ c ( X , Y ) ] ," + }, + { + "category_id": 13, + "poly": [ + 1036, + 1100, + 1289, + 1100, + 1289, + 1133, + 1036, + 1133 + ], + "score": 0.91, + "latex": "{ \\mathcal { P } } ( X \\sim P _ { X } , Y \\sim P _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 570, + 1133, + 650, + 1133, + 650, + 1164, + 570, + 1164 + ], + "score": 0.91, + "latex": "( X , Y )" + }, + { + "category_id": 13, + "poly": [ + 372, + 1100, + 632, + 1100, + 632, + 1133, + 372, + 1133 + ], + "score": 0.91, + "latex": "c ( x , y ) \\colon \\mathcal { X } \\times \\mathcal { X } \\to \\mathcal { R } _ { + }" + }, + { + "category_id": 13, + "poly": [ + 374, + 779, + 557, + 779, + 557, + 813, + 374, + 813 + ], + "score": 0.91, + "latex": "f \\colon ( 0 , \\infty ) \\to { \\mathcal { R } }" + }, + { + "category_id": 13, + "poly": [ + 368, + 1794, + 428, + 1794, + 428, + 1824, + 368, + 1824 + ], + "score": 0.91, + "latex": "D _ { \\mathrm { K L } } ," + }, + { + "category_id": 13, + "poly": [ + 1143, + 1534, + 1184, + 1534, + 1184, + 1563, + 1143, + 1563 + ], + "score": 0.9, + "latex": "P _ { X }" + }, + { + "category_id": 13, + "poly": [ + 346, + 675, + 426, + 675, + 426, + 709, + 346, + 709 + ], + "score": 0.9, + "latex": "P ( X ) )" + }, + { + "category_id": 13, + "poly": [ + 926, + 1595, + 968, + 1595, + 968, + 1624, + 926, + 1624 + ], + "score": 0.9, + "latex": "P _ { X }" + }, + { + "category_id": 13, + "poly": [ + 1031, + 1163, + 1104, + 1163, + 1104, + 1194, + 1031, + 1194 + ], + "score": 0.9, + "latex": "p \\geq 1" + }, + { + "category_id": 13, + "poly": [ + 1354, + 1534, + 1393, + 1534, + 1393, + 1563, + 1354, + 1563 + ], + "score": 0.9, + "latex": "P _ { G }" + }, + { + "category_id": 13, + "poly": [ + 790, + 811, + 841, + 811, + 841, + 842, + 790, + 842 + ], + "score": 0.9, + "latex": "D _ { \\mathrm { J S } }" + }, + { + "category_id": 13, + "poly": [ + 1151, + 1595, + 1191, + 1595, + 1191, + 1624, + 1151, + 1624 + ], + "score": 0.89, + "latex": "P _ { G }" + }, + { + "category_id": 13, + "poly": [ + 1257, + 1163, + 1297, + 1163, + 1297, + 1196, + 1257, + 1196 + ], + "score": 0.89, + "latex": "W _ { p }" + }, + { + "category_id": 13, + "poly": [ + 945, + 422, + 984, + 422, + 984, + 451, + 945, + 451 + ], + "score": 0.89, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 830, + 1133, + 870, + 1133, + 870, + 1161, + 830, + 1161 + ], + "score": 0.89, + "latex": "P _ { X }" + }, + { + "category_id": 13, + "poly": [ + 372, + 1371, + 411, + 1371, + 411, + 1400, + 372, + 1400 + ], + "score": 0.89, + "latex": "\\mathcal { F } _ { L }" + }, + { + "category_id": 13, + "poly": [ + 724, + 1982, + 761, + 1982, + 761, + 2008, + 724, + 2008 + ], + "score": 0.88, + "latex": "W _ { p }" + }, + { + "category_id": 13, + "poly": [ + 495, + 813, + 553, + 813, + 553, + 841, + 495, + 841 + ], + "score": 0.88, + "latex": "D _ { \\mathrm { K L } }" + }, + { + "category_id": 13, + "poly": [ + 1076, + 675, + 1135, + 675, + 1135, + 708, + 1076, + 708 + ], + "score": 0.88, + "latex": "p ( x ) )" + }, + { + "category_id": 13, + "poly": [ + 924, + 1133, + 963, + 1133, + 963, + 1162, + 924, + 1162 + ], + "score": 0.88, + "latex": "P _ { G }" + }, + { + "category_id": 13, + "poly": [ + 1142, + 707, + 1183, + 707, + 1183, + 736, + 1142, + 736 + ], + "score": 0.88, + "latex": "P _ { X }" + }, + { + "category_id": 13, + "poly": [ + 380, + 1193, + 419, + 1193, + 419, + 1223, + 380, + 1223 + ], + "score": 0.87, + "latex": "W _ { c }" + }, + { + "category_id": 13, + "poly": [ + 1238, + 706, + 1276, + 706, + 1276, + 736, + 1238, + 736 + ], + "score": 0.87, + "latex": "P _ { G }" + }, + { + "category_id": 13, + "poly": [ + 1274, + 1979, + 1311, + 1979, + 1311, + 2004, + 1274, + 2004 + ], + "score": 0.86, + "latex": "W _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 886, + 1764, + 905, + 1764, + 905, + 1795, + 886, + 1795 + ], + "score": 0.86, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 331, + 743, + 350, + 743, + 350, + 775, + 331, + 775 + ], + "score": 0.85, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 808, + 1979, + 844, + 1979, + 844, + 2005, + 808, + 2005 + ], + "score": 0.85, + "latex": "W _ { c }" + }, + { + "category_id": 13, + "poly": [ + 1073, + 1796, + 1092, + 1796, + 1092, + 1825, + 1073, + 1825 + ], + "score": 0.85, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1352, + 1165, + 1370, + 1165, + 1370, + 1194, + 1352, + 1194 + ], + "score": 0.81, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 570, + 1198, + 586, + 1198, + 586, + 1225, + 570, + 1225 + ], + "score": 0.79, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 943, + 1987, + 958, + 1987, + 958, + 2007, + 943, + 2007 + ], + "score": 0.77, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 1045, + 616, + 1081, + 616, + 1081, + 644, + 1045, + 644 + ], + "score": 0.62, + "latex": "X )" + }, + { + "category_id": 13, + "poly": [ + 1233, + 365, + 1249, + 365, + 1249, + 387, + 1233, + 387 + ], + "score": 0.59, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 552, + 649, + 573, + 649, + 573, + 673, + 552, + 673 + ], + "score": 0.55, + "latex": "x _ { \\mathrm { . } }" + }, + { + "category_id": 13, + "poly": [ + 672, + 616, + 704, + 616, + 704, + 644, + 672, + 644 + ], + "score": 0.48, + "latex": "\\mathcal { X } )" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1973.0, + 723.0, + 1973.0, + 723.0, + 2010.0, + 332.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 1973.0, + 807.0, + 1973.0, + 807.0, + 2010.0, + 762.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1973.0, + 942.0, + 1973.0, + 942.0, + 2010.0, + 845.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 1973.0, + 1273.0, + 1973.0, + 1273.0, + 2010.0, + 959.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 1973.0, + 1406.0, + 1973.0, + 1406.0, + 2010.0, + 1312.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2001.0, + 574.0, + 2001.0, + 574.0, + 2036.0, + 294.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 223.0, + 638.0, + 223.0, + 638.0, + 267.0, + 293.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 884.0, + 1001.0, + 884.0, + 1001.0, + 919.0, + 295.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 554.0, + 758.0, + 554.0, + 758.0, + 590.0, + 295.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1441.0, + 1236.0, + 1441.0, + 1236.0, + 1479.0, + 294.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 555.0, + 758.0, + 555.0, + 758.0, + 590.0, + 296.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 611.0, + 671.0, + 611.0, + 671.0, + 649.0, + 295.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 611.0, + 1044.0, + 611.0, + 1044.0, + 649.0, + 705.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 611.0, + 1406.0, + 611.0, + 1406.0, + 649.0, + 1082.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 642.0, + 551.0, + 642.0, + 551.0, + 680.0, + 292.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 642.0, + 1405.0, + 642.0, + 1405.0, + 680.0, + 574.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 675.0, + 345.0, + 675.0, + 345.0, + 711.0, + 295.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 675.0, + 1075.0, + 675.0, + 1075.0, + 711.0, + 427.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 675.0, + 1405.0, + 675.0, + 1405.0, + 711.0, + 1136.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 702.0, + 1141.0, + 702.0, + 1141.0, + 742.0, + 294.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 702.0, + 1237.0, + 702.0, + 1237.0, + 742.0, + 1184.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 702.0, + 1406.0, + 702.0, + 1406.0, + 742.0, + 1277.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 719.0, + 330.0, + 719.0, + 330.0, + 816.0, + 281.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 719.0, + 373.0, + 719.0, + 373.0, + 816.0, + 351.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 719.0, + 933.0, + 719.0, + 933.0, + 816.0, + 558.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1396.0, + 719.0, + 1419.0, + 719.0, + 1419.0, + 816.0, + 1396.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 810.0, + 494.0, + 810.0, + 494.0, + 845.0, + 295.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 810.0, + 789.0, + 810.0, + 789.0, + 845.0, + 554.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 810.0, + 988.0, + 810.0, + 988.0, + 845.0, + 842.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 295.0, + 892.0, + 295.0, + 892.0, + 337.0, + 294.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 295.0, + 1407.0, + 295.0, + 1407.0, + 337.0, + 1042.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 327.0, + 1405.0, + 327.0, + 1405.0, + 365.0, + 294.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 360.0, + 1232.0, + 360.0, + 1232.0, + 394.0, + 295.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 360.0, + 1405.0, + 360.0, + 1405.0, + 394.0, + 1250.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 391.0, + 1405.0, + 391.0, + 1405.0, + 425.0, + 295.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 419.0, + 539.0, + 419.0, + 539.0, + 458.0, + 294.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 419.0, + 944.0, + 419.0, + 944.0, + 458.0, + 801.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 419.0, + 1405.0, + 419.0, + 1405.0, + 458.0, + 985.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 451.0, + 367.0, + 451.0, + 367.0, + 486.0, + 292.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 451.0, + 1406.0, + 451.0, + 1406.0, + 486.0, + 519.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 482.0, + 1352.0, + 482.0, + 1352.0, + 517.0, + 296.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1499.0, + 1403.0, + 1499.0, + 1403.0, + 1539.0, + 293.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1527.0, + 1142.0, + 1527.0, + 1142.0, + 1571.0, + 292.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 1527.0, + 1353.0, + 1527.0, + 1353.0, + 1571.0, + 1185.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1527.0, + 1407.0, + 1527.0, + 1407.0, + 1571.0, + 1394.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1558.0, + 1408.0, + 1558.0, + 1408.0, + 1602.0, + 292.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1589.0, + 925.0, + 1589.0, + 925.0, + 1633.0, + 291.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 1589.0, + 1150.0, + 1589.0, + 1150.0, + 1633.0, + 969.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 1589.0, + 1405.0, + 1589.0, + 1405.0, + 1633.0, + 1192.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1626.0, + 1240.0, + 1626.0, + 1240.0, + 1659.0, + 296.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1099.0, + 371.0, + 1099.0, + 371.0, + 1135.0, + 294.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 1099.0, + 1035.0, + 1099.0, + 1035.0, + 1135.0, + 633.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 1099.0, + 1408.0, + 1099.0, + 1408.0, + 1135.0, + 1290.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1129.0, + 569.0, + 1129.0, + 569.0, + 1166.0, + 293.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 1129.0, + 829.0, + 1129.0, + 829.0, + 1166.0, + 651.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 1129.0, + 923.0, + 1129.0, + 923.0, + 1166.0, + 871.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1129.0, + 1404.0, + 1129.0, + 1404.0, + 1166.0, + 964.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1161.0, + 449.0, + 1161.0, + 449.0, + 1197.0, + 293.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 1161.0, + 773.0, + 1161.0, + 773.0, + 1197.0, + 524.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 1161.0, + 1030.0, + 1161.0, + 1030.0, + 1197.0, + 987.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 1161.0, + 1256.0, + 1161.0, + 1256.0, + 1197.0, + 1105.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1298.0, + 1161.0, + 1351.0, + 1161.0, + 1351.0, + 1197.0, + 1298.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1371.0, + 1161.0, + 1404.0, + 1161.0, + 1404.0, + 1197.0, + 1371.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1192.0, + 379.0, + 1192.0, + 379.0, + 1228.0, + 293.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 1192.0, + 569.0, + 1192.0, + 569.0, + 1228.0, + 420.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 1192.0, + 840.0, + 1192.0, + 840.0, + 1228.0, + 587.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1669.0, + 765.0, + 1669.0, + 765.0, + 1710.0, + 292.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1669.0, + 1406.0, + 1669.0, + 1406.0, + 1710.0, + 932.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1700.0, + 467.0, + 1700.0, + 467.0, + 1737.0, + 295.0, + 1737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1700.0, + 1405.0, + 1700.0, + 1405.0, + 1737.0, + 659.0, + 1737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1731.0, + 1406.0, + 1731.0, + 1406.0, + 1769.0, + 291.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1759.0, + 885.0, + 1759.0, + 885.0, + 1799.0, + 292.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1759.0, + 1038.0, + 1759.0, + 1038.0, + 1799.0, + 906.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 1759.0, + 1405.0, + 1759.0, + 1405.0, + 1799.0, + 1188.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1792.0, + 367.0, + 1792.0, + 367.0, + 1829.0, + 294.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 1792.0, + 1072.0, + 1792.0, + 1072.0, + 1829.0, + 429.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 1792.0, + 1405.0, + 1792.0, + 1405.0, + 1829.0, + 1093.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1821.0, + 847.0, + 1821.0, + 847.0, + 1861.0, + 292.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 1821.0, + 1405.0, + 1821.0, + 1405.0, + 1861.0, + 997.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1851.0, + 1405.0, + 1851.0, + 1405.0, + 1889.0, + 292.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1883.0, + 1407.0, + 1883.0, + 1407.0, + 1920.0, + 292.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1914.0, + 733.0, + 1914.0, + 733.0, + 1951.0, + 295.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 941.0, + 1403.0, + 941.0, + 1403.0, + 979.0, + 293.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 971.0, + 1287.0, + 971.0, + 1287.0, + 1011.0, + 291.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1362.0, + 371.0, + 1362.0, + 371.0, + 1408.0, + 293.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 1362.0, + 987.0, + 1362.0, + 987.0, + 1408.0, + 412.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 1362.0, + 1072.0, + 1362.0, + 1072.0, + 1408.0, + 1062.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1236.0, + 370.0, + 1236.0, + 370.0, + 1276.0, + 296.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 1236.0, + 1168.0, + 1236.0, + 1168.0, + 1276.0, + 565.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1441.0, + 1236.0, + 1441.0, + 1236.0, + 1479.0, + 294.0, + 1479.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1315, + 1405, + 1315, + 1405, + 1564, + 297, + 1564 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 529, + 1405, + 529, + 1405, + 716, + 297, + 716 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 296, + 1737, + 1405, + 1737, + 1405, + 1955, + 296, + 1955 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1131, + 1404, + 1131, + 1404, + 1257, + 297, + 1257 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 296, + 923, + 1404, + 923, + 1404, + 1048, + 296, + 1048 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 421, + 1406, + 421, + 1406, + 516, + 297, + 516 + ], + "score": 0.964 + }, + { + "category_id": 8, + "poly": [ + 478, + 1655, + 1219, + 1655, + 1219, + 1728, + 478, + 1728 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 292, + 1576, + 1399, + 1576, + 1399, + 1641, + 292, + 1641 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 607, + 340, + 1091, + 340, + 1091, + 409, + 607, + 409 + ], + "score": 0.951 + }, + { + "category_id": 2, + "poly": [ + 300, + 1977, + 1405, + 1977, + 1405, + 2034, + 300, + 2034 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 408, + 1059, + 1293, + 1059, + 1293, + 1117, + 408, + 1117 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 296, + 228, + 1405, + 228, + 1405, + 324, + 296, + 324 + ], + "score": 0.927 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 816, + 74, + 816, + 105, + 299, + 105 + ], + "score": 0.917 + }, + { + "category_id": 8, + "poly": [ + 373, + 787, + 1321, + 787, + 1321, + 846, + 373, + 846 + ], + "score": 0.916 + }, + { + "category_id": 1, + "poly": [ + 295, + 740, + 1371, + 740, + 1371, + 777, + 295, + 777 + ], + "score": 0.916 + }, + { + "category_id": 1, + "poly": [ + 301, + 862, + 1169, + 862, + 1169, + 897, + 301, + 897 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1366, + 357, + 1400, + 357, + 1400, + 387, + 1366, + 387 + ], + "score": 0.886 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1067, + 1400, + 1067, + 1400, + 1096, + 1366, + 1096 + ], + "score": 0.875 + }, + { + "category_id": 1, + "poly": [ + 303, + 1271, + 848, + 1271, + 848, + 1303, + 303, + 1303 + ], + "score": 0.847 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.788 + }, + { + "category_id": 14, + "poly": [ + 610, + 337, + 1088, + 337, + 1088, + 410, + 610, + 410 + ], + "score": 0.94, + "latex": "p _ { G } ( x ) : = \\int _ { \\mathcal { Z } } p _ { G } ( x | \\boldsymbol { z } ) p _ { z } ( \\boldsymbol { z } ) d \\boldsymbol { z } , \\quad \\forall \\boldsymbol { x } \\in \\mathcal { X } ," + }, + { + "category_id": 14, + "poly": [ + 479, + 1654, + 1217, + 1654, + 1217, + 1727, + 479, + 1727 + ], + "score": 0.94, + "latex": "\\mathrm { M M D } _ { k } ( P _ { Z } , Q _ { Z } ) = \\big \\lVert \\int _ { \\mathcal { Z } } k ( z , \\cdot ) d P _ { Z } ( z ) - \\int _ { \\mathcal { Z } } k ( z , \\cdot ) d Q _ { Z } ( z ) \\big \\rVert _ { \\mathcal { H } _ { k } } ," + }, + { + "category_id": 13, + "poly": [ + 925, + 743, + 1039, + 743, + 1039, + 777, + 925, + 777 + ], + "score": 0.94, + "latex": "P _ { G } ( X | Z )" + }, + { + "category_id": 13, + "poly": [ + 950, + 925, + 1049, + 925, + 1049, + 959, + 950, + 959 + ], + "score": 0.93, + "latex": "Q ( Z | X )" + }, + { + "category_id": 13, + "poly": [ + 802, + 1317, + 1147, + 1317, + 1147, + 1352, + 802, + 1352 + ], + "score": 0.93, + "latex": "\\mathcal { D } _ { Z } ( Q _ { Z } , P _ { Z } ) = D _ { \\mathrm { J S } } ( Q _ { Z } , P _ { Z } )" + }, + { + "category_id": 13, + "poly": [ + 641, + 622, + 740, + 622, + 740, + 654, + 641, + 654 + ], + "score": 0.93, + "latex": "Q ( Z | X )" + }, + { + "category_id": 13, + "poly": [ + 1139, + 453, + 1271, + 453, + 1271, + 486, + 1139, + 486 + ], + "score": 0.92, + "latex": "X = G ( Z )" + }, + { + "category_id": 13, + "poly": [ + 662, + 454, + 775, + 454, + 775, + 486, + 662, + 486 + ], + "score": 0.92, + "latex": "P _ { G } ( X | Z )" + }, + { + "category_id": 13, + "poly": [ + 690, + 1270, + 841, + 1270, + 841, + 1305, + 690, + 1305 + ], + "score": 0.92, + "latex": "\\mathcal { D } _ { Z } ( Q _ { Z } , P _ { Z } )" + }, + { + "category_id": 13, + "poly": [ + 1005, + 864, + 1161, + 864, + 1161, + 898, + 1005, + 898 + ], + "score": 0.92, + "latex": "Z \\sim Q ( Z | X )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1800, + 494, + 1800, + 494, + 1834, + 298, + 1834 + ], + "score": 0.92, + "latex": "\\mathrm { M M D } _ { k } ( P _ { Z } , Q _ { Z } )" + }, + { + "category_id": 14, + "poly": [ + 406, + 1060, + 1292, + 1060, + 1292, + 1118, + 406, + 1118 + ], + "score": 0.91, + "latex": "D _ { \\mathrm { W A E } } ( P _ { X } , P _ { G } ) : = \\operatorname* { i n f } _ { Q ( Z | X ) \\in \\mathcal { Q } } \\mathbb { E } _ { P _ { X } } \\mathbb { E } _ { Q ( Z | X ) } \\left[ c \\bigl ( X , G ( Z ) \\bigr ) \\right] + \\lambda \\cdot \\mathcal { D } _ { Z } ( Q _ { Z } , P _ { Z } ) ," + }, + { + "category_id": 13, + "poly": [ + 848, + 865, + 951, + 865, + 951, + 895, + 848, + 895 + ], + "score": 0.91, + "latex": "X \\sim P _ { X }" + }, + { + "category_id": 13, + "poly": [ + 499, + 1164, + 581, + 1164, + 581, + 1192, + 499, + 1192 + ], + "score": 0.91, + "latex": "\\lambda > 0" + }, + { + "category_id": 13, + "poly": [ + 372, + 291, + 531, + 291, + 531, + 320, + 372, + 320 + ], + "score": 0.91, + "latex": "X \\in \\mathcal { X } \\overset { = } { = } \\mathcal { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 768, + 593, + 809, + 593, + 809, + 622, + 768, + 622 + ], + "score": 0.9, + "latex": "P _ { X }" + }, + { + "category_id": 13, + "poly": [ + 824, + 986, + 867, + 986, + 867, + 1018, + 824, + 1018 + ], + "score": 0.9, + "latex": "Q _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 1214, + 1771, + 1403, + 1771, + 1403, + 1804, + 1214, + 1804 + ], + "score": 0.9, + "latex": "\\mathcal { D } _ { Z } ( P _ { Z } , Q _ { Z } ) =" + }, + { + "category_id": 13, + "poly": [ + 969, + 1133, + 1012, + 1133, + 1012, + 1164, + 969, + 1164 + ], + "score": 0.9, + "latex": "\\mathcal { D } _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 975, + 1579, + 1158, + 1579, + 1158, + 1608, + 975, + 1608 + ], + "score": 0.9, + "latex": "k \\colon \\mathcal { Z } \\times \\mathcal { Z } \\mathcal { R }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1164, + 340, + 1164, + 340, + 1196, + 297, + 1196 + ], + "score": 0.89, + "latex": "Q _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 371, + 1741, + 411, + 1741, + 411, + 1771, + 371, + 1771 + ], + "score": 0.89, + "latex": "\\mathcal { H } _ { k }" + }, + { + "category_id": 13, + "poly": [ + 396, + 1164, + 435, + 1164, + 435, + 1194, + 396, + 1194 + ], + "score": 0.89, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 1210, + 1380, + 1252, + 1380, + 1252, + 1411, + 1210, + 1411 + ], + "score": 0.89, + "latex": "Q _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 371, + 865, + 413, + 865, + 413, + 897, + 371, + 897 + ], + "score": 0.89, + "latex": "Q _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 668, + 655, + 705, + 655, + 705, + 683, + 668, + 683 + ], + "score": 0.89, + "latex": "P _ { Z }" + }, + { + "category_id": 14, + "poly": [ + 380, + 788, + 1314, + 788, + 1314, + 848, + 380, + 848 + ], + "score": 0.89, + "latex": "\\operatorname* { i n f } _ { \\substack { \\Gamma \\in \\mathcal { P } ( X \\sim P _ { X } , Y \\sim P _ { G } ) } } \\mathbb { E } _ { ( X , Y ) \\sim \\Gamma } \\left[ c \\big ( X , Y \\big ) \\right] = \\operatorname* { i n f } _ { Q \\colon Q z = P _ { Z } } \\mathbb { E } _ { P _ { X } } \\mathbb { E } _ { Q ( Z | X ) } \\left[ c \\big ( X , G ( Z ) \\big ) \\right] ," + }, + { + "category_id": 13, + "poly": [ + 813, + 262, + 851, + 262, + 851, + 292, + 813, + 292 + ], + "score": 0.88, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 441, + 1319, + 483, + 1319, + 483, + 1349, + 441, + 1349 + ], + "score": 0.88, + "latex": "\\mathcal { D } _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 821, + 1380, + 859, + 1380, + 859, + 1410, + 821, + 1410 + ], + "score": 0.88, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 454, + 1579, + 495, + 1579, + 495, + 1609, + 454, + 1609 + ], + "score": 0.88, + "latex": "\\mathcal { D } _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 585, + 1472, + 624, + 1472, + 624, + 1501, + 585, + 1501 + ], + "score": 0.88, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 1063, + 1925, + 1100, + 1925, + 1100, + 1953, + 1063, + 1953 + ], + "score": 0.88, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 874, + 232, + 913, + 232, + 913, + 261, + 874, + 261 + ], + "score": 0.88, + "latex": "P _ { G }" + }, + { + "category_id": 13, + "poly": [ + 1165, + 592, + 1203, + 592, + 1203, + 622, + 1165, + 622 + ], + "score": 0.87, + "latex": "P _ { G }" + }, + { + "category_id": 13, + "poly": [ + 485, + 745, + 523, + 745, + 523, + 774, + 485, + 774 + ], + "score": 0.87, + "latex": "P _ { G }" + }, + { + "category_id": 13, + "poly": [ + 733, + 1195, + 759, + 1195, + 759, + 1225, + 733, + 1225 + ], + "score": 0.86, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1312, + 1740, + 1400, + 1740, + 1400, + 1771, + 1312, + 1771 + ], + "score": 0.86, + "latex": "{ \\mathrm { M M D } } _ { k }" + }, + { + "category_id": 13, + "poly": [ + 1029, + 621, + 1374, + 621, + 1374, + 655, + 1029, + 655 + ], + "score": 0.85, + "latex": "Q _ { Z } ( Z ) \\setminus : = \\mathbb { E } _ { X \\sim P _ { X } } \\left[ Q ( Z | X ) \\right]" + }, + { + "category_id": 13, + "poly": [ + 373, + 1134, + 399, + 1134, + 399, + 1162, + 373, + 1162 + ], + "score": 0.84, + "latex": "\\mathcal { Q }" + }, + { + "category_id": 13, + "poly": [ + 1237, + 744, + 1371, + 744, + 1371, + 772, + 1237, + 772 + ], + "score": 0.84, + "latex": "G \\colon { \\mathcal { Z } } \\to { \\mathcal { X } }" + }, + { + "category_id": 13, + "poly": [ + 512, + 957, + 540, + 957, + 540, + 983, + 512, + 983 + ], + "score": 0.84, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 378, + 263, + 401, + 263, + 401, + 289, + 378, + 289 + ], + "score": 0.83, + "latex": "Z" + }, + { + "category_id": 13, + "poly": [ + 1080, + 454, + 1104, + 454, + 1104, + 480, + 1080, + 480 + ], + "score": 0.83, + "latex": "Z" + }, + { + "category_id": 13, + "poly": [ + 353, + 486, + 486, + 486, + 486, + 512, + 353, + 512 + ], + "score": 0.83, + "latex": "G \\colon { \\mathcal { Z } } \\to { \\mathcal { X } }" + }, + { + "category_id": 13, + "poly": [ + 1184, + 262, + 1208, + 262, + 1208, + 289, + 1184, + 289 + ], + "score": 0.83, + "latex": "Z" + }, + { + "category_id": 13, + "poly": [ + 933, + 1741, + 957, + 1741, + 957, + 1767, + 933, + 1767 + ], + "score": 0.83, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 1052, + 1741, + 1071, + 1741, + 1071, + 1767, + 1052, + 1767 + ], + "score": 0.83, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 339, + 593, + 367, + 593, + 367, + 619, + 339, + 619 + ], + "score": 0.82, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 989, + 1740, + 1015, + 1740, + 1015, + 1767, + 989, + 1767 + ], + "score": 0.81, + "latex": "\\mathcal { R }" + }, + { + "category_id": 13, + "poly": [ + 1232, + 1442, + 1260, + 1442, + 1260, + 1468, + 1232, + 1468 + ], + "score": 0.81, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 1050, + 263, + 1076, + 263, + 1076, + 289, + 1050, + 289 + ], + "score": 0.81, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 915, + 1195, + 939, + 1195, + 939, + 1221, + 915, + 1221 + ], + "score": 0.8, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 893, + 623, + 918, + 623, + 918, + 649, + 893, + 649 + ], + "score": 0.8, + "latex": "Z" + }, + { + "category_id": 13, + "poly": [ + 756, + 866, + 779, + 866, + 779, + 892, + 756, + 892 + ], + "score": 0.79, + "latex": "Z" + }, + { + "category_id": 13, + "poly": [ + 592, + 957, + 617, + 957, + 617, + 983, + 592, + 983 + ], + "score": 0.79, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 1375, + 1350, + 1401, + 1350, + 1401, + 1376, + 1375, + 1376 + ], + "score": 0.78, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 489, + 562, + 514, + 562, + 514, + 589, + 489, + 589 + ], + "score": 0.76, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 367, + 1472, + 393, + 1472, + 393, + 1498, + 367, + 1498 + ], + "score": 0.75, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 859, + 562, + 880, + 562, + 880, + 588, + 859, + 588 + ], + "score": 0.73, + "latex": "\\Gamma" + }, + { + "category_id": 13, + "poly": [ + 1260, + 621, + 1373, + 621, + 1373, + 655, + 1260, + 655 + ], + "score": 0.31, + "latex": "[ Q ( Z | X ) ]" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1970.0, + 1405.0, + 1970.0, + 1405.0, + 2013.0, + 328.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2003.0, + 593.0, + 2003.0, + 593.0, + 2034.0, + 296.0, + 2034.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": [ + 838.0, + 2085.0, + 863.0, + 2085.0, + 863.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1316.0, + 440.0, + 1316.0, + 440.0, + 1357.0, + 294.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 1316.0, + 801.0, + 1316.0, + 801.0, + 1357.0, + 484.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 1316.0, + 1406.0, + 1316.0, + 1406.0, + 1357.0, + 1148.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1347.0, + 1374.0, + 1347.0, + 1374.0, + 1385.0, + 294.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1347.0, + 1406.0, + 1347.0, + 1406.0, + 1385.0, + 1402.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1378.0, + 820.0, + 1378.0, + 820.0, + 1415.0, + 294.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 1378.0, + 1209.0, + 1378.0, + 1209.0, + 1415.0, + 860.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 1378.0, + 1406.0, + 1378.0, + 1406.0, + 1415.0, + 1253.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1409.0, + 1405.0, + 1409.0, + 1405.0, + 1443.0, + 295.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1439.0, + 1231.0, + 1439.0, + 1231.0, + 1473.0, + 295.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 1439.0, + 1403.0, + 1439.0, + 1403.0, + 1473.0, + 1261.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1469.0, + 366.0, + 1469.0, + 366.0, + 1507.0, + 292.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1469.0, + 584.0, + 1469.0, + 584.0, + 1507.0, + 394.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1469.0, + 1406.0, + 1469.0, + 1406.0, + 1507.0, + 625.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1499.0, + 1405.0, + 1499.0, + 1405.0, + 1535.0, + 294.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1529.0, + 1227.0, + 1529.0, + 1227.0, + 1567.0, + 294.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 528.0, + 1405.0, + 528.0, + 1405.0, + 565.0, + 292.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 558.0, + 488.0, + 558.0, + 488.0, + 596.0, + 294.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 558.0, + 858.0, + 558.0, + 858.0, + 596.0, + 515.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 558.0, + 1405.0, + 558.0, + 1405.0, + 596.0, + 881.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 590.0, + 338.0, + 590.0, + 338.0, + 626.0, + 294.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 590.0, + 767.0, + 590.0, + 767.0, + 626.0, + 368.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 590.0, + 1164.0, + 590.0, + 1164.0, + 626.0, + 810.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 590.0, + 1406.0, + 590.0, + 1406.0, + 626.0, + 1204.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 617.0, + 640.0, + 617.0, + 640.0, + 661.0, + 291.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 617.0, + 892.0, + 617.0, + 892.0, + 661.0, + 741.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 617.0, + 1028.0, + 617.0, + 1028.0, + 661.0, + 919.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 617.0, + 1407.0, + 617.0, + 1407.0, + 661.0, + 1375.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 652.0, + 667.0, + 652.0, + 667.0, + 688.0, + 294.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 652.0, + 1407.0, + 652.0, + 1407.0, + 688.0, + 706.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 683.0, + 1283.0, + 683.0, + 1283.0, + 719.0, + 294.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1735.0, + 370.0, + 1735.0, + 370.0, + 1776.0, + 294.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 1735.0, + 932.0, + 1735.0, + 932.0, + 1776.0, + 412.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 1735.0, + 988.0, + 1735.0, + 988.0, + 1776.0, + 958.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 1735.0, + 1051.0, + 1735.0, + 1051.0, + 1776.0, + 1016.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 1735.0, + 1311.0, + 1735.0, + 1311.0, + 1776.0, + 1072.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1735.0, + 1405.0, + 1735.0, + 1405.0, + 1776.0, + 1401.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1769.0, + 1213.0, + 1769.0, + 1213.0, + 1807.0, + 293.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1800.0, + 297.0, + 1800.0, + 297.0, + 1835.0, + 294.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 1800.0, + 1406.0, + 1800.0, + 1406.0, + 1835.0, + 495.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1831.0, + 1405.0, + 1831.0, + 1405.0, + 1865.0, + 293.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1860.0, + 1405.0, + 1860.0, + 1405.0, + 1897.0, + 293.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1892.0, + 1406.0, + 1892.0, + 1406.0, + 1928.0, + 293.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1923.0, + 1062.0, + 1923.0, + 1062.0, + 1958.0, + 295.0, + 1958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 1923.0, + 1111.0, + 1923.0, + 1111.0, + 1958.0, + 1101.0, + 1958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1130.0, + 372.0, + 1130.0, + 372.0, + 1170.0, + 294.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1130.0, + 968.0, + 1130.0, + 968.0, + 1170.0, + 400.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 1130.0, + 1406.0, + 1130.0, + 1406.0, + 1170.0, + 1013.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 1161.0, + 395.0, + 1161.0, + 395.0, + 1198.0, + 341.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 1161.0, + 498.0, + 1161.0, + 498.0, + 1198.0, + 436.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 1161.0, + 1405.0, + 1161.0, + 1405.0, + 1198.0, + 582.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1193.0, + 732.0, + 1193.0, + 732.0, + 1228.0, + 291.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 1193.0, + 914.0, + 1193.0, + 914.0, + 1228.0, + 760.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 1193.0, + 1406.0, + 1193.0, + 1406.0, + 1228.0, + 940.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1223.0, + 1402.0, + 1223.0, + 1402.0, + 1259.0, + 292.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 925.0, + 949.0, + 925.0, + 949.0, + 961.0, + 295.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 925.0, + 1405.0, + 925.0, + 1405.0, + 961.0, + 1050.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 956.0, + 511.0, + 956.0, + 511.0, + 989.0, + 295.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 956.0, + 591.0, + 956.0, + 591.0, + 989.0, + 541.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 956.0, + 1405.0, + 956.0, + 1405.0, + 989.0, + 618.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 987.0, + 823.0, + 987.0, + 823.0, + 1019.0, + 293.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 987.0, + 1402.0, + 987.0, + 1402.0, + 1019.0, + 868.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1015.0, + 644.0, + 1015.0, + 644.0, + 1051.0, + 293.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 422.0, + 1404.0, + 422.0, + 1404.0, + 456.0, + 296.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 451.0, + 661.0, + 451.0, + 661.0, + 489.0, + 294.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 451.0, + 1079.0, + 451.0, + 1079.0, + 489.0, + 776.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 451.0, + 1138.0, + 451.0, + 1138.0, + 489.0, + 1105.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 451.0, + 1406.0, + 451.0, + 1406.0, + 489.0, + 1272.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 482.0, + 352.0, + 482.0, + 352.0, + 520.0, + 295.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 482.0, + 1307.0, + 482.0, + 1307.0, + 520.0, + 487.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1575.0, + 453.0, + 1575.0, + 453.0, + 1614.0, + 292.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 1575.0, + 974.0, + 1575.0, + 974.0, + 1614.0, + 496.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 1575.0, + 1402.0, + 1575.0, + 1402.0, + 1614.0, + 1159.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1606.0, + 911.0, + 1606.0, + 911.0, + 1643.0, + 292.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 228.0, + 873.0, + 228.0, + 873.0, + 265.0, + 293.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 228.0, + 1405.0, + 228.0, + 1405.0, + 265.0, + 914.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 260.0, + 377.0, + 260.0, + 377.0, + 296.0, + 293.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 260.0, + 812.0, + 260.0, + 812.0, + 296.0, + 402.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 260.0, + 1049.0, + 260.0, + 1049.0, + 296.0, + 852.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 260.0, + 1183.0, + 260.0, + 1183.0, + 296.0, + 1077.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 260.0, + 1405.0, + 260.0, + 1405.0, + 296.0, + 1209.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 289.0, + 371.0, + 289.0, + 371.0, + 327.0, + 295.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 289.0, + 1400.0, + 289.0, + 1400.0, + 327.0, + 532.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 740.0, + 484.0, + 740.0, + 484.0, + 780.0, + 296.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 740.0, + 924.0, + 740.0, + 924.0, + 780.0, + 524.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 740.0, + 1236.0, + 740.0, + 1236.0, + 780.0, + 1040.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 859.0, + 370.0, + 859.0, + 370.0, + 903.0, + 295.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 859.0, + 755.0, + 859.0, + 755.0, + 903.0, + 414.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 859.0, + 847.0, + 859.0, + 847.0, + 903.0, + 780.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 859.0, + 1004.0, + 859.0, + 1004.0, + 903.0, + 952.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 859.0, + 1172.0, + 859.0, + 1172.0, + 903.0, + 1162.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1267.0, + 689.0, + 1267.0, + 689.0, + 1310.0, + 296.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 1267.0, + 853.0, + 1267.0, + 853.0, + 1310.0, + 842.0, + 1310.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1309, + 1403, + 1309, + 1403, + 1586, + 297, + 1586 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1601, + 1404, + 1601, + 1404, + 1755, + 298, + 1755 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1770, + 1403, + 1770, + 1403, + 1958, + 299, + 1958 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1141, + 1402, + 1141, + 1402, + 1295, + 298, + 1295 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1972, + 1400, + 1972, + 1400, + 2034, + 298, + 2034 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 298, + 921, + 1404, + 921, + 1404, + 1022, + 298, + 1022 + ], + "score": 0.933 + }, + { + "category_id": 0, + "poly": [ + 301, + 1069, + 581, + 1069, + 581, + 1104, + 301, + 1104 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.889 + }, + { + "category_id": 5, + "poly": [ + 293, + 258, + 1358, + 258, + 1358, + 907, + 293, + 907 + ], + "score": 0.786, + "html": "
ALGORITHM1Wasserstein Auto-Encoder with GAN-based penalty (WAE-GAN).ALGORITHM 2Wasserstein Auto-Encoder withMMD-based penalty (WAE-MMD).
Require:Regularization coefficient 入>0. Initialize the parameters of the encoder Q, decoder Gθ,and latent discriminator Dy. while(,θ) not converged do Sample {x1,...,xn} from the training set Sample {z1,...,zn} from the prior PzRequire:Regularization coefficient入> O,char- acteristic positive-definite kernel k. Initialize the parameters of the encoder Q𝜙, decoder Gθ,and latent discriminator D. while (,0) not converged do
Sample zi from Q(Z|xi) fori=1,...,n Update D, by ascending:Sample {x1,...,xn} from the training set Sample {z1,..., zn} from the prior Pz Sample z from Q(Z|xi) fori=1,...,n
入 n ? logDγ(zi)+log(1-Dγ(i)) n i=1Update Q and Ge by descending: 1 n 入
Update Q and Ge by descending: 1 n c(xi,Ge(zi))-λ·logDγ(zi) nc(xi,Gθ(zi)) > k(ze,zj) n(n-1) n i=1 +j
i=1 end while入 2入 > k(2e,) + > k(ze,2j) n
n(n-1) l≠j e,j
" + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.727 + }, + { + "category_id": 8, + "poly": [ + 380, + 773, + 769, + 773, + 769, + 848, + 380, + 848 + ], + "score": 0.292 + }, + { + "category_id": 8, + "poly": [ + 869, + 682, + 1348, + 682, + 1348, + 845, + 869, + 845 + ], + "score": 0.09 + }, + { + "category_id": 13, + "poly": [ + 792, + 923, + 897, + 923, + 897, + 958, + 792, + 958 + ], + "score": 0.94, + "latex": "Q _ { \\phi } ( Z | x )" + }, + { + "category_id": 13, + "poly": [ + 888, + 987, + 1002, + 987, + 1002, + 1023, + 888, + 1023 + ], + "score": 0.94, + "latex": "Q _ { \\phi } ( Z | x _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 750, + 1632, + 860, + 1632, + 860, + 1666, + 750, + 1666 + ], + "score": 0.93, + "latex": "\\mathbb { I } _ { Q } ( X , Z )" + }, + { + "category_id": 14, + "poly": [ + 377, + 769, + 770, + 769, + 770, + 850, + 377, + 850 + ], + "score": 0.93, + "latex": "{ \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } c { \\big ( } x _ { i } , G _ { \\theta } { \\big ( } { \\tilde { z } } _ { i } { \\big ) } { \\big ) } - \\lambda \\cdot \\log D _ { \\gamma } { \\big ( } { \\tilde { z } } _ { i } { \\big ) }" + }, + { + "category_id": 13, + "poly": [ + 1286, + 1203, + 1400, + 1203, + 1400, + 1237, + 1286, + 1237 + ], + "score": 0.93, + "latex": "P _ { G } ( X | Z )" + }, + { + "category_id": 13, + "poly": [ + 798, + 1233, + 898, + 1233, + 898, + 1267, + 798, + 1267 + ], + "score": 0.93, + "latex": "Q ( Z | X )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1723, + 408, + 1723, + 408, + 1758, + 297, + 1758 + ], + "score": 0.93, + "latex": "\\mathbb { I } _ { Q } ( X , Z )" + }, + { + "category_id": 13, + "poly": [ + 1029, + 591, + 1135, + 591, + 1135, + 623, + 1029, + 623 + ], + "score": 0.93, + "latex": "Q _ { \\phi } ( Z | x _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 568, + 1663, + 739, + 1663, + 739, + 1696, + 568, + 1696 + ], + "score": 0.92, + "latex": "P _ { X } \\times Q ( Z | X )" + }, + { + "category_id": 13, + "poly": [ + 514, + 535, + 618, + 535, + 618, + 567, + 514, + 567 + ], + "score": 0.92, + "latex": "Q _ { \\phi } ( Z | x _ { i } )" + }, + { + "category_id": 14, + "poly": [ + 376, + 616, + 769, + 616, + 769, + 698, + 376, + 698 + ], + "score": 0.92, + "latex": "\\frac { \\lambda } { n } \\sum _ { i = 1 } ^ { n } \\log D _ { \\gamma } ( z _ { i } ) + \\log \\bigl ( 1 - D _ { \\gamma } ( \\tilde { z } _ { i } ) \\bigr )" + }, + { + "category_id": 13, + "poly": [ + 948, + 555, + 1082, + 555, + 1082, + 587, + 948, + 587 + ], + "score": 0.92, + "latex": "\\{ z _ { 1 } , \\ldots , z _ { n } \\}" + }, + { + "category_id": 13, + "poly": [ + 949, + 518, + 1087, + 518, + 1087, + 550, + 949, + 550 + ], + "score": 0.92, + "latex": "\\{ x _ { 1 } , \\ldots , x _ { n } \\}" + }, + { + "category_id": 13, + "poly": [ + 488, + 1772, + 711, + 1772, + 711, + 1806, + 488, + 1806 + ], + "score": 0.92, + "latex": "c ( x , y ) = \\| x - y \\| _ { 2 } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1252, + 1524, + 1400, + 1524, + 1400, + 1558, + 1252, + 1558 + ], + "score": 0.92, + "latex": "W _ { c } ( P _ { X } , P _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 945, + 629, + 981, + 629, + 981, + 659, + 945, + 659 + ], + "score": 0.92, + "latex": "Q _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1632, + 464, + 1632, + 464, + 1665, + 298, + 1665 + ], + "score": 0.92, + "latex": "D _ { \\mathrm { K L } } ( Q _ { Z } , P _ { Z } )" + }, + { + "category_id": 13, + "poly": [ + 386, + 436, + 446, + 436, + 446, + 466, + 386, + 466 + ], + "score": 0.92, + "latex": "( \\phi , \\theta )" + }, + { + "category_id": 13, + "poly": [ + 1125, + 1463, + 1259, + 1463, + 1259, + 1496, + 1125, + 1496 + ], + "score": 0.92, + "latex": "\\log p _ { G } ( x | z )" + }, + { + "category_id": 14, + "poly": [ + 864, + 679, + 1349, + 679, + 1349, + 847, + 864, + 847 + ], + "score": 0.92, + "latex": "\\begin{array} { l } { { \\displaystyle { \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } c \\big ( x _ { i } , G _ { \\theta } \\big ( \\tilde { z } _ { i } \\big ) \\big ) + \\frac { \\lambda } { n ( n - 1 ) } \\sum _ { \\ell \\neq j } k ( z _ { \\ell } , z _ { j } ) } } } \\\\ { { \\displaystyle { + \\frac { \\lambda } { n ( n - 1 ) } \\sum _ { \\ell \\neq j } k \\big ( \\tilde { z } _ { \\ell } , \\tilde { z } _ { j } \\big ) - \\frac { 2 \\lambda } { n ^ { 2 } } \\sum _ { \\ell , j } k \\big ( z _ { \\ell } , \\tilde { z } _ { j } \\big ) } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 432, + 502, + 565, + 502, + 565, + 533, + 432, + 533 + ], + "score": 0.91, + "latex": "\\{ z _ { 1 } , \\ldots , z _ { n } \\}" + }, + { + "category_id": 13, + "poly": [ + 433, + 468, + 571, + 468, + 571, + 499, + 433, + 499 + ], + "score": 0.91, + "latex": "\\{ x _ { 1 } , \\ldots , x _ { n } \\}" + }, + { + "category_id": 13, + "poly": [ + 903, + 482, + 963, + 482, + 963, + 513, + 903, + 513 + ], + "score": 0.91, + "latex": "( \\phi , \\theta )" + }, + { + "category_id": 13, + "poly": [ + 1127, + 954, + 1340, + 954, + 1340, + 990, + 1127, + 990 + ], + "score": 0.91, + "latex": "Q _ { \\phi } ( Z | x ) = \\delta _ { \\mu _ { \\phi } ( x ) }" + }, + { + "category_id": 13, + "poly": [ + 1174, + 592, + 1305, + 592, + 1305, + 621, + 1174, + 621 + ], + "score": 0.91, + "latex": "i = 1 , \\ldots , n" + }, + { + "category_id": 13, + "poly": [ + 1254, + 991, + 1333, + 991, + 1333, + 1023, + 1254, + 1023 + ], + "score": 0.91, + "latex": "\\mu _ { \\phi } ( x _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 657, + 536, + 789, + 536, + 789, + 565, + 657, + 565 + ], + "score": 0.91, + "latex": "i = 1 , \\ldots , n" + }, + { + "category_id": 13, + "poly": [ + 397, + 989, + 540, + 989, + 540, + 1023, + 397, + 1023 + ], + "score": 0.91, + "latex": "\\mu _ { \\phi } \\colon \\mathcal { X } \\to \\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 431, + 1341, + 599, + 1341, + 599, + 1373, + 431, + 1373 + ], + "score": 0.91, + "latex": "D _ { \\mathrm { K L } } ( P _ { X } , P _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 1095, + 1835, + 1137, + 1835, + 1137, + 1865, + 1095, + 1865 + ], + "score": 0.9, + "latex": "P _ { X }" + }, + { + "category_id": 13, + "poly": [ + 429, + 720, + 464, + 720, + 464, + 750, + 429, + 750 + ], + "score": 0.9, + "latex": "Q _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 695, + 403, + 731, + 403, + 731, + 432, + 695, + 432 + ], + "score": 0.9, + "latex": "D _ { \\gamma }" + }, + { + "category_id": 13, + "poly": [ + 1212, + 446, + 1247, + 446, + 1247, + 476, + 1212, + 476 + ], + "score": 0.9, + "latex": "D _ { \\gamma }" + }, + { + "category_id": 13, + "poly": [ + 667, + 336, + 731, + 336, + 731, + 362, + 667, + 362 + ], + "score": 0.9, + "latex": "\\lambda > 0" + }, + { + "category_id": 13, + "poly": [ + 718, + 370, + 754, + 370, + 754, + 400, + 718, + 400 + ], + "score": 0.89, + "latex": "Q _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 694, + 1403, + 732, + 1403, + 732, + 1433, + 694, + 1433 + ], + "score": 0.89, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 1190, + 1835, + 1229, + 1835, + 1229, + 1865, + 1190, + 1865 + ], + "score": 0.89, + "latex": "P _ { G }" + }, + { + "category_id": 13, + "poly": [ + 654, + 1434, + 692, + 1434, + 692, + 1463, + 654, + 1463 + ], + "score": 0.88, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 1235, + 410, + 1270, + 410, + 1270, + 439, + 1235, + 439 + ], + "score": 0.88, + "latex": "Q _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 1027, + 629, + 1061, + 629, + 1061, + 656, + 1027, + 656 + ], + "score": 0.88, + "latex": "G _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1926, + 339, + 1926, + 339, + 1956, + 297, + 1956 + ], + "score": 0.88, + "latex": "\\mathcal { D } _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 429, + 570, + 465, + 570, + 465, + 599, + 429, + 599 + ], + "score": 0.88, + "latex": "D _ { \\gamma }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1372, + 593, + 1372, + 593, + 1405, + 297, + 1405 + ], + "score": 0.87, + "latex": "\\mathbb { E } _ { P _ { X } } \\left[ D _ { \\mathrm { K L } } ( Q ( Z | X ) , P _ { Z } ) \\right]" + }, + { + "category_id": 13, + "poly": [ + 511, + 720, + 544, + 720, + 544, + 747, + 511, + 747 + ], + "score": 0.87, + "latex": "G _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 924, + 446, + 957, + 446, + 957, + 473, + 924, + 473 + ], + "score": 0.87, + "latex": "G _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1184, + 336, + 1249, + 336, + 1249, + 362, + 1184, + 362 + ], + "score": 0.87, + "latex": "\\lambda > 0" + }, + { + "category_id": 13, + "poly": [ + 716, + 502, + 751, + 502, + 751, + 529, + 716, + 529 + ], + "score": 0.87, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 798, + 990, + 824, + 990, + 824, + 1019, + 798, + 1019 + ], + "score": 0.86, + "latex": "\\tilde { z } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 408, + 403, + 441, + 403, + 441, + 430, + 408, + 430 + ], + "score": 0.86, + "latex": "G _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 947, + 593, + 971, + 593, + 971, + 619, + 947, + 619 + ], + "score": 0.86, + "latex": "\\tilde { z } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1232, + 557, + 1267, + 557, + 1267, + 583, + 1232, + 583 + ], + "score": 0.86, + "latex": "P z" + }, + { + "category_id": 13, + "poly": [ + 420, + 1432, + 548, + 1432, + 548, + 1466, + 420, + 1466 + ], + "score": 0.83, + "latex": "\\mathinner { \\langle { Q \\mathopen { \\left( Z \\vert X \\right) } } \\rvert }" + }, + { + "category_id": 13, + "poly": [ + 431, + 539, + 454, + 539, + 454, + 562, + 431, + 562 + ], + "score": 0.83, + "latex": "\\tilde { z } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 550, + 1927, + 576, + 1927, + 576, + 1954, + 550, + 1954 + ], + "score": 0.81, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 881, + 1897, + 907, + 1897, + 907, + 1922, + 881, + 1922 + ], + "score": 0.81, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 1086, + 1634, + 1113, + 1634, + 1113, + 1660, + 1086, + 1660 + ], + "score": 0.8, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 855, + 1267, + 880, + 1267, + 880, + 1291, + 855, + 1291 + ], + "score": 0.78, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 610, + 1205, + 636, + 1205, + 636, + 1231, + 610, + 1231 + ], + "score": 0.77, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 1170, + 374, + 1187, + 374, + 1187, + 398, + 1170, + 398 + ], + "score": 0.77, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1299, + 1634, + 1323, + 1634, + 1323, + 1661, + 1299, + 1661 + ], + "score": 0.75, + "latex": "Z" + }, + { + "category_id": 13, + "poly": [ + 662, + 1902, + 677, + 1902, + 677, + 1922, + 662, + 1922 + ], + "score": 0.74, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 376, + 1433, + 429, + 1433, + 429, + 1466, + 376, + 1466 + ], + "score": 0.62, + "latex": "\\mathbb { E } _ { P _ { X } }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1372, + 350, + 1372, + 350, + 1405, + 297, + 1405 + ], + "score": 0.41, + "latex": "\\mathbb { E } _ { P _ { X } }" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1066.0, + 586.0, + 1066.0, + 586.0, + 1110.0, + 292.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1310.0, + 1404.0, + 1310.0, + 1404.0, + 1347.0, + 296.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1339.0, + 430.0, + 1339.0, + 430.0, + 1379.0, + 293.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1339.0, + 1408.0, + 1339.0, + 1408.0, + 1379.0, + 600.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1370.0, + 296.0, + 1370.0, + 296.0, + 1411.0, + 293.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 1370.0, + 1407.0, + 1370.0, + 1407.0, + 1411.0, + 594.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1402.0, + 693.0, + 1402.0, + 693.0, + 1438.0, + 293.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 1402.0, + 1404.0, + 1402.0, + 1404.0, + 1438.0, + 733.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1430.0, + 375.0, + 1430.0, + 375.0, + 1471.0, + 292.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 1430.0, + 653.0, + 1430.0, + 653.0, + 1471.0, + 549.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 1430.0, + 1407.0, + 1430.0, + 1407.0, + 1471.0, + 693.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1461.0, + 1124.0, + 1461.0, + 1124.0, + 1500.0, + 292.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 1461.0, + 1403.0, + 1461.0, + 1403.0, + 1500.0, + 1260.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1491.0, + 1408.0, + 1491.0, + 1408.0, + 1531.0, + 292.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1522.0, + 1251.0, + 1522.0, + 1251.0, + 1563.0, + 293.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1522.0, + 1404.0, + 1522.0, + 1404.0, + 1563.0, + 1401.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1554.0, + 1213.0, + 1554.0, + 1213.0, + 1590.0, + 295.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1599.0, + 1406.0, + 1599.0, + 1406.0, + 1637.0, + 295.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1628.0, + 297.0, + 1628.0, + 297.0, + 1671.0, + 293.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 1628.0, + 749.0, + 1628.0, + 749.0, + 1671.0, + 465.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1628.0, + 1085.0, + 1628.0, + 1085.0, + 1671.0, + 861.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 1628.0, + 1298.0, + 1628.0, + 1298.0, + 1671.0, + 1114.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 1628.0, + 1405.0, + 1628.0, + 1405.0, + 1671.0, + 1324.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1659.0, + 567.0, + 1659.0, + 567.0, + 1699.0, + 293.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 1659.0, + 1405.0, + 1659.0, + 1405.0, + 1699.0, + 740.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1690.0, + 1405.0, + 1690.0, + 1405.0, + 1728.0, + 292.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 1723.0, + 673.0, + 1723.0, + 673.0, + 1760.0, + 409.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1773.0, + 487.0, + 1773.0, + 487.0, + 1809.0, + 295.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 1773.0, + 1405.0, + 1773.0, + 1405.0, + 1809.0, + 712.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1802.0, + 1407.0, + 1802.0, + 1407.0, + 1840.0, + 293.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1836.0, + 1094.0, + 1836.0, + 1094.0, + 1868.0, + 295.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 1836.0, + 1189.0, + 1836.0, + 1189.0, + 1868.0, + 1138.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 1836.0, + 1404.0, + 1836.0, + 1404.0, + 1868.0, + 1230.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1860.0, + 1405.0, + 1860.0, + 1405.0, + 1903.0, + 292.0, + 1903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1892.0, + 661.0, + 1892.0, + 661.0, + 1931.0, + 293.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 1892.0, + 880.0, + 1892.0, + 880.0, + 1931.0, + 678.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 1892.0, + 1405.0, + 1892.0, + 1405.0, + 1931.0, + 908.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1924.0, + 549.0, + 1924.0, + 549.0, + 1959.0, + 340.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 1924.0, + 1378.0, + 1924.0, + 1378.0, + 1959.0, + 577.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1139.0, + 1406.0, + 1139.0, + 1406.0, + 1178.0, + 293.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1172.0, + 1404.0, + 1172.0, + 1404.0, + 1209.0, + 294.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1202.0, + 609.0, + 1202.0, + 609.0, + 1239.0, + 294.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 1202.0, + 1285.0, + 1202.0, + 1285.0, + 1239.0, + 637.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1231.0, + 797.0, + 1231.0, + 797.0, + 1267.0, + 292.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 1231.0, + 1406.0, + 1231.0, + 1406.0, + 1267.0, + 899.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1263.0, + 854.0, + 1263.0, + 854.0, + 1297.0, + 293.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 1263.0, + 1285.0, + 1263.0, + 1285.0, + 1297.0, + 881.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1970.0, + 1405.0, + 1970.0, + 1405.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1998.0, + 1405.0, + 1998.0, + 1405.0, + 2042.0, + 293.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 921.0, + 791.0, + 921.0, + 791.0, + 960.0, + 296.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 921.0, + 1405.0, + 921.0, + 1405.0, + 960.0, + 898.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 950.0, + 1126.0, + 950.0, + 1126.0, + 995.0, + 291.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 950.0, + 1409.0, + 950.0, + 1409.0, + 995.0, + 1341.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 987.0, + 396.0, + 987.0, + 396.0, + 1026.0, + 294.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 987.0, + 797.0, + 987.0, + 797.0, + 1026.0, + 541.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 987.0, + 887.0, + 987.0, + 887.0, + 1026.0, + 825.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 987.0, + 1253.0, + 987.0, + 1253.0, + 1026.0, + 1003.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 987.0, + 1345.0, + 987.0, + 1345.0, + 1026.0, + 1334.0, + 1026.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1328, + 1403, + 1328, + 1403, + 1603, + 298, + 1603 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 737, + 1404, + 737, + 1404, + 1205, + 297, + 1205 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1617, + 1403, + 1617, + 1403, + 1864, + 297, + 1864 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 398, + 1403, + 398, + 1403, + 553, + 298, + 553 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1403, + 229, + 1403, + 384, + 298, + 384 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 567, + 1403, + 567, + 1403, + 721, + 298, + 721 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 300, + 1219, + 1397, + 1219, + 1397, + 1313, + 300, + 1313 + ], + "score": 0.962 + }, + { + "category_id": 2, + "poly": [ + 298, + 1948, + 1403, + 1948, + 1403, + 2033, + 298, + 2033 + ], + "score": 0.956 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.791 + }, + { + "category_id": 13, + "poly": [ + 1203, + 1679, + 1399, + 1679, + 1399, + 1712, + 1203, + 1712 + ], + "score": 0.94, + "latex": "\\mathrm { M M D } _ { k } ( P _ { X } , P _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 1132, + 568, + 1281, + 568, + 1281, + 602, + 1132, + 602 + ], + "score": 0.93, + "latex": "W _ { 1 } ( P _ { X } , P _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 1114, + 1419, + 1370, + 1419, + 1370, + 1455, + 1114, + 1455 + ], + "score": 0.93, + "latex": "\\mathbb { E } _ { Z ^ { \\prime } \\sim P _ { Z } } [ Q \\left( Z | G ( Z ^ { \\prime } ) \\right) ]" + }, + { + "category_id": 13, + "poly": [ + 831, + 352, + 910, + 352, + 910, + 386, + 831, + 386 + ], + "score": 0.92, + "latex": "c ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 1149, + 1481, + 1267, + 1481, + 1267, + 1512, + 1149, + 1512 + ], + "score": 0.92, + "latex": "P _ { X } = P _ { G }" + }, + { + "category_id": 13, + "poly": [ + 944, + 1953, + 1048, + 1953, + 1048, + 1980, + 944, + 1980 + ], + "score": 0.91, + "latex": "P _ { G } ( X | Z )" + }, + { + "category_id": 13, + "poly": [ + 1156, + 893, + 1259, + 893, + 1259, + 925, + 1156, + 925 + ], + "score": 0.91, + "latex": "f \\in \\mathcal { F } _ { L }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1080, + 441, + 1080, + 441, + 1118, + 297, + 1118 + ], + "score": 0.91, + "latex": "D _ { f } ( \\Gamma _ { Y } , Q ) )" + }, + { + "category_id": 13, + "poly": [ + 1196, + 1044, + 1404, + 1044, + 1404, + 1082, + 1196, + 1082 + ], + "score": 0.9, + "latex": "\\lambda \\cdot \\left( D _ { f } ( \\Gamma _ { X } , \\mathbf { \\bar { \\Gamma } } ^ { } P ) + \\right." + }, + { + "category_id": 13, + "poly": [ + 428, + 955, + 660, + 955, + 660, + 987, + 428, + 987 + ], + "score": 0.9, + "latex": "\\lambda \\cdot D _ { \\mathrm { K L } } ( \\Gamma , P \\otimes Q )" + }, + { + "category_id": 13, + "poly": [ + 774, + 1739, + 817, + 1739, + 817, + 1770, + 774, + 1770 + ], + "score": 0.9, + "latex": "1 0 ^ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 840, + 1421, + 883, + 1421, + 883, + 1451, + 840, + 1451 + ], + "score": 0.9, + "latex": "Q _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 758, + 1650, + 800, + 1650, + 800, + 1680, + 758, + 1680 + ], + "score": 0.89, + "latex": "P _ { X }" + }, + { + "category_id": 13, + "poly": [ + 442, + 890, + 705, + 890, + 705, + 927, + 442, + 927 + ], + "score": 0.89, + "latex": "\\lambda \\cdot \\mathbb { E } \\left( \\left\\| \\nabla f ( X ) \\right\\| - 1 \\right) ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1017, + 798, + 1059, + 798, + 1059, + 829, + 1017, + 829 + ], + "score": 0.89, + "latex": "W _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1336, + 1803, + 1374, + 1803, + 1374, + 1832, + 1336, + 1832 + ], + "score": 0.89, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 476, + 1803, + 515, + 1803, + 515, + 1832, + 476, + 1832 + ], + "score": 0.89, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1802, + 340, + 1802, + 340, + 1833, + 297, + 1833 + ], + "score": 0.89, + "latex": "Q _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 852, + 660, + 893, + 660, + 893, + 690, + 852, + 690 + ], + "score": 0.89, + "latex": "W _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 991, + 1082, + 1033, + 1082, + 1033, + 1113, + 991, + 1113 + ], + "score": 0.89, + "latex": "\\Gamma _ { X }" + }, + { + "category_id": 13, + "poly": [ + 744, + 261, + 905, + 261, + 905, + 295, + 744, + 295 + ], + "score": 0.89, + "latex": "- \\log p _ { G } ( x | z )" + }, + { + "category_id": 13, + "poly": [ + 852, + 1650, + 891, + 1650, + 891, + 1680, + 852, + 1680 + ], + "score": 0.89, + "latex": "P _ { G }" + }, + { + "category_id": 13, + "poly": [ + 297, + 293, + 370, + 293, + 370, + 320, + 297, + 320 + ], + "score": 0.88, + "latex": "z \\in { \\mathcal { Z } }" + }, + { + "category_id": 13, + "poly": [ + 554, + 927, + 595, + 927, + 595, + 955, + 554, + 955 + ], + "score": 0.88, + "latex": "W _ { c }" + }, + { + "category_id": 13, + "poly": [ + 1022, + 630, + 1062, + 630, + 1062, + 660, + 1022, + 660 + ], + "score": 0.88, + "latex": "W _ { c }" + }, + { + "category_id": 13, + "poly": [ + 1089, + 1083, + 1130, + 1083, + 1130, + 1113, + 1089, + 1113 + ], + "score": 0.88, + "latex": "\\Gamma _ { Y }" + }, + { + "category_id": 13, + "poly": [ + 871, + 769, + 891, + 769, + 891, + 800, + 871, + 800 + ], + "score": 0.85, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 999, + 1222, + 1018, + 1222, + 1018, + 1253, + 999, + 1253 + ], + "score": 0.83, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1374, + 830, + 1393, + 830, + 1393, + 860, + 1374, + 860 + ], + "score": 0.82, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 355, + 1773, + 374, + 1773, + 374, + 1799, + 355, + 1799 + ], + "score": 0.81, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 465, + 2006, + 487, + 2006, + 487, + 2030, + 465, + 2030 + ], + "score": 0.8, + "latex": "Z" + }, + { + "category_id": 13, + "poly": [ + 1291, + 1713, + 1319, + 1713, + 1319, + 1738, + 1291, + 1738 + ], + "score": 0.8, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 878, + 1803, + 903, + 1803, + 903, + 1829, + 878, + 1829 + ], + "score": 0.8, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 632, + 1651, + 651, + 1651, + 651, + 1677, + 632, + 1677 + ], + "score": 0.79, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1190, + 1651, + 1217, + 1651, + 1217, + 1677, + 1190, + 1677 + ], + "score": 0.78, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 727, + 1803, + 752, + 1803, + 752, + 1829, + 727, + 1829 + ], + "score": 0.71, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 545, + 357, + 562, + 357, + 562, + 380, + 545, + 380 + ], + "score": 0.7, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 847, + 696, + 863, + 696, + 863, + 717, + 847, + 717 + ], + "score": 0.69, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 624, + 769, + 646, + 769, + 646, + 795, + 624, + 795 + ], + "score": 0.68, + "latex": "\\Gamma" + }, + { + "category_id": 13, + "poly": [ + 1332, + 1084, + 1353, + 1084, + 1353, + 1110, + 1332, + 1110 + ], + "score": 0.63, + "latex": "\\Gamma" + }, + { + "category_id": 13, + "poly": [ + 692, + 1359, + 764, + 1359, + 764, + 1388, + 692, + 1388 + ], + "score": 0.34, + "latex": "2 0 1 7 \\mathrm { a }" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1941.0, + 943.0, + 1941.0, + 943.0, + 1986.0, + 326.0, + 1986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 1941.0, + 1407.0, + 1941.0, + 1407.0, + 1986.0, + 1049.0, + 1986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1979.0, + 1404.0, + 1979.0, + 1404.0, + 2008.0, + 296.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 464.0, + 2003.0, + 464.0, + 2036.0, + 295.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 2003.0, + 498.0, + 2003.0, + 498.0, + 2036.0, + 488.0, + 2036.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": [ + 840.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1326.0, + 1405.0, + 1326.0, + 1405.0, + 1364.0, + 294.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1357.0, + 691.0, + 1357.0, + 691.0, + 1394.0, + 294.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 1357.0, + 1405.0, + 1357.0, + 1405.0, + 1394.0, + 765.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1389.0, + 1407.0, + 1389.0, + 1407.0, + 1425.0, + 293.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1416.0, + 839.0, + 1416.0, + 839.0, + 1456.0, + 292.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1416.0, + 1113.0, + 1416.0, + 1113.0, + 1456.0, + 884.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1371.0, + 1416.0, + 1408.0, + 1416.0, + 1408.0, + 1456.0, + 1371.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1450.0, + 1407.0, + 1450.0, + 1407.0, + 1485.0, + 291.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1480.0, + 1148.0, + 1480.0, + 1148.0, + 1516.0, + 293.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 1480.0, + 1405.0, + 1480.0, + 1405.0, + 1516.0, + 1268.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1510.0, + 1405.0, + 1510.0, + 1405.0, + 1545.0, + 292.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1541.0, + 1403.0, + 1541.0, + 1403.0, + 1577.0, + 294.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1571.0, + 1275.0, + 1571.0, + 1275.0, + 1607.0, + 293.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 736.0, + 1406.0, + 736.0, + 1406.0, + 772.0, + 294.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 767.0, + 623.0, + 767.0, + 623.0, + 802.0, + 294.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 767.0, + 870.0, + 767.0, + 870.0, + 802.0, + 647.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 767.0, + 1406.0, + 767.0, + 1406.0, + 802.0, + 892.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 797.0, + 1016.0, + 797.0, + 1016.0, + 833.0, + 294.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 797.0, + 1406.0, + 797.0, + 1406.0, + 833.0, + 1060.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 826.0, + 1373.0, + 826.0, + 1373.0, + 866.0, + 292.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 826.0, + 1406.0, + 826.0, + 1406.0, + 866.0, + 1394.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 858.0, + 1405.0, + 858.0, + 1405.0, + 894.0, + 294.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 889.0, + 441.0, + 889.0, + 441.0, + 930.0, + 292.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 889.0, + 1155.0, + 889.0, + 1155.0, + 930.0, + 706.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 889.0, + 1407.0, + 889.0, + 1407.0, + 930.0, + 1260.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 920.0, + 553.0, + 920.0, + 553.0, + 961.0, + 291.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 920.0, + 1406.0, + 920.0, + 1406.0, + 961.0, + 596.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 955.0, + 427.0, + 955.0, + 427.0, + 990.0, + 295.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 955.0, + 1404.0, + 955.0, + 1404.0, + 990.0, + 661.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 984.0, + 1405.0, + 984.0, + 1405.0, + 1020.0, + 294.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1013.0, + 1408.0, + 1013.0, + 1408.0, + 1052.0, + 292.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1045.0, + 1195.0, + 1045.0, + 1195.0, + 1084.0, + 292.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 1080.0, + 990.0, + 1080.0, + 990.0, + 1119.0, + 442.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 1080.0, + 1088.0, + 1080.0, + 1088.0, + 1119.0, + 1034.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1080.0, + 1331.0, + 1080.0, + 1331.0, + 1119.0, + 1131.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1080.0, + 1406.0, + 1080.0, + 1406.0, + 1119.0, + 1354.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1109.0, + 1407.0, + 1109.0, + 1407.0, + 1150.0, + 292.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1141.0, + 1407.0, + 1141.0, + 1407.0, + 1180.0, + 292.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1173.0, + 975.0, + 1173.0, + 975.0, + 1212.0, + 294.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1619.0, + 1404.0, + 1619.0, + 1404.0, + 1653.0, + 296.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1650.0, + 631.0, + 1650.0, + 631.0, + 1684.0, + 295.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 1650.0, + 757.0, + 1650.0, + 757.0, + 1684.0, + 652.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1650.0, + 851.0, + 1650.0, + 851.0, + 1684.0, + 801.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 1650.0, + 1189.0, + 1650.0, + 1189.0, + 1684.0, + 892.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 1650.0, + 1405.0, + 1650.0, + 1405.0, + 1684.0, + 1218.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1679.0, + 1202.0, + 1679.0, + 1202.0, + 1716.0, + 292.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1679.0, + 1404.0, + 1679.0, + 1404.0, + 1716.0, + 1400.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1710.0, + 1290.0, + 1710.0, + 1290.0, + 1744.0, + 292.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1320.0, + 1710.0, + 1404.0, + 1710.0, + 1404.0, + 1744.0, + 1320.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1740.0, + 773.0, + 1740.0, + 773.0, + 1774.0, + 293.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 1740.0, + 1405.0, + 1740.0, + 1405.0, + 1774.0, + 818.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1771.0, + 354.0, + 1771.0, + 354.0, + 1804.0, + 292.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1771.0, + 1405.0, + 1771.0, + 1405.0, + 1804.0, + 375.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 1801.0, + 475.0, + 1801.0, + 475.0, + 1838.0, + 341.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 1801.0, + 726.0, + 1801.0, + 726.0, + 1838.0, + 516.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 1801.0, + 877.0, + 1801.0, + 877.0, + 1838.0, + 753.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 1801.0, + 1335.0, + 1801.0, + 1335.0, + 1838.0, + 904.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 1801.0, + 1407.0, + 1801.0, + 1407.0, + 1838.0, + 1375.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1833.0, + 1273.0, + 1833.0, + 1273.0, + 1867.0, + 295.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 397.0, + 1405.0, + 397.0, + 1405.0, + 433.0, + 293.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 428.0, + 1405.0, + 428.0, + 1405.0, + 464.0, + 294.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 460.0, + 1405.0, + 460.0, + 1405.0, + 497.0, + 294.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 487.0, + 1405.0, + 487.0, + 1405.0, + 527.0, + 292.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 517.0, + 664.0, + 517.0, + 664.0, + 559.0, + 292.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 229.0, + 1403.0, + 229.0, + 1403.0, + 263.0, + 297.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 260.0, + 743.0, + 260.0, + 743.0, + 296.0, + 296.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 260.0, + 1405.0, + 260.0, + 1405.0, + 296.0, + 906.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 291.0, + 296.0, + 291.0, + 296.0, + 326.0, + 292.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 291.0, + 1405.0, + 291.0, + 1405.0, + 326.0, + 371.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 321.0, + 1405.0, + 321.0, + 1405.0, + 356.0, + 292.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 350.0, + 544.0, + 350.0, + 544.0, + 390.0, + 292.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 350.0, + 830.0, + 350.0, + 830.0, + 390.0, + 563.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 350.0, + 1398.0, + 350.0, + 1398.0, + 390.0, + 911.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 569.0, + 1131.0, + 569.0, + 1131.0, + 602.0, + 297.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 569.0, + 1404.0, + 569.0, + 1404.0, + 602.0, + 1282.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 599.0, + 1404.0, + 599.0, + 1404.0, + 632.0, + 296.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 629.0, + 1021.0, + 629.0, + 1021.0, + 663.0, + 294.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 629.0, + 1403.0, + 629.0, + 1403.0, + 663.0, + 1063.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 660.0, + 851.0, + 660.0, + 851.0, + 693.0, + 296.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 660.0, + 1404.0, + 660.0, + 1404.0, + 693.0, + 894.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 688.0, + 846.0, + 688.0, + 846.0, + 725.0, + 294.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 688.0, + 1290.0, + 688.0, + 1290.0, + 725.0, + 864.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1220.0, + 998.0, + 1220.0, + 998.0, + 1254.0, + 295.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 1220.0, + 1402.0, + 1220.0, + 1402.0, + 1254.0, + 1019.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1251.0, + 1403.0, + 1251.0, + 1403.0, + 1285.0, + 295.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1282.0, + 826.0, + 1282.0, + 826.0, + 1316.0, + 295.0, + 1316.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1598, + 1403, + 1598, + 1403, + 1843, + 297, + 1843 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1398, + 1404, + 1398, + 1404, + 1583, + 298, + 1583 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 305, + 216, + 1396, + 216, + 1396, + 1188, + 305, + 1188 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1858, + 1403, + 1858, + 1403, + 1981, + 299, + 1981 + ], + "score": 0.967 + }, + { + "category_id": 4, + "poly": [ + 296, + 1210, + 1401, + 1210, + 1401, + 1273, + 296, + 1273 + ], + "score": 0.942 + }, + { + "category_id": 2, + "poly": [ + 331, + 2006, + 965, + 2006, + 965, + 2033, + 331, + 2033 + ], + "score": 0.911 + }, + { + "category_id": 0, + "poly": [ + 300, + 1329, + 556, + 1329, + 556, + 1364, + 300, + 1364 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 814, + 76, + 814, + 104, + 299, + 104 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 858, + 2088, + 858, + 2111, + 842, + 2111 + ], + "score": 0.685 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2111, + 841, + 2111 + ], + "score": 0.188 + }, + { + "category_id": 13, + "poly": [ + 1012, + 1658, + 1233, + 1658, + 1233, + 1693, + 1012, + 1693 + ], + "score": 0.93, + "latex": "c ( \\bar { x } , y ) = \\| x - \\bar { y } \\| _ { 2 } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 561, + 1950, + 657, + 1950, + 657, + 1981, + 561, + 1981 + ], + "score": 0.92, + "latex": "d _ { z } = 6 4" + }, + { + "category_id": 13, + "poly": [ + 697, + 1751, + 847, + 1751, + 847, + 1781, + 697, + 1781 + ], + "score": 0.92, + "latex": "G _ { \\theta } \\colon { \\mathcal { Z } } \\to { \\mathcal { X } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1950, + 379, + 1950, + 379, + 1981, + 298, + 1981 + ], + "score": 0.91, + "latex": "d _ { z } = 8" + }, + { + "category_id": 13, + "poly": [ + 815, + 1889, + 859, + 1889, + 859, + 1921, + 815, + 1921 + ], + "score": 0.9, + "latex": "Q _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 434, + 1812, + 519, + 1812, + 519, + 1840, + 434, + 1840 + ], + "score": 0.9, + "latex": "\\lambda = 1 0" + }, + { + "category_id": 13, + "poly": [ + 1267, + 1595, + 1399, + 1595, + 1399, + 1627, + 1267, + 1627 + ], + "score": 0.9, + "latex": "\\mathcal { Z } \\ = \\ \\mathcal { R } ^ { d _ { z } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1753, + 444, + 1753, + 444, + 1784, + 298, + 1784 + ], + "score": 0.9, + "latex": "\\mu _ { \\phi } \\colon \\mathcal { X } \\to \\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 683, + 1921, + 721, + 1921, + 721, + 1950, + 683, + 1950 + ], + "score": 0.89, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 408, + 1920, + 451, + 1920, + 451, + 1951, + 408, + 1951 + ], + "score": 0.89, + "latex": "Q _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 486, + 1920, + 525, + 1920, + 525, + 1950, + 486, + 1950 + ], + "score": 0.89, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1659, + 605, + 1659, + 605, + 1692, + 297, + 1692 + ], + "score": 0.89, + "latex": "P _ { Z } ( Z ) = \\mathcal { N } ( Z ; \\mathbf { 0 } , \\sigma _ { z } ^ { 2 } \\cdot I _ { d } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1691, + 488, + 1691, + 488, + 1720, + 298, + 1720 + ], + "score": 0.88, + "latex": "x , y \\in \\mathcal { X } = \\mathcal { R } ^ { d _ { x } }" + }, + { + "category_id": 13, + "poly": [ + 895, + 1860, + 925, + 1860, + 925, + 1889, + 895, + 1889 + ], + "score": 0.88, + "latex": "d _ { z }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1722, + 554, + 1722, + 554, + 1752, + 297, + 1752 + ], + "score": 0.88, + "latex": "\\beta _ { 1 } = 0 . 5 , \\beta _ { 2 } = 0 . 9 9 9" + }, + { + "category_id": 13, + "poly": [ + 430, + 1630, + 460, + 1630, + 460, + 1659, + 430, + 1659 + ], + "score": 0.86, + "latex": "d _ { z }" + }, + { + "category_id": 13, + "poly": [ + 1333, + 1783, + 1353, + 1783, + 1353, + 1809, + 1333, + 1809 + ], + "score": 0.8, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 664, + 1661, + 690, + 1661, + 690, + 1688, + 664, + 1688 + ], + "score": 0.77, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 1151, + 1890, + 1176, + 1890, + 1176, + 1917, + 1151, + 1917 + ], + "score": 0.74, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 518, + 1552, + 564, + 1552, + 564, + 1580, + 518, + 1580 + ], + "score": 0.41, + "latex": "7 0 \\mathrm { k }" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 216.0, + 559.0, + 216.0, + 559.0, + 255.0, + 489.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 214.0, + 950.0, + 214.0, + 950.0, + 254.0, + 801.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 213.0, + 1299.0, + 213.0, + 1299.0, + 257.0, + 1156.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 269.0, + 341.0, + 269.0, + 341.0, + 491.0, + 300.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 252.0, + 694.0, + 252.0, + 694.0, + 335.0, + 353.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 250.0, + 1045.0, + 250.0, + 1045.0, + 332.0, + 705.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 253.0, + 1398.0, + 253.0, + 1398.0, + 335.0, + 1058.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 322.0, + 492.0, + 322.0, + 492.0, + 368.0, + 357.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 329.0, + 558.0, + 329.0, + 558.0, + 360.0, + 494.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 322.0, + 693.0, + 322.0, + 693.0, + 367.0, + 560.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 321.0, + 1049.0, + 321.0, + 1049.0, + 369.0, + 708.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 322.0, + 1361.0, + 322.0, + 1361.0, + 367.0, + 1058.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1365.0, + 330.0, + 1390.0, + 330.0, + 1390.0, + 361.0, + 1365.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 360.0, + 422.0, + 360.0, + 422.0, + 405.0, + 363.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 360.0, + 693.0, + 360.0, + 693.0, + 402.0, + 485.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 358.0, + 886.0, + 358.0, + 886.0, + 407.0, + 705.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 358.0, + 1050.0, + 358.0, + 1050.0, + 407.0, + 904.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 360.0, + 1395.0, + 360.0, + 1395.0, + 404.0, + 1060.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 394.0, + 693.0, + 394.0, + 693.0, + 440.0, + 364.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 393.0, + 909.0, + 393.0, + 909.0, + 439.0, + 705.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 396.0, + 1044.0, + 396.0, + 1044.0, + 440.0, + 911.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 392.0, + 1391.0, + 392.0, + 1391.0, + 443.0, + 1058.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 429.0, + 432.0, + 429.0, + 432.0, + 474.0, + 359.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 425.0, + 528.0, + 425.0, + 528.0, + 469.0, + 457.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 430.0, + 690.0, + 430.0, + 690.0, + 471.0, + 561.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 429.0, + 1042.0, + 429.0, + 1042.0, + 472.0, + 709.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 430.0, + 1393.0, + 430.0, + 1393.0, + 474.0, + 1061.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 465.0, + 689.0, + 465.0, + 689.0, + 508.0, + 358.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 468.0, + 858.0, + 468.0, + 858.0, + 508.0, + 709.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 470.0, + 1043.0, + 470.0, + 1043.0, + 507.0, + 941.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 466.0, + 1393.0, + 466.0, + 1393.0, + 510.0, + 1058.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 502.0, + 571.0, + 502.0, + 571.0, + 851.0, + 517.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 504.0, + 651.0, + 504.0, + 651.0, + 770.0, + 608.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 505.0, + 612.0, + 505.0, + 612.0, + 851.0, + 561.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 505.0, + 691.0, + 505.0, + 691.0, + 849.0, + 636.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 505.0, + 1400.0, + 505.0, + 1400.0, + 851.0, + 1344.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 506.0, + 527.0, + 506.0, + 527.0, + 847.0, + 480.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 506.0, + 882.0, + 506.0, + 882.0, + 850.0, + 831.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 506.0, + 928.0, + 506.0, + 928.0, + 850.0, + 873.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 507.0, + 487.0, + 507.0, + 487.0, + 850.0, + 440.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 507.0, + 963.0, + 507.0, + 963.0, + 851.0, + 913.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 994.0, + 507.0, + 1045.0, + 507.0, + 1045.0, + 847.0, + 994.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 507.0, + 1275.0, + 507.0, + 1275.0, + 850.0, + 1224.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 508.0, + 839.0, + 508.0, + 839.0, + 850.0, + 792.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 508.0, + 1004.0, + 508.0, + 1004.0, + 847.0, + 957.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.0, + 508.0, + 1189.0, + 508.0, + 1189.0, + 848.0, + 1142.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 508.0, + 1316.0, + 508.0, + 1316.0, + 851.0, + 1265.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 508.0, + 1356.0, + 508.0, + 1356.0, + 796.0, + 1312.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 510.0, + 762.0, + 510.0, + 762.0, + 851.0, + 708.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 510.0, + 1231.0, + 510.0, + 1231.0, + 850.0, + 1184.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 511.0, + 404.0, + 511.0, + 404.0, + 848.0, + 357.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 512.0, + 441.0, + 512.0, + 441.0, + 685.0, + 401.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 512.0, + 1142.0, + 512.0, + 1142.0, + 677.0, + 1106.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 513.0, + 791.0, + 513.0, + 791.0, + 647.0, + 755.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 519.0, + 1104.0, + 519.0, + 1104.0, + 559.0, + 1066.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 544.0, + 1114.0, + 544.0, + 1114.0, + 849.0, + 1067.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 559.0, + 340.0, + 559.0, + 340.0, + 798.0, + 304.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 748.0, + 1445.0, + 748.0, + 1445.0, + 1237.0, + 949.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 757.0, + 444.0, + 757.0, + 444.0, + 847.0, + 401.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 759.0, + 795.0, + 759.0, + 795.0, + 846.0, + 752.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 762.0, + 1149.0, + 762.0, + 1149.0, + 846.0, + 1107.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 804.0, + 1348.0, + 804.0, + 1348.0, + 841.0, + 1319.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 806.0, + 636.0, + 806.0, + 636.0, + 836.0, + 611.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 815.0, + 975.0, + 815.0, + 975.0, + 1054.0, + 797.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 845.0, + 439.0, + 845.0, + 439.0, + 1085.0, + 387.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 847.0, + 414.0, + 847.0, + 414.0, + 977.0, + 369.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 850.0, + 519.0, + 850.0, + 519.0, + 1020.0, + 483.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 850.0, + 1250.0, + 850.0, + 1250.0, + 1022.0, + 1210.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 851.0, + 499.0, + 851.0, + 499.0, + 972.0, + 462.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 851.0, + 691.0, + 851.0, + 691.0, + 974.0, + 659.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 851.0, + 1179.0, + 851.0, + 1179.0, + 1041.0, + 1143.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 851.0, + 1224.0, + 851.0, + 1224.0, + 1085.0, + 1188.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 851.0, + 1269.0, + 851.0, + 1269.0, + 1130.0, + 1233.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 851.0, + 1291.0, + 851.0, + 1291.0, + 1084.0, + 1255.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 851.0, + 1398.0, + 851.0, + 1398.0, + 887.0, + 1342.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 852.0, + 669.0, + 852.0, + 669.0, + 882.0, + 619.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 852.0, + 1025.0, + 852.0, + 1025.0, + 888.0, + 968.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 852.0, + 1047.0, + 852.0, + 1047.0, + 951.0, + 1014.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 852.0, + 1112.0, + 852.0, + 1112.0, + 929.0, + 1079.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 853.0, + 473.0, + 853.0, + 473.0, + 994.0, + 445.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 854.0, + 955.0, + 854.0, + 955.0, + 929.0, + 922.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 855.0, + 604.0, + 855.0, + 604.0, + 878.0, + 576.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 855.0, + 822.0, + 855.0, + 822.0, + 881.0, + 797.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 856.0, + 385.0, + 856.0, + 385.0, + 882.0, + 358.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 856.0, + 539.0, + 856.0, + 539.0, + 882.0, + 512.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 856.0, + 559.0, + 856.0, + 559.0, + 882.0, + 532.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 856.0, + 583.0, + 856.0, + 583.0, + 879.0, + 555.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 856.0, + 757.0, + 856.0, + 757.0, + 879.0, + 730.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 856.0, + 847.0, + 856.0, + 847.0, + 879.0, + 818.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 856.0, + 1153.0, + 856.0, + 1153.0, + 882.0, + 1127.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1323.0, + 856.0, + 1355.0, + 856.0, + 1355.0, + 884.0, + 1323.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 857.0, + 445.0, + 857.0, + 445.0, + 881.0, + 424.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 857.0, + 623.0, + 857.0, + 623.0, + 878.0, + 602.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 857.0, + 801.0, + 857.0, + 801.0, + 877.0, + 776.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 857.0, + 976.0, + 857.0, + 976.0, + 882.0, + 950.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 857.0, + 1084.0, + 857.0, + 1084.0, + 879.0, + 1064.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 858.0, + 1194.0, + 858.0, + 1194.0, + 881.0, + 1173.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 858.0, + 1328.0, + 858.0, + 1328.0, + 881.0, + 1307.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 860.0, + 1128.0, + 860.0, + 1128.0, + 879.0, + 1109.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 863.0, + 728.0, + 863.0, + 728.0, + 873.0, + 719.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 873.0, + 382.0, + 873.0, + 382.0, + 972.0, + 357.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 869.0, + 450.0, + 869.0, + 450.0, + 994.0, + 417.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 870.0, + 668.0, + 870.0, + 668.0, + 996.0, + 507.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 871.0, + 872.0, + 871.0, + 872.0, + 1016.0, + 712.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 874.0, + 1020.0, + 874.0, + 1020.0, + 902.0, + 952.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 870.0, + 1091.0, + 870.0, + 1091.0, + 971.0, + 1059.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 870.0, + 1156.0, + 870.0, + 1156.0, + 1089.0, + 1105.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 872.0, + 1200.0, + 872.0, + 1200.0, + 1064.0, + 1168.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 868.0, + 1378.0, + 868.0, + 1378.0, + 1063.0, + 1276.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 902.0, + 622.0, + 902.0, + 622.0, + 923.0, + 602.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 897.0, + 668.0, + 897.0, + 668.0, + 927.0, + 623.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 898.0, + 777.0, + 898.0, + 777.0, + 927.0, + 712.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 892.0, + 1020.0, + 892.0, + 1020.0, + 928.0, + 953.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 913.0, + 341.0, + 913.0, + 341.0, + 1122.0, + 301.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 914.0, + 648.0, + 914.0, + 648.0, + 953.0, + 625.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 914.0, + 1114.0, + 914.0, + 1114.0, + 995.0, + 1080.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 915.0, + 669.0, + 915.0, + 669.0, + 969.0, + 643.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 915.0, + 953.0, + 915.0, + 953.0, + 952.0, + 931.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 918.0, + 583.0, + 918.0, + 583.0, + 1038.0, + 554.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 918.0, + 730.0, + 918.0, + 730.0, + 945.0, + 712.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 918.0, + 757.0, + 918.0, + 757.0, + 949.0, + 733.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 918.0, + 886.0, + 918.0, + 886.0, + 948.0, + 864.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 919.0, + 604.0, + 919.0, + 604.0, + 946.0, + 580.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 920.0, + 975.0, + 920.0, + 975.0, + 946.0, + 955.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 920.0, + 999.0, + 920.0, + 999.0, + 946.0, + 973.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 920.0, + 1020.0, + 920.0, + 1020.0, + 945.0, + 993.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 922.0, + 776.0, + 922.0, + 776.0, + 945.0, + 755.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 922.0, + 930.0, + 922.0, + 930.0, + 945.0, + 910.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 925.0, + 622.0, + 925.0, + 622.0, + 945.0, + 602.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 925.0, + 821.0, + 925.0, + 821.0, + 945.0, + 801.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 941.0, + 602.0, + 941.0, + 602.0, + 969.0, + 579.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 936.0, + 649.0, + 936.0, + 649.0, + 1065.0, + 604.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 938.0, + 776.0, + 938.0, + 776.0, + 971.0, + 710.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 946.0, + 795.0, + 946.0, + 795.0, + 964.0, + 779.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 939.0, + 841.0, + 939.0, + 841.0, + 992.0, + 798.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 939.0, + 888.0, + 939.0, + 888.0, + 992.0, + 863.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 943.0, + 952.0, + 943.0, + 952.0, + 970.0, + 914.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 939.0, + 1044.0, + 939.0, + 1044.0, + 1015.0, + 955.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 943.0, + 1130.0, + 943.0, + 1130.0, + 971.0, + 1106.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 960.0, + 401.0, + 960.0, + 401.0, + 1013.0, + 357.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 963.0, + 493.0, + 963.0, + 493.0, + 991.0, + 470.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 959.0, + 559.0, + 959.0, + 559.0, + 1017.0, + 533.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 958.0, + 622.0, + 958.0, + 622.0, + 992.0, + 576.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 959.0, + 693.0, + 959.0, + 693.0, + 1083.0, + 637.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 964.0, + 731.0, + 964.0, + 731.0, + 990.0, + 712.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 966.0, + 755.0, + 966.0, + 755.0, + 989.0, + 735.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 965.0, + 775.0, + 965.0, + 775.0, + 990.0, + 756.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 968.0, + 795.0, + 968.0, + 795.0, + 984.0, + 779.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 964.0, + 842.0, + 964.0, + 842.0, + 990.0, + 823.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 959.0, + 1024.0, + 959.0, + 1024.0, + 1012.0, + 911.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 966.0, + 1084.0, + 966.0, + 1084.0, + 990.0, + 1065.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 966.0, + 1130.0, + 966.0, + 1130.0, + 991.0, + 1104.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 981.0, + 406.0, + 981.0, + 406.0, + 1017.0, + 379.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 981.0, + 494.0, + 981.0, + 494.0, + 1016.0, + 426.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 986.0, + 533.0, + 986.0, + 533.0, + 1010.0, + 513.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 985.0, + 623.0, + 985.0, + 623.0, + 1016.0, + 581.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 982.0, + 822.0, + 982.0, + 822.0, + 1016.0, + 710.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 987.0, + 843.0, + 987.0, + 843.0, + 1012.0, + 823.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 981.0, + 886.0, + 981.0, + 886.0, + 1016.0, + 865.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 984.0, + 930.0, + 984.0, + 930.0, + 1010.0, + 910.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 984.0, + 1022.0, + 984.0, + 1022.0, + 1016.0, + 953.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 985.0, + 1125.0, + 985.0, + 1125.0, + 1012.0, + 1069.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1007.0, + 382.0, + 1007.0, + 382.0, + 1036.0, + 358.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 1012.0, + 399.0, + 1012.0, + 399.0, + 1033.0, + 384.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 1004.0, + 537.0, + 1004.0, + 537.0, + 1128.0, + 425.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 1007.0, + 623.0, + 1007.0, + 623.0, + 1036.0, + 579.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 1010.0, + 731.0, + 1010.0, + 731.0, + 1030.0, + 712.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 1011.0, + 754.0, + 1011.0, + 754.0, + 1032.0, + 734.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 1008.0, + 776.0, + 1008.0, + 776.0, + 1032.0, + 756.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 1011.0, + 798.0, + 1011.0, + 798.0, + 1033.0, + 780.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1011.0, + 819.0, + 1011.0, + 819.0, + 1035.0, + 801.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 1015.0, + 839.0, + 1015.0, + 839.0, + 1032.0, + 826.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1011.0, + 864.0, + 1011.0, + 864.0, + 1035.0, + 844.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 1008.0, + 885.0, + 1008.0, + 885.0, + 1035.0, + 865.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 1007.0, + 931.0, + 1007.0, + 931.0, + 1036.0, + 888.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1011.0, + 952.0, + 1011.0, + 952.0, + 1035.0, + 932.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 1006.0, + 1020.0, + 1006.0, + 1020.0, + 1036.0, + 973.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 1013.0, + 1037.0, + 1013.0, + 1037.0, + 1027.0, + 1027.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1008.0, + 1110.0, + 1008.0, + 1110.0, + 1036.0, + 1064.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 1018.0, + 1125.0, + 1018.0, + 1125.0, + 1027.0, + 1111.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 1005.0, + 1240.0, + 1005.0, + 1240.0, + 1082.0, + 1215.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 1033.0, + 377.0, + 1033.0, + 377.0, + 1052.0, + 363.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 1030.0, + 405.0, + 1030.0, + 405.0, + 1056.0, + 379.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 1033.0, + 446.0, + 1033.0, + 446.0, + 1059.0, + 427.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 1037.0, + 487.0, + 1037.0, + 487.0, + 1053.0, + 473.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 1026.0, + 537.0, + 1026.0, + 537.0, + 1104.0, + 488.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 1030.0, + 579.0, + 1030.0, + 579.0, + 1061.0, + 538.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 1031.0, + 600.0, + 1031.0, + 600.0, + 1054.0, + 580.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 1032.0, + 622.0, + 1032.0, + 622.0, + 1054.0, + 602.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 1033.0, + 666.0, + 1033.0, + 666.0, + 1054.0, + 646.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 1031.0, + 731.0, + 1031.0, + 731.0, + 1056.0, + 712.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 1033.0, + 754.0, + 1033.0, + 754.0, + 1054.0, + 735.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 1035.0, + 776.0, + 1035.0, + 776.0, + 1054.0, + 756.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 1031.0, + 800.0, + 1031.0, + 800.0, + 1054.0, + 779.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1031.0, + 821.0, + 1031.0, + 821.0, + 1054.0, + 801.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 1036.0, + 839.0, + 1036.0, + 839.0, + 1053.0, + 824.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 1023.0, + 931.0, + 1023.0, + 931.0, + 1082.0, + 841.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1023.0, + 1047.0, + 1023.0, + 1047.0, + 1190.0, + 932.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 1033.0, + 1085.0, + 1033.0, + 1085.0, + 1053.0, + 1070.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 1031.0, + 1127.0, + 1031.0, + 1127.0, + 1054.0, + 1086.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 1035.0, + 1172.0, + 1035.0, + 1172.0, + 1054.0, + 1152.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 1030.0, + 1328.0, + 1030.0, + 1328.0, + 1058.0, + 1285.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1044.0, + 750.0, + 1044.0, + 750.0, + 1236.0, + 308.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 1053.0, + 801.0, + 1053.0, + 801.0, + 1079.0, + 755.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 1048.0, + 845.0, + 1048.0, + 845.0, + 1126.0, + 817.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1053.0, + 885.0, + 1053.0, + 885.0, + 1100.0, + 846.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1052.0, + 930.0, + 1052.0, + 930.0, + 1078.0, + 910.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1051.0, + 1022.0, + 1051.0, + 1022.0, + 1075.0, + 932.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 1056.0, + 1128.0, + 1056.0, + 1128.0, + 1077.0, + 1107.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 1052.0, + 1195.0, + 1052.0, + 1195.0, + 1080.0, + 1152.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 1056.0, + 1303.0, + 1056.0, + 1303.0, + 1078.0, + 1282.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 1049.0, + 1369.0, + 1049.0, + 1369.0, + 1125.0, + 1305.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 1075.0, + 379.0, + 1075.0, + 379.0, + 1099.0, + 360.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 1070.0, + 403.0, + 1070.0, + 403.0, + 1102.0, + 380.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 1075.0, + 424.0, + 1075.0, + 424.0, + 1099.0, + 404.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 1080.0, + 445.0, + 1080.0, + 445.0, + 1098.0, + 429.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 1080.0, + 487.0, + 1080.0, + 487.0, + 1097.0, + 472.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 1079.0, + 532.0, + 1079.0, + 532.0, + 1098.0, + 518.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 1073.0, + 556.0, + 1073.0, + 556.0, + 1099.0, + 537.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 1075.0, + 578.0, + 1075.0, + 578.0, + 1099.0, + 558.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 1070.0, + 689.0, + 1070.0, + 689.0, + 1125.0, + 580.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 1080.0, + 749.0, + 1080.0, + 749.0, + 1092.0, + 738.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 1075.0, + 776.0, + 1075.0, + 776.0, + 1098.0, + 756.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 1075.0, + 797.0, + 1075.0, + 797.0, + 1099.0, + 777.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 1073.0, + 819.0, + 1073.0, + 819.0, + 1099.0, + 800.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1075.0, + 864.0, + 1075.0, + 864.0, + 1098.0, + 846.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1072.0, + 930.0, + 1072.0, + 930.0, + 1100.0, + 886.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1077.0, + 951.0, + 1077.0, + 951.0, + 1099.0, + 932.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 1080.0, + 972.0, + 1080.0, + 972.0, + 1097.0, + 957.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 1072.0, + 1109.0, + 1072.0, + 1109.0, + 1126.0, + 1061.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 1080.0, + 1147.0, + 1080.0, + 1147.0, + 1098.0, + 1132.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1080.0, + 1172.0, + 1080.0, + 1172.0, + 1098.0, + 1156.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 1074.0, + 1239.0, + 1074.0, + 1239.0, + 1105.0, + 1195.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 1073.0, + 1327.0, + 1073.0, + 1327.0, + 1126.0, + 1260.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 1069.0, + 1372.0, + 1069.0, + 1372.0, + 1148.0, + 1343.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1089.0, + 669.0, + 1089.0, + 669.0, + 1170.0, + 354.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1090.0, + 1025.0, + 1090.0, + 1025.0, + 1171.0, + 726.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 1095.0, + 1383.0, + 1095.0, + 1383.0, + 1191.0, + 1058.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 1156.0, + 1028.0, + 1156.0, + 1028.0, + 1191.0, + 724.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.25, + 364.5, + 478.25, + 364.5, + 478.25, + 399.0, + 467.25, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 362.0, + 471.0, + 362.0, + 471.0, + 408.0, + 415.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.75, + 365.0, + 914.75, + 365.0, + 914.75, + 395.0, + 871.75, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 427.5, + 570.0, + 427.5, + 570.0, + 466.5, + 510.0, + 466.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 473.5, + 882.0, + 473.5, + 882.0, + 502.0, + 838.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 475.0, + 912.0, + 475.0, + 912.0, + 498.5, + 875.0, + 498.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.25, + 858.5, + 1311.25, + 858.5, + 1311.25, + 877.5, + 1277.25, + 877.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1008.5, + 564.0, + 1008.5, + 564.0, + 1032.0, + 527.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 1052.0, + 1076.0, + 1052.0, + 1076.0, + 1079.0, + 1073.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.75, + 1053.0, + 650.75, + 1053.0, + 650.75, + 1074.5, + 618.75, + 1074.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 1076.0, + 991.0, + 1076.0, + 991.0, + 1099.0, + 981.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.25, + 1094.5, + 529.25, + 1094.5, + 529.25, + 1122.0, + 518.25, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 1097.0, + 674.0, + 1097.0, + 674.0, + 1121.0, + 638.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 1121.0, + 604.0, + 1121.0, + 604.0, + 1141.0, + 574.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.75, + 1122.0, + 382.75, + 1122.0, + 382.75, + 1141.0, + 357.75, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1210.0, + 1405.0, + 1210.0, + 1405.0, + 1244.0, + 294.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1239.0, + 1275.0, + 1239.0, + 1275.0, + 1277.0, + 294.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 2000.0, + 971.0, + 2000.0, + 971.0, + 2037.0, + 331.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1326.0, + 562.0, + 1326.0, + 562.0, + 1370.0, + 293.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2119.0, + 840.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2119.0, + 840.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1595.0, + 1266.0, + 1595.0, + 1266.0, + 1634.0, + 291.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1595.0, + 1405.0, + 1595.0, + 1405.0, + 1634.0, + 1400.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1626.0, + 429.0, + 1626.0, + 429.0, + 1664.0, + 292.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 1626.0, + 1405.0, + 1626.0, + 1405.0, + 1664.0, + 461.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1657.0, + 296.0, + 1657.0, + 296.0, + 1698.0, + 293.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 1657.0, + 663.0, + 1657.0, + 663.0, + 1698.0, + 606.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 1657.0, + 1011.0, + 1657.0, + 1011.0, + 1698.0, + 691.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 1657.0, + 1405.0, + 1657.0, + 1405.0, + 1698.0, + 1234.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1686.0, + 297.0, + 1686.0, + 297.0, + 1725.0, + 290.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 1686.0, + 1406.0, + 1686.0, + 1406.0, + 1725.0, + 489.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1716.0, + 296.0, + 1716.0, + 296.0, + 1760.0, + 291.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 1716.0, + 1408.0, + 1716.0, + 1408.0, + 1760.0, + 555.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1749.0, + 297.0, + 1749.0, + 297.0, + 1785.0, + 292.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 1749.0, + 696.0, + 1749.0, + 696.0, + 1785.0, + 445.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 1749.0, + 1406.0, + 1749.0, + 1406.0, + 1785.0, + 848.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1782.0, + 1332.0, + 1782.0, + 1332.0, + 1815.0, + 295.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1782.0, + 1405.0, + 1782.0, + 1405.0, + 1815.0, + 1354.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1812.0, + 433.0, + 1812.0, + 433.0, + 1845.0, + 295.0, + 1845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 1812.0, + 1129.0, + 1812.0, + 1129.0, + 1845.0, + 520.0, + 1845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1396.0, + 1405.0, + 1396.0, + 1405.0, + 1435.0, + 292.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1429.0, + 1405.0, + 1429.0, + 1405.0, + 1465.0, + 294.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1460.0, + 1406.0, + 1460.0, + 1406.0, + 1496.0, + 293.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1489.0, + 1406.0, + 1489.0, + 1406.0, + 1525.0, + 291.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1518.0, + 1405.0, + 1518.0, + 1405.0, + 1554.0, + 296.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1549.0, + 517.0, + 1549.0, + 517.0, + 1587.0, + 296.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 1549.0, + 1355.0, + 1549.0, + 1355.0, + 1587.0, + 565.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1859.0, + 894.0, + 1859.0, + 894.0, + 1892.0, + 295.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1859.0, + 1404.0, + 1859.0, + 1404.0, + 1892.0, + 926.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1889.0, + 814.0, + 1889.0, + 814.0, + 1922.0, + 295.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 1889.0, + 1150.0, + 1889.0, + 1150.0, + 1922.0, + 860.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 1889.0, + 1404.0, + 1889.0, + 1404.0, + 1922.0, + 1177.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1921.0, + 407.0, + 1921.0, + 407.0, + 1953.0, + 295.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 1921.0, + 485.0, + 1921.0, + 485.0, + 1953.0, + 452.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 1921.0, + 682.0, + 1921.0, + 682.0, + 1953.0, + 526.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 1921.0, + 1405.0, + 1921.0, + 1405.0, + 1953.0, + 722.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1949.0, + 297.0, + 1949.0, + 297.0, + 1983.0, + 293.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 1949.0, + 560.0, + 1949.0, + 560.0, + 1983.0, + 380.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 1949.0, + 1220.0, + 1949.0, + 1220.0, + 1983.0, + 658.0, + 1983.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1524, + 1404, + 1524, + 1404, + 1926, + 298, + 1926 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 1355, + 1403, + 1355, + 1403, + 1506, + 299, + 1506 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 304, + 218, + 1395, + 218, + 1395, + 1188, + 304, + 1188 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 300, + 1942, + 1402, + 1942, + 1402, + 2035, + 300, + 2035 + ], + "score": 0.969 + }, + { + "category_id": 4, + "poly": [ + 296, + 1210, + 1401, + 1210, + 1401, + 1273, + 296, + 1273 + ], + "score": 0.946 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 814, + 76, + 814, + 104, + 299, + 104 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.785 + }, + { + "category_id": 13, + "poly": [ + 356, + 1973, + 428, + 1973, + 428, + 2005, + 356, + 2005 + ], + "score": 0.94, + "latex": "G _ { \\theta } ( z )" + }, + { + "category_id": 13, + "poly": [ + 482, + 1385, + 670, + 1385, + 670, + 1419, + 482, + 1419 + ], + "score": 0.93, + "latex": "P _ { Z } = \\mathcal { N } ( \\mathbf { 0 } , I _ { d } )" + }, + { + "category_id": 13, + "poly": [ + 1231, + 1585, + 1360, + 1585, + 1360, + 1619, + 1231, + 1619 + ], + "score": 0.93, + "latex": "\\tilde { z } = \\mu _ { \\phi } ( x )" + }, + { + "category_id": 13, + "poly": [ + 689, + 1864, + 832, + 1864, + 832, + 1898, + 689, + 1898 + ], + "score": 0.92, + "latex": "\\sigma _ { k } ^ { 2 } = 2 d _ { z } \\sigma _ { z } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1014, + 1384, + 1399, + 1384, + 1399, + 1421, + 1014, + 1421 + ], + "score": 0.91, + "latex": "Q ( Z | X ) = \\mathcal { N } \\big ( Z ; \\mu _ { \\phi } ( X ) , \\Sigma ( X ) \\big )" + }, + { + "category_id": 13, + "poly": [ + 1086, + 1646, + 1347, + 1646, + 1347, + 1685, + 1086, + 1685 + ], + "score": 0.91, + "latex": "k ( z , \\tilde { z } ) = e ^ { - \\| \\tilde { z } - z \\| _ { 2 } ^ { 2 } / \\sigma _ { k } ^ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 412, + 1772, + 749, + 1772, + 749, + 1806, + 412, + 1806 + ], + "score": 0.91, + "latex": "\\bar { k } ( x , y ) = C / ( C + \\| x - y \\| _ { 2 } ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 606, + 1617, + 687, + 1617, + 687, + 1645, + 606, + 1645 + ], + "score": 0.9, + "latex": "x \\in \\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 578, + 1805, + 717, + 1805, + 717, + 1837, + 578, + 1837 + ], + "score": 0.9, + "latex": "C = 2 d _ { z } \\sigma _ { z } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 537, + 1711, + 570, + 1711, + 570, + 1747, + 537, + 1747 + ], + "score": 0.9, + "latex": "\\sigma _ { k } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 674, + 1585, + 717, + 1585, + 717, + 1616, + 674, + 1616 + ], + "score": 0.9, + "latex": "Q _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 864, + 1447, + 901, + 1447, + 901, + 1477, + 864, + 1477 + ], + "score": 0.9, + "latex": "G _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1148, + 2003, + 1192, + 2003, + 1192, + 2035, + 1148, + 2035 + ], + "score": 0.89, + "latex": "Q _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 1302, + 2003, + 1341, + 2003, + 1341, + 2034, + 1302, + 2034 + ], + "score": 0.89, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 844, + 1944, + 883, + 1944, + 883, + 1973, + 844, + 1973 + ], + "score": 0.89, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 1105, + 1617, + 1143, + 1617, + 1143, + 1646, + 1105, + 1646 + ], + "score": 0.88, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 565, + 1447, + 602, + 1447, + 602, + 1477, + 565, + 1477 + ], + "score": 0.88, + "latex": "G _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 710, + 1836, + 748, + 1836, + 748, + 1864, + 710, + 1864 + ], + "score": 0.87, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 426, + 1421, + 461, + 1421, + 461, + 1451, + 426, + 1451 + ], + "score": 0.85, + "latex": "\\mu _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 751, + 1417, + 775, + 1417, + 775, + 1444, + 751, + 1444 + ], + "score": 0.79, + "latex": "\\Sigma" + }, + { + "category_id": 13, + "poly": [ + 1170, + 1526, + 1197, + 1526, + 1197, + 1552, + 1170, + 1552 + ], + "score": 0.78, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 735, + 1449, + 769, + 1449, + 769, + 1480, + 735, + 1480 + ], + "score": 0.72, + "latex": "\\mu _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 1382, + 1949, + 1402, + 1949, + 1402, + 1970, + 1382, + 1970 + ], + "score": 0.69, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 781, + 1447, + 804, + 1447, + 804, + 1475, + 781, + 1475 + ], + "score": 0.52, + "latex": "\\Sigma" + }, + { + "category_id": 13, + "poly": [ + 734, + 1447, + 805, + 1447, + 805, + 1479, + 734, + 1479 + ], + "score": 0.31, + "latex": "\\mu _ { \\phi } , \\Sigma" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 216.0, + 558.0, + 216.0, + 558.0, + 256.0, + 491.0, + 256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 216.0, + 951.0, + 216.0, + 951.0, + 256.0, + 800.0, + 256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 216.0, + 1299.0, + 216.0, + 1299.0, + 256.0, + 1157.0, + 256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 254.0, + 695.0, + 254.0, + 695.0, + 294.0, + 354.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 253.0, + 1397.0, + 253.0, + 1397.0, + 296.0, + 704.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 273.0, + 336.0, + 273.0, + 336.0, + 370.0, + 308.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 286.0, + 1395.0, + 286.0, + 1395.0, + 333.0, + 354.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 323.0, + 696.0, + 323.0, + 696.0, + 366.0, + 356.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 324.0, + 1394.0, + 324.0, + 1394.0, + 366.0, + 699.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 364.0, + 325.0, + 364.0, + 325.0, + 377.0, + 316.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 361.0, + 693.0, + 361.0, + 693.0, + 401.0, + 559.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 356.0, + 1050.0, + 356.0, + 1050.0, + 403.0, + 815.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 357.0, + 1392.0, + 357.0, + 1392.0, + 401.0, + 1060.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 379.0, + 325.0, + 379.0, + 325.0, + 391.0, + 316.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 371.0, + 785.0, + 371.0, + 785.0, + 388.0, + 748.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 394.0, + 331.0, + 394.0, + 331.0, + 484.0, + 311.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 393.0, + 696.0, + 393.0, + 696.0, + 471.0, + 352.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 393.0, + 1047.0, + 393.0, + 1047.0, + 470.0, + 704.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 388.0, + 1397.0, + 388.0, + 1397.0, + 475.0, + 1057.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 465.0, + 697.0, + 465.0, + 697.0, + 509.0, + 354.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 467.0, + 1046.0, + 467.0, + 1046.0, + 506.0, + 703.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 468.0, + 1394.0, + 468.0, + 1394.0, + 505.0, + 1058.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 566.0, + 334.0, + 566.0, + 334.0, + 651.0, + 310.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 652.0, + 323.0, + 652.0, + 323.0, + 658.0, + 317.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 720.0, + 325.0, + 720.0, + 325.0, + 730.0, + 315.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 681.0, + 1383.0, + 681.0, + 1383.0, + 771.0, + 783.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 727.0, + 331.0, + 727.0, + 331.0, + 791.0, + 310.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 757.0, + 1399.0, + 757.0, + 1399.0, + 859.0, + 451.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 867.0, + 686.0, + 867.0, + 686.0, + 899.0, + 634.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 868.0, + 765.0, + 868.0, + 765.0, + 904.0, + 711.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 845.0, + 1391.0, + 845.0, + 1391.0, + 920.0, + 873.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 915.0, + 340.0, + 915.0, + 340.0, + 1121.0, + 304.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 921.0, + 624.0, + 921.0, + 624.0, + 961.0, + 579.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 923.0, + 687.0, + 923.0, + 687.0, + 964.0, + 632.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 917.0, + 869.0, + 917.0, + 869.0, + 963.0, + 707.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 903.0, + 1363.0, + 903.0, + 1363.0, + 974.0, + 883.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 970.0, + 418.0, + 970.0, + 418.0, + 1020.0, + 363.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 984.0, + 460.0, + 984.0, + 460.0, + 1008.0, + 425.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 969.0, + 572.0, + 969.0, + 572.0, + 1022.0, + 461.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 974.0, + 680.0, + 974.0, + 680.0, + 1010.0, + 642.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 955.0, + 1397.0, + 955.0, + 1397.0, + 1034.0, + 698.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1039.0, + 394.0, + 1039.0, + 394.0, + 1060.0, + 373.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 1027.0, + 584.0, + 1027.0, + 584.0, + 1072.0, + 417.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 1040.0, + 635.0, + 1040.0, + 635.0, + 1066.0, + 591.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 1042.0, + 680.0, + 1042.0, + 680.0, + 1065.0, + 640.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 1034.0, + 807.0, + 1034.0, + 807.0, + 1071.0, + 712.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 1027.0, + 1041.0, + 1027.0, + 1041.0, + 1075.0, + 947.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1025.0, + 1382.0, + 1025.0, + 1382.0, + 1082.0, + 1050.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 1058.0, + 1304.0, + 1058.0, + 1304.0, + 1160.0, + 513.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1126.0, + 697.0, + 1126.0, + 697.0, + 1181.0, + 358.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 1129.0, + 1044.0, + 1129.0, + 1044.0, + 1184.0, + 951.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 1118.0, + 1394.0, + 1118.0, + 1394.0, + 1192.0, + 1160.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 1145.5, + 1119.0, + 1145.5, + 1119.0, + 1178.0, + 1061.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1210.0, + 1405.0, + 1210.0, + 1405.0, + 1244.0, + 294.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1240.0, + 1274.0, + 1240.0, + 1274.0, + 1277.0, + 294.0, + 1277.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": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2117.0, + 838.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1525.0, + 1169.0, + 1525.0, + 1169.0, + 1558.0, + 297.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1198.0, + 1525.0, + 1405.0, + 1525.0, + 1405.0, + 1558.0, + 1198.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1552.0, + 1406.0, + 1552.0, + 1406.0, + 1589.0, + 294.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1583.0, + 673.0, + 1583.0, + 673.0, + 1623.0, + 292.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 1583.0, + 1230.0, + 1583.0, + 1230.0, + 1623.0, + 718.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 1583.0, + 1408.0, + 1583.0, + 1408.0, + 1623.0, + 1361.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1615.0, + 605.0, + 1615.0, + 605.0, + 1652.0, + 293.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 1615.0, + 1104.0, + 1615.0, + 1104.0, + 1652.0, + 688.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 1615.0, + 1405.0, + 1615.0, + 1405.0, + 1652.0, + 1144.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1647.0, + 1085.0, + 1647.0, + 1085.0, + 1687.0, + 291.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 1647.0, + 1406.0, + 1647.0, + 1406.0, + 1687.0, + 1348.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1679.0, + 1406.0, + 1679.0, + 1406.0, + 1720.0, + 293.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1712.0, + 536.0, + 1712.0, + 536.0, + 1749.0, + 294.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 1712.0, + 1405.0, + 1712.0, + 1405.0, + 1749.0, + 571.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1741.0, + 1404.0, + 1741.0, + 1404.0, + 1777.0, + 294.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1771.0, + 411.0, + 1771.0, + 411.0, + 1811.0, + 293.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 1771.0, + 1406.0, + 1771.0, + 1406.0, + 1811.0, + 750.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1801.0, + 577.0, + 1801.0, + 577.0, + 1841.0, + 293.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 1801.0, + 1405.0, + 1801.0, + 1405.0, + 1841.0, + 718.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1832.0, + 709.0, + 1832.0, + 709.0, + 1870.0, + 293.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 1832.0, + 1406.0, + 1832.0, + 1406.0, + 1870.0, + 749.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1857.0, + 688.0, + 1857.0, + 688.0, + 1907.0, + 289.0, + 1907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 1857.0, + 1410.0, + 1857.0, + 1410.0, + 1907.0, + 833.0, + 1907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1892.0, + 854.0, + 1892.0, + 854.0, + 1932.0, + 292.0, + 1932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1353.0, + 1405.0, + 1353.0, + 1405.0, + 1389.0, + 295.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1382.0, + 481.0, + 1382.0, + 481.0, + 1421.0, + 293.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 1382.0, + 1013.0, + 1382.0, + 1013.0, + 1421.0, + 671.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1382.0, + 1403.0, + 1382.0, + 1403.0, + 1421.0, + 1400.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1415.0, + 425.0, + 1415.0, + 425.0, + 1451.0, + 294.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 1415.0, + 750.0, + 1415.0, + 750.0, + 1451.0, + 462.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 1415.0, + 1403.0, + 1415.0, + 1403.0, + 1451.0, + 776.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1442.0, + 564.0, + 1442.0, + 564.0, + 1485.0, + 293.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 1442.0, + 733.0, + 1442.0, + 733.0, + 1485.0, + 603.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 806.0, + 1442.0, + 863.0, + 1442.0, + 863.0, + 1485.0, + 806.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 1442.0, + 1407.0, + 1442.0, + 1407.0, + 1485.0, + 902.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1476.0, + 634.0, + 1476.0, + 634.0, + 1509.0, + 295.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1939.0, + 843.0, + 1939.0, + 843.0, + 1979.0, + 294.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1939.0, + 1381.0, + 1939.0, + 1381.0, + 1979.0, + 884.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1939.0, + 1408.0, + 1939.0, + 1408.0, + 1979.0, + 1403.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1970.0, + 355.0, + 1970.0, + 355.0, + 2008.0, + 295.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 1970.0, + 1406.0, + 1970.0, + 1406.0, + 2008.0, + 429.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1999.0, + 1147.0, + 1999.0, + 1147.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 1999.0, + 1301.0, + 1999.0, + 1301.0, + 2038.0, + 1193.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 1999.0, + 1406.0, + 1999.0, + 1406.0, + 2038.0, + 1342.0, + 2038.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 975, + 1405, + 975, + 1405, + 1220, + 298, + 1220 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1403, + 229, + 1403, + 445, + 298, + 445 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 475, + 941, + 475, + 941, + 719, + 299, + 719 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 734, + 1402, + 734, + 1402, + 857, + 299, + 857 + ], + "score": 0.974 + }, + { + "category_id": 5, + "poly": [ + 1052, + 479, + 1314, + 479, + 1314, + 640, + 1052, + 640 + ], + "score": 0.962, + "html": "
AlgorithmFID
VAE82
WAE-MMD55
WAE-GAN42
" + }, + { + "category_id": 1, + "poly": [ + 300, + 1311, + 1400, + 1311, + 1400, + 1374, + 300, + 1374 + ], + "score": 0.935 + }, + { + "category_id": 0, + "poly": [ + 300, + 903, + 544, + 903, + 544, + 939, + 300, + 939 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 300, + 1424, + 488, + 1424, + 488, + 1456, + 300, + 1456 + ], + "score": 0.866 + }, + { + "category_id": 0, + "poly": [ + 300, + 1259, + 557, + 1259, + 557, + 1287, + 300, + 1287 + ], + "score": 0.845 + }, + { + "category_id": 1, + "poly": [ + 293, + 1473, + 1409, + 1473, + 1409, + 2036, + 293, + 2036 + ], + "score": 0.823 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.761 + }, + { + "category_id": 6, + "poly": [ + 963, + 662, + 1402, + 662, + 1402, + 722, + 963, + 722 + ], + "score": 0.508 + }, + { + "category_id": 13, + "poly": [ + 678, + 764, + 804, + 764, + 804, + 798, + 678, + 798 + ], + "score": 0.92, + "latex": "G _ { \\theta } ( \\mu _ { \\phi } ( x ) )" + }, + { + "category_id": 13, + "poly": [ + 405, + 261, + 486, + 261, + 486, + 295, + 405, + 295 + ], + "score": 0.91, + "latex": "\\mu _ { \\phi } ( X )" + }, + { + "category_id": 13, + "poly": [ + 944, + 765, + 1009, + 765, + 1009, + 797, + 944, + 797 + ], + "score": 0.91, + "latex": "( x , y )" + }, + { + "category_id": 13, + "poly": [ + 736, + 261, + 875, + 261, + 875, + 292, + 736, + 292 + ], + "score": 0.9, + "latex": "X \\sim P _ { X }" + }, + { + "category_id": 13, + "poly": [ + 995, + 795, + 1129, + 795, + 1129, + 830, + 995, + 830 + ], + "score": 0.9, + "latex": "z _ { y } = \\mu _ { \\phi } ( y )" + }, + { + "category_id": 13, + "poly": [ + 1303, + 322, + 1348, + 322, + 1348, + 354, + 1303, + 354 + ], + "score": 0.89, + "latex": "Q _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 556, + 1160, + 593, + 1160, + 593, + 1189, + 556, + 1189 + ], + "score": 0.89, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 421, + 295, + 465, + 295, + 465, + 323, + 421, + 323 + ], + "score": 0.88, + "latex": "Q _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 1358, + 1129, + 1401, + 1129, + 1401, + 1160, + 1358, + 1160 + ], + "score": 0.88, + "latex": "Q _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 981, + 231, + 1019, + 231, + 1019, + 261, + 981, + 261 + ], + "score": 0.88, + "latex": "G _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 422, + 324, + 461, + 324, + 461, + 353, + 422, + 353 + ], + "score": 0.88, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 477, + 829, + 506, + 829, + 506, + 859, + 477, + 859 + ], + "score": 0.87, + "latex": "z _ { y }" + }, + { + "category_id": 13, + "poly": [ + 297, + 353, + 336, + 353, + 336, + 384, + 297, + 384 + ], + "score": 0.87, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 848, + 797, + 984, + 797, + 984, + 830, + 848, + 830 + ], + "score": 0.86, + "latex": "z _ { x } = \\mu _ { \\phi } ( x )" + }, + { + "category_id": 13, + "poly": [ + 396, + 830, + 425, + 830, + 425, + 856, + 396, + 856 + ], + "score": 0.85, + "latex": "z _ { x }" + }, + { + "category_id": 13, + "poly": [ + 430, + 1190, + 456, + 1190, + 456, + 1216, + 430, + 1216 + ], + "score": 0.82, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 1046, + 741, + 1065, + 741, + 1065, + 762, + 1046, + 762 + ], + "score": 0.73, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1319, + 1164, + 1335, + 1164, + 1335, + 1186, + 1319, + 1186 + ], + "score": 0.72, + "latex": "c" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 895.0, + 550.0, + 895.0, + 550.0, + 950.0, + 289.0, + 950.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, + 1422.0, + 492.0, + 1422.0, + 492.0, + 1462.0, + 296.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1260.0, + 559.0, + 1260.0, + 559.0, + 1289.0, + 299.0, + 1289.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": [ + 961.0, + 658.0, + 1405.0, + 658.0, + 1405.0, + 696.0, + 961.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 688.0, + 1266.0, + 688.0, + 1266.0, + 726.0, + 962.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 974.0, + 1407.0, + 974.0, + 1407.0, + 1011.0, + 295.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1005.0, + 1405.0, + 1005.0, + 1405.0, + 1042.0, + 293.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1038.0, + 1403.0, + 1038.0, + 1403.0, + 1071.0, + 295.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1066.0, + 1406.0, + 1066.0, + 1406.0, + 1103.0, + 293.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1099.0, + 1403.0, + 1099.0, + 1403.0, + 1132.0, + 295.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1124.0, + 1357.0, + 1124.0, + 1357.0, + 1166.0, + 291.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1124.0, + 1405.0, + 1124.0, + 1405.0, + 1166.0, + 1402.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1156.0, + 555.0, + 1156.0, + 555.0, + 1195.0, + 292.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 1156.0, + 1318.0, + 1156.0, + 1318.0, + 1195.0, + 594.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 1156.0, + 1406.0, + 1156.0, + 1406.0, + 1195.0, + 1336.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1189.0, + 429.0, + 1189.0, + 429.0, + 1221.0, + 293.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 1189.0, + 1401.0, + 1189.0, + 1401.0, + 1221.0, + 457.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 230.0, + 980.0, + 230.0, + 980.0, + 264.0, + 294.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 230.0, + 1404.0, + 230.0, + 1404.0, + 264.0, + 1020.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 260.0, + 404.0, + 260.0, + 404.0, + 295.0, + 293.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 260.0, + 735.0, + 260.0, + 735.0, + 295.0, + 487.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 260.0, + 1405.0, + 260.0, + 1405.0, + 295.0, + 876.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 291.0, + 420.0, + 291.0, + 420.0, + 326.0, + 294.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 291.0, + 1405.0, + 291.0, + 1405.0, + 326.0, + 466.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 323.0, + 421.0, + 323.0, + 421.0, + 354.0, + 296.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 323.0, + 1302.0, + 323.0, + 1302.0, + 354.0, + 462.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 323.0, + 1404.0, + 323.0, + 1404.0, + 354.0, + 1349.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 351.0, + 296.0, + 351.0, + 296.0, + 388.0, + 292.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 351.0, + 1407.0, + 351.0, + 1407.0, + 388.0, + 337.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 383.0, + 1405.0, + 383.0, + 1405.0, + 417.0, + 294.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 414.0, + 1403.0, + 414.0, + 1403.0, + 448.0, + 296.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 472.0, + 943.0, + 472.0, + 943.0, + 509.0, + 294.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 504.0, + 943.0, + 504.0, + 943.0, + 536.0, + 294.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 533.0, + 945.0, + 533.0, + 945.0, + 567.0, + 294.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 563.0, + 944.0, + 563.0, + 944.0, + 597.0, + 294.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 594.0, + 944.0, + 594.0, + 944.0, + 628.0, + 294.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 625.0, + 944.0, + 625.0, + 944.0, + 660.0, + 294.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 656.0, + 943.0, + 656.0, + 943.0, + 688.0, + 294.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 690.0, + 361.0, + 690.0, + 361.0, + 725.0, + 291.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 734.0, + 1045.0, + 734.0, + 1045.0, + 766.0, + 295.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 734.0, + 1404.0, + 734.0, + 1404.0, + 766.0, + 1066.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 764.0, + 677.0, + 764.0, + 677.0, + 800.0, + 294.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 764.0, + 943.0, + 764.0, + 943.0, + 800.0, + 805.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 764.0, + 1406.0, + 764.0, + 1406.0, + 800.0, + 1010.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 796.0, + 847.0, + 796.0, + 847.0, + 832.0, + 294.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 796.0, + 994.0, + 796.0, + 994.0, + 832.0, + 985.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 796.0, + 1404.0, + 796.0, + 1404.0, + 832.0, + 1130.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 825.0, + 395.0, + 825.0, + 395.0, + 862.0, + 293.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 825.0, + 476.0, + 825.0, + 476.0, + 862.0, + 426.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 825.0, + 1292.0, + 825.0, + 1292.0, + 862.0, + 507.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1311.0, + 1401.0, + 1311.0, + 1401.0, + 1342.0, + 297.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1340.0, + 884.0, + 1340.0, + 884.0, + 1378.0, + 294.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1474.0, + 1040.0, + 1474.0, + 1040.0, + 1514.0, + 292.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1530.0, + 1405.0, + 1530.0, + 1405.0, + 1575.0, + 294.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1565.0, + 921.0, + 1565.0, + 921.0, + 1602.0, + 323.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1619.0, + 1405.0, + 1619.0, + 1405.0, + 1661.0, + 291.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1651.0, + 477.0, + 1651.0, + 477.0, + 1688.0, + 323.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1700.0, + 1408.0, + 1700.0, + 1408.0, + 1753.0, + 290.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1740.0, + 932.0, + 1740.0, + 932.0, + 1778.0, + 321.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1795.0, + 1405.0, + 1795.0, + 1405.0, + 1835.0, + 292.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1828.0, + 1384.0, + 1828.0, + 1384.0, + 1866.0, + 321.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1881.0, + 1406.0, + 1881.0, + 1406.0, + 1924.0, + 291.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1914.0, + 943.0, + 1914.0, + 943.0, + 1955.0, + 322.0, + 1955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1968.0, + 1406.0, + 1968.0, + 1406.0, + 2015.0, + 291.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 2004.0, + 864.0, + 2004.0, + 864.0, + 2041.0, + 323.0, + 2041.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 866, + 2088, + 866, + 2113, + 836, + 2113 + ], + "score": 0.841 + }, + { + "category_id": 1, + "poly": [ + 299, + 945, + 1156, + 945, + 1156, + 981, + 299, + 981 + ], + "score": 0.665 + }, + { + "category_id": 1, + "poly": [ + 299, + 997, + 1186, + 997, + 1186, + 1032, + 299, + 1032 + ], + "score": 0.645 + }, + { + "category_id": 1, + "poly": [ + 296, + 1048, + 1402, + 1048, + 1402, + 1114, + 296, + 1114 + ], + "score": 0.593 + }, + { + "category_id": 1, + "poly": [ + 294, + 864, + 1401, + 864, + 1401, + 928, + 294, + 928 + ], + "score": 0.535 + }, + { + "category_id": 1, + "poly": [ + 301, + 1130, + 1402, + 1130, + 1402, + 1195, + 301, + 1195 + ], + "score": 0.534 + }, + { + "category_id": 1, + "poly": [ + 299, + 1427, + 1392, + 1427, + 1392, + 1493, + 299, + 1493 + ], + "score": 0.533 + }, + { + "category_id": 1, + "poly": [ + 296, + 1211, + 1306, + 1211, + 1306, + 1247, + 296, + 1247 + ], + "score": 0.532 + }, + { + "category_id": 1, + "poly": [ + 300, + 1263, + 1406, + 1263, + 1406, + 1358, + 300, + 1358 + ], + "score": 0.526 + }, + { + "category_id": 1, + "poly": [ + 297, + 1509, + 1360, + 1509, + 1360, + 1545, + 297, + 1545 + ], + "score": 0.496 + }, + { + "category_id": 1, + "poly": [ + 298, + 1560, + 1397, + 1560, + 1397, + 1626, + 298, + 1626 + ], + "score": 0.476 + }, + { + "category_id": 1, + "poly": [ + 297, + 1375, + 1104, + 1375, + 1104, + 1411, + 297, + 1411 + ], + "score": 0.47 + }, + { + "category_id": 1, + "poly": [ + 289, + 782, + 1401, + 782, + 1401, + 847, + 289, + 847 + ], + "score": 0.462 + }, + { + "category_id": 1, + "poly": [ + 295, + 1642, + 1398, + 1642, + 1398, + 1708, + 295, + 1708 + ], + "score": 0.448 + }, + { + "category_id": 1, + "poly": [ + 293, + 586, + 1401, + 586, + 1401, + 652, + 293, + 652 + ], + "score": 0.439 + }, + { + "category_id": 1, + "poly": [ + 297, + 1725, + 1400, + 1725, + 1400, + 1791, + 297, + 1791 + ], + "score": 0.436 + }, + { + "category_id": 1, + "poly": [ + 298, + 668, + 1401, + 668, + 1401, + 764, + 298, + 764 + ], + "score": 0.421 + }, + { + "category_id": 1, + "poly": [ + 299, + 392, + 1402, + 392, + 1402, + 488, + 299, + 488 + ], + "score": 0.421 + }, + { + "category_id": 1, + "poly": [ + 291, + 229, + 1402, + 229, + 1402, + 294, + 291, + 294 + ], + "score": 0.413 + }, + { + "category_id": 1, + "poly": [ + 293, + 504, + 1403, + 504, + 1403, + 571, + 293, + 571 + ], + "score": 0.382 + }, + { + "category_id": 1, + "poly": [ + 293, + 310, + 1400, + 310, + 1400, + 377, + 293, + 377 + ], + "score": 0.374 + }, + { + "category_id": 1, + "poly": [ + 300, + 1971, + 1399, + 1971, + 1399, + 2034, + 300, + 2034 + ], + "score": 0.369 + }, + { + "category_id": 1, + "poly": [ + 298, + 1889, + 1399, + 1889, + 1399, + 1954, + 298, + 1954 + ], + "score": 0.349 + }, + { + "category_id": 1, + "poly": [ + 296, + 1807, + 1400, + 1807, + 1400, + 1873, + 296, + 1873 + ], + "score": 0.343 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 943.0, + 1158.0, + 943.0, + 1158.0, + 985.0, + 293.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 996.0, + 1192.0, + 996.0, + 1192.0, + 1036.0, + 294.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1047.0, + 1403.0, + 1047.0, + 1403.0, + 1084.0, + 296.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1080.0, + 1211.0, + 1080.0, + 1211.0, + 1113.0, + 321.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 859.0, + 1406.0, + 859.0, + 1406.0, + 904.0, + 292.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 895.0, + 658.0, + 895.0, + 658.0, + 927.0, + 322.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1125.0, + 1406.0, + 1125.0, + 1406.0, + 1170.0, + 294.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1161.0, + 738.0, + 1161.0, + 738.0, + 1196.0, + 321.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1428.0, + 1397.0, + 1428.0, + 1397.0, + 1464.0, + 295.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1459.0, + 1207.0, + 1459.0, + 1207.0, + 1495.0, + 324.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1210.0, + 1305.0, + 1210.0, + 1305.0, + 1249.0, + 296.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1262.0, + 1405.0, + 1262.0, + 1405.0, + 1301.0, + 294.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1296.0, + 1406.0, + 1296.0, + 1406.0, + 1330.0, + 322.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1320.0, + 399.0, + 1320.0, + 399.0, + 1361.0, + 319.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1511.0, + 1360.0, + 1511.0, + 1360.0, + 1544.0, + 297.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1561.0, + 1402.0, + 1561.0, + 1402.0, + 1597.0, + 294.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1593.0, + 960.0, + 1593.0, + 960.0, + 1627.0, + 322.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1372.0, + 1104.0, + 1372.0, + 1104.0, + 1414.0, + 293.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 780.0, + 1404.0, + 780.0, + 1404.0, + 821.0, + 292.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 813.0, + 1312.0, + 813.0, + 1312.0, + 849.0, + 321.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1641.0, + 1402.0, + 1641.0, + 1402.0, + 1680.0, + 294.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1675.0, + 1041.0, + 1675.0, + 1041.0, + 1709.0, + 321.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 583.0, + 1404.0, + 583.0, + 1404.0, + 626.0, + 291.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 619.0, + 538.0, + 619.0, + 538.0, + 650.0, + 321.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1723.0, + 1404.0, + 1723.0, + 1404.0, + 1762.0, + 293.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1753.0, + 400.0, + 1753.0, + 400.0, + 1792.0, + 318.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 669.0, + 1405.0, + 669.0, + 1405.0, + 704.0, + 294.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 701.0, + 1403.0, + 701.0, + 1403.0, + 736.0, + 324.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 732.0, + 776.0, + 732.0, + 776.0, + 766.0, + 324.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 390.0, + 1406.0, + 390.0, + 1406.0, + 430.0, + 292.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 420.0, + 1406.0, + 420.0, + 1406.0, + 461.0, + 319.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 452.0, + 399.0, + 452.0, + 399.0, + 489.0, + 319.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 1404.0, + 229.0, + 1404.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 263.0, + 845.0, + 263.0, + 845.0, + 294.0, + 322.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 505.0, + 1403.0, + 505.0, + 1403.0, + 541.0, + 295.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 538.0, + 1043.0, + 538.0, + 1043.0, + 571.0, + 321.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 311.0, + 1405.0, + 311.0, + 1405.0, + 347.0, + 296.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 341.0, + 1313.0, + 341.0, + 1313.0, + 377.0, + 322.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1969.0, + 1404.0, + 1969.0, + 1404.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 2000.0, + 512.0, + 2000.0, + 512.0, + 2034.0, + 320.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1889.0, + 1404.0, + 1889.0, + 1404.0, + 1925.0, + 294.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1920.0, + 1201.0, + 1920.0, + 1201.0, + 1952.0, + 323.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1808.0, + 1404.0, + 1808.0, + 1404.0, + 1844.0, + 295.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1840.0, + 865.0, + 1840.0, + 865.0, + 1872.0, + 321.0, + 1872.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 74, + 816, + 74, + 816, + 106, + 299, + 106 + ], + "score": 0.862 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.831 + }, + { + "category_id": 1, + "poly": [ + 296, + 334, + 1402, + 334, + 1402, + 369, + 296, + 369 + ], + "score": 0.508 + }, + { + "category_id": 1, + "poly": [ + 298, + 281, + 1404, + 281, + 1404, + 317, + 298, + 317 + ], + "score": 0.473 + }, + { + "category_id": 1, + "poly": [ + 286, + 228, + 1327, + 228, + 1327, + 264, + 286, + 264 + ], + "score": 0.472 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 817.0, + 72.0, + 817.0, + 109.0, + 295.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 332.0, + 1404.0, + 332.0, + 1404.0, + 371.0, + 295.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 278.0, + 1404.0, + 278.0, + 1404.0, + 320.0, + 292.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 1328.0, + 227.0, + 1328.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1587, + 1404, + 1587, + 1404, + 1898, + 297, + 1898 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 776, + 1403, + 776, + 1403, + 1054, + 297, + 1054 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1066, + 1404, + 1066, + 1404, + 1283, + 297, + 1283 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 293, + 1404, + 293, + 1404, + 512, + 297, + 512 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 524, + 1403, + 524, + 1403, + 647, + 299, + 647 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1911, + 1402, + 1911, + 1402, + 2035, + 298, + 2035 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 1366, + 1397, + 1366, + 1397, + 1430, + 298, + 1430 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 483, + 1294, + 1216, + 1294, + 1216, + 1352, + 483, + 1352 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 291, + 1442, + 1400, + 1442, + 1400, + 1507, + 291, + 1507 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 428, + 706, + 1274, + 706, + 1274, + 763, + 428, + 763 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 376, + 1516, + 1314, + 1516, + 1314, + 1575, + 376, + 1575 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 295, + 661, + 1401, + 661, + 1401, + 695, + 295, + 695 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 105, + 300, + 105 + ], + "score": 0.896 + }, + { + "category_id": 9, + "poly": [ + 1366, + 712, + 1399, + 712, + 1399, + 743, + 1366, + 743 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.858 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1524, + 1400, + 1524, + 1400, + 1554, + 1366, + 1554 + ], + "score": 0.855 + }, + { + "category_id": 0, + "poly": [ + 296, + 227, + 1349, + 227, + 1349, + 262, + 296, + 262 + ], + "score": 0.49 + }, + { + "category_id": 1, + "poly": [ + 296, + 227, + 1349, + 227, + 1349, + 262, + 296, + 262 + ], + "score": 0.34 + }, + { + "category_id": 13, + "poly": [ + 389, + 2002, + 539, + 2002, + 539, + 2036, + 389, + 2036 + ], + "score": 0.94, + "latex": "\\epsilon \\sim \\mathcal { N } ( 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 813, + 1590, + 927, + 1590, + 927, + 1624, + 813, + 1624 + ], + "score": 0.93, + "latex": "P _ { G } ( X | Z )" + }, + { + "category_id": 13, + "poly": [ + 646, + 1802, + 1012, + 1802, + 1012, + 1840, + 646, + 1840 + ], + "score": 0.93, + "latex": "Q ( Z | X ) = { \\mathcal { N } } { \\big ( } Z ; \\mu ( X ) , \\Sigma ( X ) { \\big ) }" + }, + { + "category_id": 13, + "poly": [ + 992, + 1865, + 1157, + 1865, + 1157, + 1898, + 992, + 1898 + ], + "score": 0.93, + "latex": "D _ { \\mathrm { K L } } ( P _ { X } , P _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1398, + 448, + 1398, + 448, + 1431, + 298, + 1431 + ], + "score": 0.92, + "latex": "W _ { 1 } ( P _ { X } , P _ { G } )" + }, + { + "category_id": 14, + "poly": [ + 377, + 1516, + 1321, + 1516, + 1321, + 1575, + 377, + 1575 + ], + "score": 0.92, + "latex": "D _ { \\mathrm { V A E } } \\big ( P _ { X } , P _ { G } \\big ) = \\operatorname* { i n f } _ { Q ( Z | X ) \\in \\mathcal { Q } } \\mathbb { E } _ { P _ { X } } \\left[ D _ { \\mathrm { K L } } \\big ( Q ( Z | X ) , P _ { Z } \\big ) - \\mathbb { E } _ { Q ( Z | X ) } [ \\log p _ { G } ( X | Z ) ] \\right]" + }, + { + "category_id": 13, + "poly": [ + 1324, + 2004, + 1400, + 2004, + 1400, + 2036, + 1324, + 2036 + ], + "score": 0.91, + "latex": "e ( x , \\epsilon )" + }, + { + "category_id": 13, + "poly": [ + 713, + 448, + 932, + 448, + 932, + 481, + 713, + 481 + ], + "score": 0.91, + "latex": "G ( Z ) \\in \\mathcal { X } = \\mathcal { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1743, + 734, + 1743, + 734, + 1776, + 297, + 1776 + ], + "score": 0.91, + "latex": "D _ { \\mathrm { V A E } } ( P _ { X } , P _ { G } ) = - \\mathbb { E } _ { P _ { X } } [ \\log P _ { G } ( X ) ]" + }, + { + "category_id": 13, + "poly": [ + 828, + 1101, + 879, + 1101, + 879, + 1131, + 828, + 1131 + ], + "score": 0.91, + "latex": "D _ { \\mathrm { J S } }" + }, + { + "category_id": 13, + "poly": [ + 470, + 870, + 532, + 870, + 532, + 903, + 470, + 903 + ], + "score": 0.91, + "latex": "( 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 476, + 808, + 993, + 808, + 993, + 842, + 476, + 842 + ], + "score": 0.91, + "latex": "D _ { \\mathrm { G A N } } ( P _ { X } , P _ { G } ) \\leq 2 \\cdot D _ { \\mathrm { J S } } ( P _ { X } , P _ { G } ) - \\log ( 4 )" + }, + { + "category_id": 13, + "poly": [ + 446, + 1713, + 544, + 1713, + 544, + 1745, + 446, + 1745 + ], + "score": 0.91, + "latex": "Q ( Z | X )" + }, + { + "category_id": 13, + "poly": [ + 1305, + 1623, + 1400, + 1623, + 1400, + 1654, + 1305, + 1654 + ], + "score": 0.91, + "latex": "p _ { G } ( x | z )" + }, + { + "category_id": 14, + "poly": [ + 483, + 1293, + 1213, + 1293, + 1213, + 1353, + 483, + 1353 + ], + "score": 0.91, + "latex": "D _ { \\mathrm { W G A N } } ( P _ { X } , P _ { G } ) = \\operatorname* { s u p } _ { T \\in \\mathcal { W } } \\mathbb { E } _ { X \\sim P _ { X } } [ T ( X ) ] - \\mathbb { E } _ { Z \\sim P _ { Z } } \\left[ T ( G ( Z ) ) \\right] ," + }, + { + "category_id": 13, + "poly": [ + 1286, + 1591, + 1400, + 1591, + 1400, + 1623, + 1286, + 1623 + ], + "score": 0.91, + "latex": "P _ { G } ( X | Z )" + }, + { + "category_id": 14, + "poly": [ + 425, + 706, + 1270, + 706, + 1270, + 765, + 425, + 765 + ], + "score": 0.9, + "latex": "D _ { \\mathrm { G A N } } ( P _ { X } , P _ { G } ) = \\operatorname* { s u p } _ { T \\in { \\mathcal T } } \\mathbb { E } _ { X \\sim P _ { X } } [ \\log T ( X ) ] + \\mathbb { E } _ { Z \\sim P _ { Z } } [ \\log \\left( 1 - T ( G ( Z ) ) \\right) ]" + }, + { + "category_id": 13, + "poly": [ + 1164, + 1367, + 1406, + 1367, + 1406, + 1401, + 1164, + 1401 + ], + "score": 0.9, + "latex": "D _ { \\mathrm { W G A N } } ( P _ { X } , P _ { G } ) \\leq" + }, + { + "category_id": 13, + "poly": [ + 1106, + 1743, + 1164, + 1743, + 1164, + 1773, + 1106, + 1773 + ], + "score": 0.9, + "latex": "D _ { \\mathrm { K L } }" + }, + { + "category_id": 13, + "poly": [ + 683, + 931, + 775, + 931, + 775, + 964, + 683, + 964 + ], + "score": 0.9, + "latex": "D _ { \\mathrm { f , G A N } }" + }, + { + "category_id": 13, + "poly": [ + 1251, + 1069, + 1292, + 1069, + 1292, + 1100, + 1251, + 1100 + ], + "score": 0.9, + "latex": "W _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1141, + 1775, + 1179, + 1775, + 1179, + 1804, + 1141, + 1804 + ], + "score": 0.9, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 443, + 1944, + 516, + 1944, + 516, + 1974, + 443, + 1974 + ], + "score": 0.9, + "latex": "D _ { \\mathrm { V A E } }" + }, + { + "category_id": 13, + "poly": [ + 468, + 1680, + 865, + 1680, + 865, + 1715, + 468, + 1715 + ], + "score": 0.89, + "latex": "P _ { G } ( X | Z ) = \\mathcal { N } ( X ; G ( Z ) , \\sigma ^ { \\hat { 2 } } \\cdot I )" + }, + { + "category_id": 13, + "poly": [ + 466, + 1131, + 505, + 1131, + 505, + 1161, + 466, + 1161 + ], + "score": 0.89, + "latex": "P _ { G }" + }, + { + "category_id": 13, + "poly": [ + 734, + 779, + 867, + 779, + 867, + 806, + 734, + 806 + ], + "score": 0.89, + "latex": "G \\colon { \\mathcal { Z } } \\to { \\mathcal { X } }" + }, + { + "category_id": 13, + "poly": [ + 1080, + 1161, + 1122, + 1161, + 1122, + 1191, + 1080, + 1191 + ], + "score": 0.89, + "latex": "P _ { X }" + }, + { + "category_id": 13, + "poly": [ + 415, + 358, + 454, + 358, + 454, + 387, + 415, + 387 + ], + "score": 0.89, + "latex": "P _ { G }" + }, + { + "category_id": 13, + "poly": [ + 868, + 1221, + 910, + 1221, + 910, + 1252, + 868, + 1252 + ], + "score": 0.89, + "latex": "W _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 371, + 1130, + 413, + 1130, + 413, + 1160, + 371, + 1160 + ], + "score": 0.89, + "latex": "P _ { X }" + }, + { + "category_id": 13, + "poly": [ + 1303, + 1973, + 1393, + 1973, + 1393, + 2001, + 1303, + 2001 + ], + "score": 0.89, + "latex": "x \\in \\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 1132, + 419, + 1170, + 419, + 1170, + 448, + 1132, + 448 + ], + "score": 0.89, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 685, + 1192, + 723, + 1192, + 723, + 1221, + 685, + 1221 + ], + "score": 0.89, + "latex": "P _ { G }" + }, + { + "category_id": 13, + "poly": [ + 1176, + 1162, + 1215, + 1162, + 1215, + 1191, + 1176, + 1191 + ], + "score": 0.89, + "latex": "P _ { G }" + }, + { + "category_id": 13, + "poly": [ + 298, + 479, + 431, + 479, + 431, + 507, + 298, + 507 + ], + "score": 0.89, + "latex": "G \\colon { \\mathcal { Z } } \\to { \\mathcal { X } }" + }, + { + "category_id": 13, + "poly": [ + 894, + 2003, + 1092, + 2003, + 1092, + 2032, + 894, + 2032 + ], + "score": 0.89, + "latex": "e \\colon \\mathcal { X } \\times \\mathcal { R } \\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 1157, + 388, + 1196, + 388, + 1196, + 418, + 1157, + 418 + ], + "score": 0.88, + "latex": "P _ { G }" + }, + { + "category_id": 13, + "poly": [ + 1146, + 1446, + 1185, + 1446, + 1185, + 1475, + 1146, + 1475 + ], + "score": 0.88, + "latex": "P _ { G }" + }, + { + "category_id": 13, + "poly": [ + 568, + 557, + 607, + 557, + 607, + 587, + 568, + 587 + ], + "score": 0.88, + "latex": "P _ { G }" + }, + { + "category_id": 13, + "poly": [ + 862, + 480, + 901, + 480, + 901, + 509, + 862, + 509 + ], + "score": 0.87, + "latex": "P _ { G }" + }, + { + "category_id": 13, + "poly": [ + 947, + 901, + 966, + 901, + 966, + 932, + 947, + 932 + ], + "score": 0.85, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 952, + 780, + 978, + 780, + 978, + 807, + 952, + 807 + ], + "score": 0.85, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 298, + 962, + 317, + 962, + 317, + 993, + 298, + 993 + ], + "score": 0.85, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 919, + 1683, + 945, + 1683, + 945, + 1712, + 919, + 1712 + ], + "score": 0.83, + "latex": "\\mathcal { Q }" + }, + { + "category_id": 13, + "poly": [ + 404, + 871, + 431, + 871, + 431, + 897, + 404, + 897 + ], + "score": 0.82, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 1144, + 1809, + 1165, + 1809, + 1165, + 1836, + 1144, + 1836 + ], + "score": 0.82, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 372, + 1369, + 405, + 1369, + 405, + 1395, + 372, + 1395 + ], + "score": 0.82, + "latex": "\\mathcal { W }" + }, + { + "category_id": 13, + "poly": [ + 727, + 1622, + 753, + 1622, + 753, + 1648, + 727, + 1648 + ], + "score": 0.82, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 863, + 1369, + 890, + 1369, + 890, + 1395, + 863, + 1395 + ], + "score": 0.81, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 1327, + 1774, + 1353, + 1774, + 1353, + 1803, + 1327, + 1803 + ], + "score": 0.81, + "latex": "\\mathcal { Q }" + }, + { + "category_id": 13, + "poly": [ + 942, + 962, + 968, + 962, + 968, + 989, + 942, + 989 + ], + "score": 0.81, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 910, + 527, + 936, + 527, + 936, + 553, + 910, + 553 + ], + "score": 0.8, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 404, + 449, + 429, + 449, + 429, + 476, + 404, + 476 + ], + "score": 0.8, + "latex": "Z" + }, + { + "category_id": 13, + "poly": [ + 1101, + 1653, + 1126, + 1653, + 1126, + 1679, + 1101, + 1679 + ], + "score": 0.8, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 848, + 842, + 874, + 842, + 874, + 868, + 848, + 868 + ], + "score": 0.8, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 689, + 419, + 714, + 419, + 714, + 445, + 689, + 445 + ], + "score": 0.8, + "latex": "Z" + }, + { + "category_id": 13, + "poly": [ + 1181, + 962, + 1205, + 962, + 1205, + 988, + 1181, + 988 + ], + "score": 0.78, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 543, + 1161, + 600, + 1161, + 600, + 1191, + 543, + 1191 + ], + "score": 0.78, + "latex": "D _ { \\mathrm { K L } }" + }, + { + "category_id": 13, + "poly": [ + 780, + 1944, + 805, + 1944, + 805, + 1973, + 780, + 1973 + ], + "score": 0.77, + "latex": "\\mathcal { Q }" + }, + { + "category_id": 13, + "poly": [ + 1375, + 419, + 1402, + 419, + 1402, + 445, + 1375, + 445 + ], + "score": 0.76, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 357, + 1835, + 381, + 1835, + 381, + 1862, + 357, + 1862 + ], + "score": 0.76, + "latex": "\\Sigma" + }, + { + "category_id": 13, + "poly": [ + 570, + 1221, + 623, + 1221, + 623, + 1249, + 570, + 1249 + ], + "score": 0.73, + "latex": "G / T" + }, + { + "category_id": 13, + "poly": [ + 614, + 1161, + 664, + 1161, + 664, + 1191, + 614, + 1191 + ], + "score": 0.67, + "latex": "D _ { \\mathrm { J S } }" + }, + { + "category_id": 13, + "poly": [ + 541, + 1161, + 665, + 1161, + 665, + 1192, + 541, + 1192 + ], + "score": 0.27, + "latex": "D _ { \\mathrm { K L } } , D _ { \\mathrm { J 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": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 1352.0, + 227.0, + 1352.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1587.0, + 812.0, + 1587.0, + 812.0, + 1626.0, + 292.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 1587.0, + 1285.0, + 1587.0, + 1285.0, + 1626.0, + 928.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1587.0, + 1404.0, + 1587.0, + 1404.0, + 1626.0, + 1401.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1618.0, + 726.0, + 1618.0, + 726.0, + 1658.0, + 292.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 1618.0, + 1304.0, + 1618.0, + 1304.0, + 1658.0, + 754.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1618.0, + 1405.0, + 1618.0, + 1405.0, + 1658.0, + 1401.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1649.0, + 1100.0, + 1649.0, + 1100.0, + 1689.0, + 294.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 1649.0, + 1407.0, + 1649.0, + 1407.0, + 1689.0, + 1127.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1677.0, + 467.0, + 1677.0, + 467.0, + 1719.0, + 292.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 1677.0, + 918.0, + 1677.0, + 918.0, + 1719.0, + 866.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 1677.0, + 1405.0, + 1677.0, + 1405.0, + 1719.0, + 946.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1708.0, + 445.0, + 1708.0, + 445.0, + 1749.0, + 292.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 1708.0, + 1406.0, + 1708.0, + 1406.0, + 1749.0, + 545.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 1740.0, + 1105.0, + 1740.0, + 1105.0, + 1780.0, + 735.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 1740.0, + 1406.0, + 1740.0, + 1406.0, + 1780.0, + 1165.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1772.0, + 1140.0, + 1772.0, + 1140.0, + 1808.0, + 294.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 1772.0, + 1326.0, + 1772.0, + 1326.0, + 1808.0, + 1180.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1772.0, + 1406.0, + 1772.0, + 1406.0, + 1808.0, + 1354.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1803.0, + 645.0, + 1803.0, + 645.0, + 1839.0, + 295.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 1803.0, + 1143.0, + 1803.0, + 1143.0, + 1839.0, + 1013.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 1803.0, + 1404.0, + 1803.0, + 1404.0, + 1839.0, + 1166.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1834.0, + 356.0, + 1834.0, + 356.0, + 1868.0, + 294.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1834.0, + 1405.0, + 1834.0, + 1405.0, + 1868.0, + 382.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1865.0, + 991.0, + 1865.0, + 991.0, + 1900.0, + 295.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1865.0, + 1170.0, + 1865.0, + 1170.0, + 1900.0, + 1158.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 776.0, + 733.0, + 776.0, + 733.0, + 814.0, + 294.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 776.0, + 951.0, + 776.0, + 951.0, + 814.0, + 868.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 776.0, + 1405.0, + 776.0, + 1405.0, + 814.0, + 979.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 806.0, + 475.0, + 806.0, + 475.0, + 845.0, + 292.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 994.0, + 806.0, + 1403.0, + 806.0, + 1403.0, + 845.0, + 994.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 838.0, + 847.0, + 838.0, + 847.0, + 876.0, + 292.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 838.0, + 1405.0, + 838.0, + 1405.0, + 876.0, + 875.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 868.0, + 403.0, + 868.0, + 403.0, + 903.0, + 293.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 868.0, + 469.0, + 868.0, + 469.0, + 903.0, + 432.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 868.0, + 1405.0, + 868.0, + 1405.0, + 903.0, + 533.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 899.0, + 946.0, + 899.0, + 946.0, + 936.0, + 295.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 899.0, + 1405.0, + 899.0, + 1405.0, + 936.0, + 967.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 929.0, + 682.0, + 929.0, + 682.0, + 966.0, + 295.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 929.0, + 1405.0, + 929.0, + 1405.0, + 966.0, + 776.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 960.0, + 297.0, + 960.0, + 297.0, + 994.0, + 293.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 960.0, + 941.0, + 960.0, + 941.0, + 994.0, + 318.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 960.0, + 1180.0, + 960.0, + 1180.0, + 994.0, + 969.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 960.0, + 1406.0, + 960.0, + 1406.0, + 994.0, + 1206.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 990.0, + 1406.0, + 990.0, + 1406.0, + 1027.0, + 293.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1023.0, + 561.0, + 1023.0, + 561.0, + 1059.0, + 293.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1068.0, + 1250.0, + 1068.0, + 1250.0, + 1103.0, + 295.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 1068.0, + 1405.0, + 1068.0, + 1405.0, + 1103.0, + 1293.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1096.0, + 827.0, + 1096.0, + 827.0, + 1137.0, + 292.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 1096.0, + 1405.0, + 1096.0, + 1405.0, + 1137.0, + 880.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1126.0, + 370.0, + 1126.0, + 370.0, + 1166.0, + 292.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 1126.0, + 465.0, + 1126.0, + 465.0, + 1166.0, + 414.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 1126.0, + 1405.0, + 1126.0, + 1405.0, + 1166.0, + 506.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1160.0, + 540.0, + 1160.0, + 540.0, + 1198.0, + 294.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 1160.0, + 1079.0, + 1160.0, + 1079.0, + 1198.0, + 666.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1160.0, + 1175.0, + 1160.0, + 1175.0, + 1198.0, + 1123.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 1160.0, + 1407.0, + 1160.0, + 1407.0, + 1198.0, + 1216.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1191.0, + 684.0, + 1191.0, + 684.0, + 1225.0, + 295.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 1191.0, + 1405.0, + 1191.0, + 1405.0, + 1225.0, + 724.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1220.0, + 569.0, + 1220.0, + 569.0, + 1255.0, + 295.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1220.0, + 867.0, + 1220.0, + 867.0, + 1255.0, + 624.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 1220.0, + 1405.0, + 1220.0, + 1405.0, + 1255.0, + 911.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1251.0, + 986.0, + 1251.0, + 986.0, + 1287.0, + 294.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 295.0, + 1405.0, + 295.0, + 1405.0, + 330.0, + 295.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 325.0, + 1402.0, + 325.0, + 1402.0, + 360.0, + 295.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 356.0, + 414.0, + 356.0, + 414.0, + 391.0, + 295.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 356.0, + 1404.0, + 356.0, + 1404.0, + 391.0, + 455.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 384.0, + 1156.0, + 384.0, + 1156.0, + 424.0, + 292.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 384.0, + 1406.0, + 384.0, + 1406.0, + 424.0, + 1197.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 416.0, + 688.0, + 416.0, + 688.0, + 454.0, + 292.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 416.0, + 1131.0, + 416.0, + 1131.0, + 454.0, + 715.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 416.0, + 1374.0, + 416.0, + 1374.0, + 454.0, + 1171.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 416.0, + 1406.0, + 416.0, + 1406.0, + 454.0, + 1403.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 446.0, + 403.0, + 446.0, + 403.0, + 485.0, + 294.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 446.0, + 712.0, + 446.0, + 712.0, + 485.0, + 430.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 446.0, + 1406.0, + 446.0, + 1406.0, + 485.0, + 933.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 473.0, + 861.0, + 473.0, + 861.0, + 516.0, + 432.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 473.0, + 1082.0, + 473.0, + 1082.0, + 516.0, + 902.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 524.0, + 909.0, + 524.0, + 909.0, + 560.0, + 295.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 524.0, + 1404.0, + 524.0, + 1404.0, + 560.0, + 937.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 556.0, + 567.0, + 556.0, + 567.0, + 591.0, + 293.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 556.0, + 1405.0, + 556.0, + 1405.0, + 591.0, + 608.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 585.0, + 1404.0, + 585.0, + 1404.0, + 620.0, + 294.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 613.0, + 399.0, + 613.0, + 399.0, + 651.0, + 292.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1911.0, + 1406.0, + 1911.0, + 1406.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1943.0, + 442.0, + 1943.0, + 442.0, + 1975.0, + 293.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 1943.0, + 779.0, + 1943.0, + 779.0, + 1975.0, + 517.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 806.0, + 1943.0, + 1406.0, + 1943.0, + 1406.0, + 1975.0, + 806.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1972.0, + 1302.0, + 1972.0, + 1302.0, + 2007.0, + 291.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2007.0, + 1394.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2002.0, + 388.0, + 2002.0, + 388.0, + 2038.0, + 292.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 2002.0, + 893.0, + 2002.0, + 893.0, + 2038.0, + 540.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 2002.0, + 1323.0, + 2002.0, + 1323.0, + 2038.0, + 1093.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 2002.0, + 1404.0, + 2002.0, + 1404.0, + 2038.0, + 1401.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1362.0, + 371.0, + 1362.0, + 371.0, + 1404.0, + 293.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 1362.0, + 862.0, + 1362.0, + 862.0, + 1404.0, + 406.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1362.0, + 1163.0, + 1362.0, + 1163.0, + 1404.0, + 891.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1397.0, + 1310.0, + 1397.0, + 1310.0, + 1433.0, + 449.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1441.0, + 1145.0, + 1441.0, + 1145.0, + 1481.0, + 295.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 1441.0, + 1406.0, + 1441.0, + 1406.0, + 1481.0, + 1186.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1473.0, + 411.0, + 1473.0, + 411.0, + 1510.0, + 292.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 658.0, + 1404.0, + 658.0, + 1404.0, + 700.0, + 295.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 1352.0, + 227.0, + 1352.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 834, + 1405, + 834, + 1405, + 1083, + 296, + 1083 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 458, + 1405, + 458, + 1405, + 676, + 297, + 676 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 296, + 1530, + 1405, + 1530, + 1405, + 1778, + 296, + 1778 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1192, + 1404, + 1192, + 1404, + 1350, + 297, + 1350 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1362, + 1403, + 1362, + 1403, + 1519, + 297, + 1519 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 227, + 1403, + 227, + 1403, + 359, + 298, + 359 + ], + "score": 0.977 + }, + { + "category_id": 2, + "poly": [ + 296, + 1919, + 1404, + 1919, + 1404, + 2037, + 296, + 2037 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 491, + 1793, + 1208, + 1793, + 1208, + 1847, + 491, + 1847 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 294, + 688, + 1402, + 688, + 1402, + 752, + 294, + 752 + ], + "score": 0.94 + }, + { + "category_id": 8, + "poly": [ + 409, + 765, + 1287, + 765, + 1287, + 821, + 409, + 821 + ], + "score": 0.933 + }, + { + "category_id": 0, + "poly": [ + 299, + 1125, + 1018, + 1125, + 1018, + 1161, + 299, + 1161 + ], + "score": 0.92 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.91 + }, + { + "category_id": 8, + "poly": [ + 321, + 370, + 1334, + 370, + 1334, + 428, + 321, + 428 + ], + "score": 0.909 + }, + { + "category_id": 1, + "poly": [ + 293, + 1863, + 1279, + 1863, + 1279, + 1900, + 293, + 1900 + ], + "score": 0.905 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1799, + 1400, + 1799, + 1400, + 1828, + 1366, + 1828 + ], + "score": 0.876 + }, + { + "category_id": 9, + "poly": [ + 1366, + 771, + 1399, + 771, + 1399, + 800, + 1366, + 800 + ], + "score": 0.867 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.865 + }, + { + "category_id": 9, + "poly": [ + 1367, + 377, + 1400, + 377, + 1400, + 408, + 1367, + 408 + ], + "score": 0.799 + }, + { + "category_id": 13, + "poly": [ + 412, + 2003, + 654, + 2003, + 654, + 2038, + 412, + 2038 + ], + "score": 0.95, + "latex": "\\textstyle { \\int f { \\bigl ( } p ( x ) / q ( x ) { \\bigr ) } } { \\dot { q } } ( x ) d x" + }, + { + "category_id": 13, + "poly": [ + 930, + 230, + 1096, + 230, + 1096, + 264, + 930, + 264 + ], + "score": 0.94, + "latex": "Q _ { e } ( Z | X = x )" + }, + { + "category_id": 13, + "poly": [ + 500, + 582, + 614, + 582, + 614, + 616, + 500, + 616 + ], + "score": 0.93, + "latex": "P _ { G } ( X | Z )" + }, + { + "category_id": 13, + "poly": [ + 716, + 1424, + 813, + 1424, + 813, + 1458, + 716, + 1458 + ], + "score": 0.93, + "latex": "\\Gamma ( Y | X )" + }, + { + "category_id": 13, + "poly": [ + 940, + 1715, + 1173, + 1715, + 1173, + 1749, + 940, + 1749 + ], + "score": 0.93, + "latex": "\\mathcal { P } _ { X , Y } \\subseteq \\mathcal { P } ( P _ { X } , P _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 577, + 1685, + 687, + 1685, + 687, + 1718, + 577, + 1718 + ], + "score": 0.93, + "latex": "P _ { G } ( Y | Z )" + }, + { + "category_id": 13, + "poly": [ + 965, + 989, + 1064, + 989, + 1064, + 1022, + 965, + 1022 + ], + "score": 0.93, + "latex": "Q ( Z | X )" + }, + { + "category_id": 13, + "poly": [ + 747, + 1486, + 857, + 1486, + 857, + 1519, + 747, + 1519 + ], + "score": 0.93, + "latex": "P _ { G } ( Y | Z )" + }, + { + "category_id": 13, + "poly": [ + 346, + 958, + 460, + 958, + 460, + 991, + 346, + 991 + ], + "score": 0.93, + "latex": "P _ { G } ( X | Z )" + }, + { + "category_id": 13, + "poly": [ + 1055, + 1363, + 1154, + 1363, + 1154, + 1396, + 1055, + 1396 + ], + "score": 0.93, + "latex": "\\Gamma ( X , Y )" + }, + { + "category_id": 13, + "poly": [ + 1065, + 1624, + 1144, + 1624, + 1144, + 1656, + 1065, + 1656 + ], + "score": 0.93, + "latex": "( X , Z )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1424, + 479, + 1424, + 479, + 1458, + 298, + 1458 + ], + "score": 0.93, + "latex": "\\bar { \\Gamma } ( \\bar { Y ( X ) } P _ { X } ( X )" + }, + { + "category_id": 13, + "poly": [ + 360, + 867, + 459, + 867, + 459, + 900, + 360, + 900 + ], + "score": 0.92, + "latex": "Q ( Z | X )" + }, + { + "category_id": 13, + "poly": [ + 323, + 1865, + 434, + 1865, + 434, + 1899, + 323, + 1899 + ], + "score": 0.92, + "latex": "P _ { G } ( Y | Z )" + }, + { + "category_id": 13, + "poly": [ + 783, + 1256, + 916, + 1256, + 916, + 1289, + 783, + 1289 + ], + "score": 0.92, + "latex": "P _ { G , Z } ( Y , Z )" + }, + { + "category_id": 13, + "poly": [ + 1262, + 1533, + 1342, + 1533, + 1342, + 1565, + 1262, + 1565 + ], + "score": 0.92, + "latex": "( X , Y )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1485, + 397, + 1485, + 397, + 1519, + 298, + 1519 + ], + "score": 0.92, + "latex": "Q ( Z | X )" + }, + { + "category_id": 13, + "poly": [ + 1135, + 583, + 1234, + 583, + 1234, + 616, + 1135, + 616 + ], + "score": 0.92, + "latex": "Q ( Z | X )" + }, + { + "category_id": 14, + "poly": [ + 411, + 765, + 1287, + 765, + 1287, + 822, + 411, + 822 + ], + "score": 0.92, + "latex": "D _ { \\mathrm { A A E } } ( P _ { X } , P _ { G } ) = \\operatorname* { i n f } _ { Q ( Z | X ) \\in Q } D _ { \\mathrm { G A N } } ( Q _ { Z } , P _ { Z } ) - \\mathbb { E } _ { P _ { X } } \\mathbb { E } _ { Q ( Z | X ) } [ \\log p _ { G } ( X | Z ) ] ," + }, + { + "category_id": 13, + "poly": [ + 457, + 1625, + 523, + 1625, + 523, + 1657, + 457, + 1657 + ], + "score": 0.92, + "latex": "\\mathcal { P } _ { X , Y }" + }, + { + "category_id": 13, + "poly": [ + 1037, + 1865, + 1268, + 1865, + 1268, + 1900, + 1037, + 1900 + ], + "score": 0.92, + "latex": "\\mathcal { P } _ { X , Y } = \\mathcal { P } ( P _ { X } , P _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 299, + 1593, + 408, + 1593, + 408, + 1627, + 299, + 1627 + ], + "score": 0.92, + "latex": "( X , Y , Z )" + }, + { + "category_id": 14, + "poly": [ + 491, + 1790, + 1209, + 1790, + 1209, + 1850, + 491, + 1850 + ], + "score": 0.92, + "latex": "W _ { c } ( P _ { X } , P _ { G } ) \\leq W _ { c } ^ { \\dagger } ( P _ { X } , P _ { G } ) : = \\operatorname* { i n f } _ { P \\in \\mathcal { P } _ { X , Y } } \\mathbb { E } _ { ( X , Y ) \\sim P } \\left[ c ( X , Y ) \\right] ." + }, + { + "category_id": 13, + "poly": [ + 298, + 1051, + 363, + 1051, + 363, + 1086, + 298, + 1086 + ], + "score": 0.92, + "latex": "\\delta _ { \\mu ( X ) }" + }, + { + "category_id": 13, + "poly": [ + 869, + 1287, + 979, + 1287, + 979, + 1319, + 869, + 1319 + ], + "score": 0.92, + "latex": "P _ { G } ( Y | Z )" + }, + { + "category_id": 13, + "poly": [ + 1320, + 1256, + 1393, + 1256, + 1393, + 1289, + 1320, + 1289 + ], + "score": 0.91, + "latex": "( Y , Z )" + }, + { + "category_id": 13, + "poly": [ + 1076, + 692, + 1134, + 692, + 1134, + 721, + 1076, + 721 + ], + "score": 0.91, + "latex": "D _ { \\mathrm { K L } }" + }, + { + "category_id": 13, + "poly": [ + 1271, + 1018, + 1405, + 1018, + 1405, + 1052, + 1271, + 1052 + ], + "score": 0.91, + "latex": "Q ( Z | X ) =" + }, + { + "category_id": 13, + "poly": [ + 914, + 958, + 1013, + 958, + 1013, + 988, + 914, + 988 + ], + "score": 0.91, + "latex": "Z \\sim P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 1160, + 261, + 1399, + 261, + 1399, + 300, + 1160, + 300 + ], + "score": 0.91, + "latex": "D _ { \\mathrm { K L } } \\big ( Q _ { e } ( Z | X ) , P _ { Z } \\big )" + }, + { + "category_id": 13, + "poly": [ + 516, + 1656, + 601, + 1656, + 601, + 1688, + 516, + 1688 + ], + "score": 0.91, + "latex": "{ \\mathcal { P } } _ { X , Y , Z }" + }, + { + "category_id": 13, + "poly": [ + 415, + 1564, + 505, + 1564, + 505, + 1594, + 415, + 1594 + ], + "score": 0.91, + "latex": "P _ { X } , P _ { G }" + }, + { + "category_id": 13, + "poly": [ + 769, + 898, + 953, + 898, + 953, + 929, + 769, + 929 + ], + "score": 0.91, + "latex": "D _ { \\mathrm { A A E } } \\leq D _ { \\mathrm { A V B } }" + }, + { + "category_id": 13, + "poly": [ + 969, + 1317, + 1138, + 1317, + 1138, + 1351, + 969, + 1351 + ], + "score": 0.91, + "latex": "( Y , Z ) \\sim P _ { G , Z }" + }, + { + "category_id": 14, + "poly": [ + 322, + 370, + 1343, + 370, + 1343, + 430, + 322, + 430 + ], + "score": 0.91, + "latex": "D _ { \\mathrm { A V B } } ( P _ { X } , P _ { G } ) = \\operatorname* { i n f } _ { Q _ { \\epsilon } ( Z | X ) \\in \\mathcal { Q } } \\mathbb { E } _ { P _ { X } } \\left[ D _ { \\mathrm { f } , \\operatorname { G A N } } \\big ( Q _ { e } ( Z | X ) , P _ { Z } \\big ) - \\mathbb { E } _ { Q _ { \\epsilon } ( Z | X ) } [ \\log p _ { G } ( X | Z ) ] \\right] ." + }, + { + "category_id": 13, + "poly": [ + 298, + 1226, + 443, + 1226, + 443, + 1255, + 298, + 1255 + ], + "score": 0.91, + "latex": "\\mathcal { X } \\times \\mathcal { X } \\times \\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 1304, + 1685, + 1404, + 1685, + 1404, + 1718, + 1304, + 1718 + ], + "score": 0.91, + "latex": "\\mathcal { P } _ { X , Z } =" + }, + { + "category_id": 13, + "poly": [ + 352, + 521, + 574, + 521, + 574, + 555, + 352, + 555 + ], + "score": 0.9, + "latex": "Q ( Z | X ) , P _ { G } ( X | Z )" + }, + { + "category_id": 13, + "poly": [ + 1043, + 1657, + 1110, + 1657, + 1110, + 1688, + 1043, + 1688 + ], + "score": 0.9, + "latex": "\\mathcal { P } _ { X , Y }" + }, + { + "category_id": 13, + "poly": [ + 346, + 462, + 404, + 462, + 404, + 492, + 346, + 492 + ], + "score": 0.9, + "latex": "D _ { \\mathrm { K L } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1715, + 549, + 1715, + 549, + 1748, + 298, + 1748 + ], + "score": 0.9, + "latex": "\\mathcal { P } ( X \\sim P _ { X } , Z \\sim P _ { Z } )" + }, + { + "category_id": 13, + "poly": [ + 1265, + 1194, + 1404, + 1194, + 1404, + 1227, + 1265, + 1227 + ], + "score": 0.9, + "latex": "( X , Y , Z ) \\in" + }, + { + "category_id": 13, + "poly": [ + 425, + 1050, + 553, + 1050, + 553, + 1082, + 425, + 1082 + ], + "score": 0.9, + "latex": "\\mu \\colon \\mathcal X \\to \\mathcal Z" + }, + { + "category_id": 13, + "poly": [ + 928, + 1625, + 1008, + 1625, + 1008, + 1656, + 928, + 1656 + ], + "score": 0.9, + "latex": "( X , Y )" + }, + { + "category_id": 13, + "poly": [ + 1268, + 1394, + 1404, + 1394, + 1404, + 1427, + 1268, + 1427 + ], + "score": 0.9, + "latex": "\\Gamma ( X , Y ) =" + }, + { + "category_id": 13, + "poly": [ + 577, + 1626, + 642, + 1626, + 642, + 1657, + 577, + 1657 + ], + "score": 0.9, + "latex": "\\mathcal { P } _ { X , Z }" + }, + { + "category_id": 13, + "poly": [ + 713, + 1563, + 982, + 1563, + 982, + 1594, + 713, + 1594 + ], + "score": 0.9, + "latex": "\\mathcal { P } ( X \\sim P _ { X } , Z \\sim P _ { Z } )" + }, + { + "category_id": 13, + "poly": [ + 509, + 1531, + 774, + 1531, + 774, + 1565, + 509, + 1565 + ], + "score": 0.9, + "latex": "\\mathcal { P } ( X \\sim P _ { X } , Y \\sim P _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 1216, + 1594, + 1303, + 1594, + 1303, + 1627, + 1216, + 1627 + ], + "score": 0.9, + "latex": "{ \\mathcal { P } } _ { X , Y , Z }" + }, + { + "category_id": 13, + "poly": [ + 522, + 929, + 564, + 929, + 564, + 959, + 522, + 959 + ], + "score": 0.9, + "latex": "Q _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 586, + 1020, + 622, + 1020, + 622, + 1050, + 586, + 1050 + ], + "score": 0.9, + "latex": "Q _ { e }" + }, + { + "category_id": 13, + "poly": [ + 714, + 1865, + 848, + 1865, + 848, + 1899, + 714, + 1899 + ], + "score": 0.9, + "latex": "Y = G ( Z ) )" + }, + { + "category_id": 13, + "poly": [ + 770, + 1687, + 836, + 1687, + 836, + 1718, + 770, + 1718 + ], + "score": 0.89, + "latex": "\\mathcal { P } _ { X , Z }" + }, + { + "category_id": 13, + "poly": [ + 597, + 929, + 635, + 929, + 635, + 958, + 597, + 958 + ], + "score": 0.89, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 371, + 838, + 413, + 838, + 413, + 868, + 371, + 868 + ], + "score": 0.89, + "latex": "Q _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 1108, + 838, + 1149, + 838, + 1149, + 867, + 1108, + 867 + ], + "score": 0.88, + "latex": "P _ { X }" + }, + { + "category_id": 13, + "poly": [ + 1368, + 1955, + 1399, + 1955, + 1399, + 1974, + 1368, + 1974 + ], + "score": 0.88, + "latex": "T ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 635, + 1287, + 673, + 1287, + 673, + 1317, + 635, + 1317 + ], + "score": 0.88, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 1101, + 1288, + 1140, + 1288, + 1140, + 1317, + 1101, + 1317 + ], + "score": 0.88, + "latex": "P _ { G }" + }, + { + "category_id": 13, + "poly": [ + 862, + 1595, + 1001, + 1595, + 1001, + 1625, + 862, + 1625 + ], + "score": 0.88, + "latex": "( Y \\perp \\perp X ) | Z" + }, + { + "category_id": 13, + "poly": [ + 838, + 1227, + 866, + 1227, + 866, + 1253, + 838, + 1253 + ], + "score": 0.86, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 945, + 1923, + 962, + 1923, + 962, + 1951, + 945, + 1951 + ], + "score": 0.84, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 893, + 838, + 921, + 838, + 921, + 864, + 893, + 864 + ], + "score": 0.84, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 518, + 1594, + 620, + 1594, + 620, + 1624, + 518, + 1624 + ], + "score": 0.84, + "latex": "X \\sim P _ { X }" + }, + { + "category_id": 13, + "poly": [ + 585, + 1396, + 613, + 1396, + 613, + 1422, + 585, + 1422 + ], + "score": 0.83, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 1213, + 617, + 1237, + 617, + 1237, + 640, + 1213, + 640 + ], + "score": 0.83, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 750, + 838, + 774, + 838, + 774, + 864, + 750, + 864 + ], + "score": 0.82, + "latex": "Z" + }, + { + "category_id": 13, + "poly": [ + 426, + 1257, + 450, + 1257, + 450, + 1283, + 426, + 1283 + ], + "score": 0.82, + "latex": "Z" + }, + { + "category_id": 13, + "poly": [ + 1257, + 232, + 1283, + 232, + 1283, + 260, + 1257, + 260 + ], + "score": 0.82, + "latex": "\\mathcal { Q }" + }, + { + "category_id": 13, + "poly": [ + 485, + 1979, + 554, + 1979, + 554, + 2003, + 485, + 2003 + ], + "score": 0.82, + "latex": "D _ { \\mathrm { G A N } }" + }, + { + "category_id": 13, + "poly": [ + 634, + 1595, + 803, + 1595, + 803, + 1627, + 634, + 1627 + ], + "score": 0.81, + "latex": "( Y , Z ) \\sim P _ { G , Z }" + }, + { + "category_id": 13, + "poly": [ + 372, + 1288, + 396, + 1288, + 396, + 1314, + 372, + 1314 + ], + "score": 0.81, + "latex": "Z" + }, + { + "category_id": 13, + "poly": [ + 1254, + 839, + 1277, + 839, + 1277, + 864, + 1254, + 864 + ], + "score": 0.81, + "latex": "Z" + }, + { + "category_id": 13, + "poly": [ + 1233, + 1426, + 1261, + 1426, + 1261, + 1452, + 1233, + 1452 + ], + "score": 0.81, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 1375, + 930, + 1401, + 930, + 1401, + 955, + 1375, + 955 + ], + "score": 0.8, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 891, + 1657, + 977, + 1657, + 977, + 1688, + 891, + 1688 + ], + "score": 0.8, + "latex": "{ \\mathcal { P } } _ { X , Y , Z }" + }, + { + "category_id": 13, + "poly": [ + 847, + 1456, + 871, + 1456, + 871, + 1483, + 847, + 1483 + ], + "score": 0.79, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 904, + 553, + 930, + 553, + 930, + 579, + 904, + 579 + ], + "score": 0.79, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 1049, + 1226, + 1075, + 1226, + 1075, + 1253, + 1049, + 1253 + ], + "score": 0.78, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 743, + 1654, + 876, + 1654, + 876, + 1687, + 743, + 1687 + ], + "score": 0.78, + "latex": "\\mathcal { P } ( P _ { X } , P _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 1294, + 1427, + 1318, + 1427, + 1318, + 1452, + 1294, + 1452 + ], + "score": 0.77, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 871, + 1319, + 897, + 1319, + 897, + 1344, + 871, + 1344 + ], + "score": 0.74, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 778, + 1289, + 803, + 1289, + 803, + 1314, + 778, + 1314 + ], + "score": 0.73, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 666, + 1396, + 691, + 1396, + 691, + 1422, + 666, + 1422 + ], + "score": 0.73, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 806, + 270, + 822, + 270, + 822, + 291, + 806, + 291 + ], + "score": 0.7, + "latex": "e" + }, + { + "category_id": 13, + "poly": [ + 740, + 295, + 831, + 295, + 831, + 328, + 740, + 328 + ], + "score": 0.68, + "latex": "D _ { \\mathrm { f , G A N } }" + }, + { + "category_id": 13, + "poly": [ + 739, + 295, + 774, + 295, + 774, + 327, + 739, + 327 + ], + "score": 0.56, + "latex": "D _ { \\mathrm { f } }" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1914.0, + 944.0, + 1914.0, + 944.0, + 1958.0, + 328.0, + 1958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 1914.0, + 1406.0, + 1914.0, + 1406.0, + 1958.0, + 963.0, + 1958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1945.0, + 1367.0, + 1945.0, + 1367.0, + 1983.0, + 295.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 484.0, + 1974.0, + 484.0, + 2012.0, + 294.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 1974.0, + 1406.0, + 1974.0, + 1406.0, + 2012.0, + 555.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 411.0, + 2000.0, + 411.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 2000.0, + 666.0, + 2000.0, + 666.0, + 2039.0, + 655.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1122.0, + 1020.0, + 1122.0, + 1020.0, + 1166.0, + 292.0, + 1166.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, + 869.0, + 2085.0, + 869.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 836.0, + 370.0, + 836.0, + 370.0, + 870.0, + 296.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 836.0, + 749.0, + 836.0, + 749.0, + 870.0, + 414.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 836.0, + 892.0, + 836.0, + 892.0, + 870.0, + 775.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 836.0, + 1107.0, + 836.0, + 1107.0, + 870.0, + 922.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 836.0, + 1253.0, + 836.0, + 1253.0, + 870.0, + 1150.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 836.0, + 1405.0, + 836.0, + 1405.0, + 870.0, + 1278.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 865.0, + 359.0, + 865.0, + 359.0, + 903.0, + 294.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 865.0, + 1406.0, + 865.0, + 1406.0, + 903.0, + 460.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 894.0, + 768.0, + 894.0, + 768.0, + 934.0, + 293.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 894.0, + 1406.0, + 894.0, + 1406.0, + 934.0, + 954.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 927.0, + 521.0, + 927.0, + 521.0, + 962.0, + 291.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 927.0, + 596.0, + 927.0, + 596.0, + 962.0, + 565.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 927.0, + 1374.0, + 927.0, + 1374.0, + 962.0, + 636.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 927.0, + 1407.0, + 927.0, + 1407.0, + 962.0, + 1402.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 955.0, + 345.0, + 955.0, + 345.0, + 994.0, + 293.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 955.0, + 913.0, + 955.0, + 913.0, + 994.0, + 461.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 955.0, + 1408.0, + 955.0, + 1408.0, + 994.0, + 1014.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 986.0, + 964.0, + 986.0, + 964.0, + 1023.0, + 291.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 986.0, + 1406.0, + 986.0, + 1406.0, + 1023.0, + 1065.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1017.0, + 585.0, + 1017.0, + 585.0, + 1053.0, + 293.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 1017.0, + 1270.0, + 1017.0, + 1270.0, + 1053.0, + 623.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1049.0, + 297.0, + 1049.0, + 297.0, + 1086.0, + 292.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1049.0, + 424.0, + 1049.0, + 424.0, + 1086.0, + 364.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1049.0, + 566.0, + 1049.0, + 566.0, + 1086.0, + 554.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 460.0, + 345.0, + 460.0, + 345.0, + 495.0, + 295.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 460.0, + 1403.0, + 460.0, + 1403.0, + 495.0, + 405.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 490.0, + 1405.0, + 490.0, + 1405.0, + 524.0, + 292.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 520.0, + 351.0, + 520.0, + 351.0, + 557.0, + 292.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 520.0, + 1406.0, + 520.0, + 1406.0, + 557.0, + 575.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 552.0, + 903.0, + 552.0, + 903.0, + 586.0, + 292.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 552.0, + 1405.0, + 552.0, + 1405.0, + 586.0, + 931.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 581.0, + 499.0, + 581.0, + 499.0, + 619.0, + 292.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 581.0, + 1134.0, + 581.0, + 1134.0, + 619.0, + 615.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 581.0, + 1406.0, + 581.0, + 1406.0, + 619.0, + 1235.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 612.0, + 1212.0, + 612.0, + 1212.0, + 650.0, + 294.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 612.0, + 1407.0, + 612.0, + 1407.0, + 650.0, + 1238.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 644.0, + 534.0, + 644.0, + 534.0, + 680.0, + 295.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1530.0, + 508.0, + 1530.0, + 508.0, + 1567.0, + 294.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 1530.0, + 1261.0, + 1530.0, + 1261.0, + 1567.0, + 775.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 1530.0, + 1406.0, + 1530.0, + 1406.0, + 1567.0, + 1343.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1561.0, + 414.0, + 1561.0, + 414.0, + 1598.0, + 293.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 1561.0, + 712.0, + 1561.0, + 712.0, + 1598.0, + 506.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 1561.0, + 1407.0, + 1561.0, + 1407.0, + 1598.0, + 983.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1590.0, + 298.0, + 1590.0, + 298.0, + 1630.0, + 295.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 1590.0, + 517.0, + 1590.0, + 517.0, + 1630.0, + 409.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 1590.0, + 633.0, + 1590.0, + 633.0, + 1630.0, + 621.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1590.0, + 861.0, + 1590.0, + 861.0, + 1630.0, + 804.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 1590.0, + 1215.0, + 1590.0, + 1215.0, + 1630.0, + 1002.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1304.0, + 1590.0, + 1405.0, + 1590.0, + 1405.0, + 1630.0, + 1304.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1621.0, + 456.0, + 1621.0, + 456.0, + 1659.0, + 294.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 1621.0, + 576.0, + 1621.0, + 576.0, + 1659.0, + 524.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 1621.0, + 927.0, + 1621.0, + 927.0, + 1659.0, + 643.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 1621.0, + 1064.0, + 1621.0, + 1064.0, + 1659.0, + 1009.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 1621.0, + 1406.0, + 1621.0, + 1406.0, + 1659.0, + 1145.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1652.0, + 515.0, + 1652.0, + 515.0, + 1693.0, + 293.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 1652.0, + 742.0, + 1652.0, + 742.0, + 1693.0, + 602.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1652.0, + 890.0, + 1652.0, + 890.0, + 1693.0, + 877.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 1652.0, + 1042.0, + 1652.0, + 1042.0, + 1693.0, + 978.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 1652.0, + 1410.0, + 1652.0, + 1410.0, + 1693.0, + 1111.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1681.0, + 576.0, + 1681.0, + 576.0, + 1722.0, + 291.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 1681.0, + 769.0, + 1681.0, + 769.0, + 1722.0, + 688.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 1681.0, + 1303.0, + 1681.0, + 1303.0, + 1722.0, + 837.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1713.0, + 297.0, + 1713.0, + 297.0, + 1751.0, + 294.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1713.0, + 939.0, + 1713.0, + 939.0, + 1751.0, + 550.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 1713.0, + 1405.0, + 1713.0, + 1405.0, + 1751.0, + 1174.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1746.0, + 646.0, + 1746.0, + 646.0, + 1781.0, + 295.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1189.0, + 1264.0, + 1189.0, + 1264.0, + 1231.0, + 295.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 1225.0, + 837.0, + 1225.0, + 837.0, + 1259.0, + 444.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 1225.0, + 1048.0, + 1225.0, + 1048.0, + 1259.0, + 867.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 1225.0, + 1404.0, + 1225.0, + 1404.0, + 1259.0, + 1076.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1254.0, + 425.0, + 1254.0, + 425.0, + 1291.0, + 294.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1254.0, + 782.0, + 1254.0, + 782.0, + 1291.0, + 451.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 1254.0, + 1319.0, + 1254.0, + 1319.0, + 1291.0, + 917.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1254.0, + 1404.0, + 1254.0, + 1404.0, + 1291.0, + 1394.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1286.0, + 371.0, + 1286.0, + 371.0, + 1319.0, + 297.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 1286.0, + 634.0, + 1286.0, + 634.0, + 1319.0, + 397.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 1286.0, + 777.0, + 1286.0, + 777.0, + 1319.0, + 674.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1286.0, + 868.0, + 1286.0, + 868.0, + 1319.0, + 804.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 1286.0, + 1100.0, + 1286.0, + 1100.0, + 1319.0, + 980.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 1286.0, + 1405.0, + 1286.0, + 1405.0, + 1319.0, + 1141.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1310.0, + 870.0, + 1310.0, + 870.0, + 1357.0, + 292.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1310.0, + 968.0, + 1310.0, + 968.0, + 1357.0, + 898.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 1310.0, + 1151.0, + 1310.0, + 1151.0, + 1357.0, + 1139.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1362.0, + 1054.0, + 1362.0, + 1054.0, + 1399.0, + 293.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 1362.0, + 1405.0, + 1362.0, + 1405.0, + 1399.0, + 1155.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1394.0, + 584.0, + 1394.0, + 584.0, + 1431.0, + 293.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1394.0, + 665.0, + 1394.0, + 665.0, + 1431.0, + 614.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 1394.0, + 1267.0, + 1394.0, + 1267.0, + 1431.0, + 692.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 1424.0, + 715.0, + 1424.0, + 715.0, + 1458.0, + 480.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 1424.0, + 1232.0, + 1424.0, + 1232.0, + 1458.0, + 814.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 1424.0, + 1293.0, + 1424.0, + 1293.0, + 1458.0, + 1262.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 1424.0, + 1401.0, + 1424.0, + 1401.0, + 1458.0, + 1319.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1453.0, + 846.0, + 1453.0, + 846.0, + 1490.0, + 292.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 1453.0, + 1405.0, + 1453.0, + 1405.0, + 1490.0, + 872.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1482.0, + 297.0, + 1482.0, + 297.0, + 1523.0, + 293.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 1482.0, + 746.0, + 1482.0, + 746.0, + 1523.0, + 398.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 1482.0, + 870.0, + 1482.0, + 870.0, + 1523.0, + 858.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 929.0, + 229.0, + 929.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 229.0, + 1256.0, + 229.0, + 1256.0, + 266.0, + 1097.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 266.0, + 1284.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 257.0, + 805.0, + 257.0, + 805.0, + 302.0, + 291.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 257.0, + 1159.0, + 257.0, + 1159.0, + 302.0, + 823.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 257.0, + 1403.0, + 257.0, + 1403.0, + 302.0, + 1400.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 292.0, + 738.0, + 292.0, + 738.0, + 332.0, + 292.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 292.0, + 1407.0, + 292.0, + 1407.0, + 332.0, + 832.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 328.0, + 447.0, + 328.0, + 447.0, + 360.0, + 292.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 688.0, + 1075.0, + 688.0, + 1075.0, + 724.0, + 296.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 688.0, + 1404.0, + 688.0, + 1404.0, + 724.0, + 1135.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 717.0, + 434.0, + 717.0, + 434.0, + 758.0, + 292.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1859.0, + 322.0, + 1859.0, + 322.0, + 1905.0, + 291.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 1859.0, + 713.0, + 1859.0, + 713.0, + 1905.0, + 435.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 1859.0, + 1036.0, + 1859.0, + 1036.0, + 1905.0, + 849.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 1859.0, + 1283.0, + 1859.0, + 1283.0, + 1905.0, + 1269.0, + 1905.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1056, + 1405, + 1056, + 1405, + 1156, + 298, + 1156 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 296, + 285, + 1404, + 285, + 1404, + 386, + 296, + 386 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 351, + 1470, + 1348, + 1470, + 1348, + 1656, + 351, + 1656 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 488, + 589, + 1213, + 589, + 1213, + 827, + 488, + 827 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 294, + 967, + 1400, + 967, + 1400, + 1032, + 294, + 1032 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 296, + 1286, + 1408, + 1286, + 1408, + 1349, + 296, + 1349 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 677, + 491, + 1022, + 491, + 1022, + 533, + 677, + 533 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 299, + 1917, + 1406, + 1917, + 1406, + 1983, + 299, + 1983 + ], + "score": 0.938 + }, + { + "category_id": 8, + "poly": [ + 325, + 1171, + 1320, + 1171, + 1320, + 1260, + 325, + 1260 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 297, + 839, + 1105, + 839, + 1105, + 877, + 297, + 877 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 297, + 443, + 1083, + 443, + 1083, + 478, + 297, + 478 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 296, + 1430, + 406, + 1430, + 406, + 1461, + 296, + 1461 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 296, + 542, + 1322, + 542, + 1322, + 576, + 296, + 576 + ], + "score": 0.924 + }, + { + "category_id": 0, + "poly": [ + 297, + 1793, + 881, + 1793, + 881, + 1830, + 297, + 1830 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 288, + 1669, + 1327, + 1669, + 1327, + 1706, + 288, + 1706 + ], + "score": 0.921 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 816, + 74, + 816, + 106, + 298, + 106 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 297, + 1860, + 465, + 1860, + 465, + 1894, + 297, + 1894 + ], + "score": 0.905 + }, + { + "category_id": 2, + "poly": [ + 328, + 2004, + 1261, + 2004, + 1261, + 2035, + 328, + 2035 + ], + "score": 0.904 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1366, + 1400, + 1366, + 1400, + 1398, + 1351, + 1398 + ], + "score": 0.876 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.874 + }, + { + "category_id": 1, + "poly": [ + 294, + 226, + 1278, + 226, + 1278, + 266, + 294, + 266 + ], + "score": 0.869 + }, + { + "category_id": 9, + "poly": [ + 1353, + 1197, + 1400, + 1197, + 1400, + 1229, + 1353, + 1229 + ], + "score": 0.857 + }, + { + "category_id": 0, + "poly": [ + 299, + 909, + 732, + 909, + 732, + 944, + 299, + 944 + ], + "score": 0.841 + }, + { + "category_id": 8, + "poly": [ + 465, + 1360, + 1233, + 1360, + 1233, + 1417, + 465, + 1417 + ], + "score": 0.814 + }, + { + "category_id": 2, + "poly": [ + 1379, + 1669, + 1405, + 1669, + 1405, + 1704, + 1379, + 1704 + ], + "score": 0.755 + }, + { + "category_id": 8, + "poly": [ + 465, + 1360, + 1233, + 1360, + 1233, + 1417, + 465, + 1417 + ], + "score": 0.25 + }, + { + "category_id": 14, + "poly": [ + 486, + 589, + 1213, + 589, + 1213, + 828, + 486, + 828 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { W _ { c } ^ { \\dagger } ( P _ { X } , P _ { G } ) = \\underset { P \\in \\mathcal { P } _ { X , Y , Z } } { \\operatorname* { i n f } } \\mathbb { E } _ { ( X , Y , Z ) \\sim P } \\left[ c ( X , Y ) \\right] } \\\\ & { \\quad \\quad \\quad = \\underset { P \\in \\mathcal { P } _ { X , Y , Z } } { \\operatorname* { i n f } } \\mathbb { E } _ { P _ { Z } } \\mathbb { E } _ { X \\sim P ( X \\mid Z ) } \\mathbb { E } _ { Y \\sim P ( Y \\mid Z ) } [ c ( X , Y ) ] } \\\\ & { \\quad \\quad \\quad = \\underset { P \\in \\mathcal { P } _ { X , Y , Z } } { \\operatorname* { i n f } } \\mathbb { E } _ { P _ { Z } } \\mathbb { E } _ { X \\sim P ( X \\mid Z ) } \\left[ c \\left( X , G ( Z ) \\right) \\right] } \\\\ & { \\quad \\quad \\quad = \\underset { P \\in \\mathcal { P } _ { X , Z } } { \\operatorname* { i n f } } \\mathbb { E } _ { ( X , Z ) \\sim P } \\left[ c \\left( X , G ( Z ) \\right) \\right] . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 443, + 352, + 583, + 352, + 583, + 386, + 443, + 386 + ], + "score": 0.94, + "latex": "( Y \\perp \\perp X ) | Z" + }, + { + "category_id": 13, + "poly": [ + 422, + 230, + 656, + 230, + 656, + 265, + 422, + 265 + ], + "score": 0.94, + "latex": "\\mathcal { P } _ { X , Y } \\subseteq \\mathcal { P } ( P _ { X } , P _ { G } )" + }, + { + "category_id": 14, + "poly": [ + 326, + 1164, + 1330, + 1164, + 1330, + 1261, + 326, + 1261 + ], + "score": 0.94, + "latex": "W _ { c } ( P _ { X } , P _ { G } ) \\leq W _ { c } ^ { \\dagger } ( P _ { X } , P _ { G } ) = \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { 2 } + \\operatorname* { i n f } _ { P \\in \\mathcal { P } ( X \\setminus P _ { X } , Z \\sim P _ { Z } ) } \\mathbb { E } _ { ( X , Z ) \\sim P } \\big [ \\| X - G ( Z ) \\| ^ { 2 } \\big ] ." + }, + { + "category_id": 14, + "poly": [ + 351, + 1468, + 1348, + 1468, + 1348, + 1659, + 351, + 1659 + ], + "score": 0.93, + "latex": "\\begin{array} { l } { \\mathbb { E } _ { Y \\sim P ( Y \\vert Z ) } \\big [ \\| X - Y \\| ^ { 2 } \\big ] = \\mathbb { E } _ { Y \\sim P ( Y \\vert Z ) } \\big [ \\| X - G ( Z ) + G ( Z ) - Y \\| ^ { 2 } \\big ] } \\\\ { = \\| X - G ( Z ) \\| ^ { 2 } + \\mathbb { E } _ { Y \\sim P ( Y \\vert Z ) } \\big [ \\langle X - G ( Z ) , G ( Z ) - Y \\rangle \\big ] + \\mathbb { E } _ { Y \\sim P ( Y \\vert Z ) } \\| G ( Z ) - Y \\| ^ { 2 } } \\\\ { = \\| X - G ( Z ) \\| ^ { 2 } + \\displaystyle \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { 2 } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 696, + 1671, + 1045, + 1671, + 1045, + 1705, + 696, + 1705 + ], + "score": 0.93, + "latex": "\\mathcal { P } _ { X , Z } = \\mathcal { P } ( X \\sim P _ { X } , Z \\sim P _ { Z } )" + }, + { + "category_id": 13, + "poly": [ + 784, + 1089, + 958, + 1089, + 958, + 1124, + 784, + 1124 + ], + "score": 0.93, + "latex": "\\sigma _ { 1 } ^ { 2 } , \\ldots , \\sigma _ { d } ^ { 2 } \\geq 0" + }, + { + "category_id": 14, + "poly": [ + 676, + 490, + 1022, + 490, + 1022, + 531, + 676, + 531 + ], + "score": 0.92, + "latex": "W _ { c } ( P _ { X } , P _ { G } ) = W _ { c } ^ { \\dagger } ( P _ { X } , P _ { G } ) ." + }, + { + "category_id": 13, + "poly": [ + 807, + 229, + 1003, + 229, + 1003, + 264, + 807, + 264 + ], + "score": 0.92, + "latex": "i f ^ { 6 } ~ P _ { G } ( Y | Z = z )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1948, + 390, + 1948, + 390, + 1984, + 298, + 1984 + ], + "score": 0.92, + "latex": "\\sigma _ { z } ^ { 2 } = 1" + }, + { + "category_id": 13, + "poly": [ + 297, + 998, + 531, + 998, + 531, + 1033, + 297, + 1033 + ], + "score": 0.92, + "latex": "\\mathcal { P } _ { X , Y } \\subseteq \\mathcal { P } ( P _ { X } , P _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 1147, + 545, + 1232, + 545, + 1232, + 577, + 1147, + 577 + ], + "score": 0.92, + "latex": "{ \\mathcal { P } } _ { X , Y , Z }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1122, + 516, + 1122, + 516, + 1155, + 298, + 1155 + ], + "score": 0.92, + "latex": "c ( x , y ) = \\| x - y \\| _ { 2 } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 620, + 911, + 732, + 911, + 732, + 945, + 620, + 945 + ], + "score": 0.92, + "latex": "P _ { G } ( Y | Z )" + }, + { + "category_id": 13, + "poly": [ + 568, + 842, + 918, + 842, + 918, + 876, + 568, + 876 + ], + "score": 0.91, + "latex": "\\mathcal { P } _ { X , Z } = \\mathcal { P } ( X \\sim P _ { X } , Z \\sim P _ { Z } )" + }, + { + "category_id": 13, + "poly": [ + 829, + 1949, + 953, + 1949, + 953, + 1978, + 829, + 1978 + ], + "score": 0.91, + "latex": "\\alpha = 1 0 ^ { - 3 }" + }, + { + "category_id": 13, + "poly": [ + 1091, + 1059, + 1264, + 1059, + 1264, + 1092, + 1091, + 1092 + ], + "score": 0.91, + "latex": "P _ { G } ( Y | Z = z )" + }, + { + "category_id": 14, + "poly": [ + 465, + 1358, + 1234, + 1358, + 1234, + 1418, + 465, + 1418 + ], + "score": 0.91, + "latex": "W _ { c } ^ { \\dagger } ( P _ { X } , P _ { G } ) = \\operatorname* { i n f } _ { P \\in \\mathcal { P } _ { X , Y , Z } } \\mathbb { E } _ { P _ { Z } } \\mathbb { E } _ { X \\sim P ( X \\mid Z ) } \\mathbb { E } _ { Y \\sim P ( Y \\mid Z ) } \\left[ \\left\\| X - Y \\right\\| ^ { 2 } \\right] ." + }, + { + "category_id": 13, + "poly": [ + 493, + 1057, + 607, + 1057, + 607, + 1088, + 493, + 1088 + ], + "score": 0.9, + "latex": "\\mathcal { X } ~ = ~ \\mathcal { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 1255, + 1920, + 1352, + 1920, + 1352, + 1948, + 1255, + 1948 + ], + "score": 0.9, + "latex": "\\lambda = 1 0" + }, + { + "category_id": 13, + "poly": [ + 376, + 1089, + 507, + 1089, + 507, + 1122, + 376, + 1122 + ], + "score": 0.89, + "latex": "G ( z ) \\in \\mathcal { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 1038, + 1092, + 1112, + 1092, + 1112, + 1120, + 1038, + 1120 + ], + "score": 0.88, + "latex": "z \\in { \\mathcal { Z } }" + }, + { + "category_id": 13, + "poly": [ + 1198, + 1092, + 1332, + 1092, + 1332, + 1119, + 1198, + 1119 + ], + "score": 0.88, + "latex": "G \\colon { \\mathcal { Z } } \\to { \\mathcal { X } }" + }, + { + "category_id": 13, + "poly": [ + 1016, + 317, + 1394, + 317, + 1394, + 355, + 1016, + 355 + ], + "score": 0.88, + "latex": "\\mathbb { E } \\left[ \\mathbb { 1 } _ { [ Y \\in A ] } | X , Z \\right] = \\mathbb { E } \\left[ \\mathbb { 1 } _ { [ Y \\in A ] } | Z \\right]" + }, + { + "category_id": 13, + "poly": [ + 1199, + 232, + 1271, + 232, + 1271, + 259, + 1199, + 259 + ], + "score": 0.88, + "latex": "z \\in { \\mathcal { Z } }" + }, + { + "category_id": 13, + "poly": [ + 378, + 320, + 400, + 320, + 400, + 346, + 378, + 346 + ], + "score": 0.82, + "latex": "Z" + }, + { + "category_id": 13, + "poly": [ + 1116, + 289, + 1141, + 289, + 1141, + 315, + 1116, + 315 + ], + "score": 0.8, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 885, + 319, + 912, + 319, + 912, + 346, + 885, + 346 + ], + "score": 0.78, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 497, + 319, + 520, + 319, + 520, + 346, + 497, + 346 + ], + "score": 0.76, + "latex": "A" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1790.0, + 883.0, + 1790.0, + 883.0, + 1835.0, + 295.0, + 1835.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": [ + 294.0, + 1858.0, + 470.0, + 1858.0, + 470.0, + 1899.0, + 294.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1998.0, + 1259.0, + 1998.0, + 1259.0, + 2041.0, + 330.0, + 2041.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, + 905.0, + 619.0, + 905.0, + 619.0, + 949.0, + 293.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1053.0, + 492.0, + 1053.0, + 492.0, + 1095.0, + 295.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 1053.0, + 1090.0, + 1053.0, + 1090.0, + 1095.0, + 608.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 1053.0, + 1406.0, + 1053.0, + 1406.0, + 1095.0, + 1265.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1086.0, + 375.0, + 1086.0, + 375.0, + 1129.0, + 292.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 1086.0, + 783.0, + 1086.0, + 783.0, + 1129.0, + 508.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 1086.0, + 1037.0, + 1086.0, + 1037.0, + 1129.0, + 959.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 1086.0, + 1197.0, + 1086.0, + 1197.0, + 1129.0, + 1113.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 1086.0, + 1407.0, + 1086.0, + 1407.0, + 1129.0, + 1333.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 1117.0, + 595.0, + 1117.0, + 595.0, + 1157.0, + 517.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 284.0, + 1115.0, + 284.0, + 1115.0, + 323.0, + 294.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.0, + 284.0, + 1404.0, + 284.0, + 1404.0, + 323.0, + 1142.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 317.0, + 377.0, + 317.0, + 377.0, + 356.0, + 294.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 317.0, + 496.0, + 317.0, + 496.0, + 356.0, + 401.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 317.0, + 884.0, + 317.0, + 884.0, + 356.0, + 521.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 317.0, + 1015.0, + 317.0, + 1015.0, + 356.0, + 913.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 317.0, + 1402.0, + 317.0, + 1402.0, + 356.0, + 1395.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 352.0, + 442.0, + 352.0, + 442.0, + 387.0, + 296.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 352.0, + 864.0, + 352.0, + 864.0, + 387.0, + 584.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1385.0, + 357.0, + 1399.0, + 357.0, + 1399.0, + 379.0, + 1385.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 962.0, + 1405.0, + 962.0, + 1405.0, + 1005.0, + 291.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 998.0, + 1088.0, + 998.0, + 1088.0, + 1032.0, + 532.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1284.0, + 1406.0, + 1284.0, + 1406.0, + 1323.0, + 293.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1316.0, + 537.0, + 1316.0, + 537.0, + 1352.0, + 294.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1919.0, + 1254.0, + 1919.0, + 1254.0, + 1951.0, + 297.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 1919.0, + 1403.0, + 1919.0, + 1403.0, + 1951.0, + 1353.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1945.0, + 297.0, + 1945.0, + 297.0, + 1989.0, + 294.0, + 1989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1945.0, + 828.0, + 1945.0, + 828.0, + 1989.0, + 391.0, + 1989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 1945.0, + 1406.0, + 1945.0, + 1406.0, + 1989.0, + 954.0, + 1989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 839.0, + 567.0, + 839.0, + 567.0, + 880.0, + 295.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 839.0, + 1106.0, + 839.0, + 1106.0, + 880.0, + 919.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 443.0, + 1083.0, + 443.0, + 1083.0, + 483.0, + 296.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1427.0, + 409.0, + 1427.0, + 409.0, + 1464.0, + 294.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 538.0, + 1146.0, + 538.0, + 1146.0, + 583.0, + 293.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 538.0, + 1326.0, + 538.0, + 1326.0, + 583.0, + 1233.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1668.0, + 695.0, + 1668.0, + 695.0, + 1709.0, + 294.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 1668.0, + 1328.0, + 1668.0, + 1328.0, + 1709.0, + 1046.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 226.0, + 421.0, + 226.0, + 421.0, + 268.0, + 294.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 226.0, + 806.0, + 226.0, + 806.0, + 268.0, + 657.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 226.0, + 1198.0, + 226.0, + 1198.0, + 268.0, + 1004.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 226.0, + 1282.0, + 226.0, + 1282.0, + 268.0, + 1272.0, + 268.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1127, + 1404, + 1127, + 1404, + 1342, + 297, + 1342 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1512, + 1404, + 1512, + 1404, + 1636, + 298, + 1636 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 957, + 1404, + 957, + 1404, + 1114, + 297, + 1114 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 296, + 1650, + 1405, + 1650, + 1405, + 1775, + 296, + 1775 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 537, + 1872, + 1160, + 1872, + 1160, + 2028, + 537, + 2028 + ], + "score": 0.966 + }, + { + "category_id": 8, + "poly": [ + 644, + 782, + 1053, + 782, + 1053, + 937, + 644, + 937 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 541, + 607, + 1155, + 607, + 1155, + 722, + 541, + 722 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 557, + 390, + 1141, + 390, + 1141, + 547, + 557, + 547 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 297, + 1356, + 1402, + 1356, + 1402, + 1420, + 297, + 1420 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 295, + 228, + 1403, + 228, + 1403, + 293, + 295, + 293 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 300, + 744, + 737, + 744, + 737, + 775, + 300, + 775 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 298, + 569, + 539, + 569, + 539, + 600, + 298, + 600 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 299, + 1837, + 538, + 1837, + 538, + 1867, + 299, + 1867 + ], + "score": 0.914 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 815, + 74, + 815, + 105, + 299, + 105 + ], + "score": 0.913 + }, + { + "category_id": 1, + "poly": [ + 291, + 1788, + 1352, + 1788, + 1352, + 1822, + 291, + 1822 + ], + "score": 0.911 + }, + { + "category_id": 0, + "poly": [ + 298, + 1455, + 473, + 1455, + 473, + 1487, + 298, + 1487 + ], + "score": 0.9 + }, + { + "category_id": 1, + "poly": [ + 298, + 355, + 538, + 355, + 538, + 386, + 298, + 386 + ], + "score": 0.898 + }, + { + "category_id": 1, + "poly": [ + 295, + 307, + 1353, + 307, + 1353, + 341, + 295, + 341 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2113, + 836, + 2113 + ], + "score": 0.87 + }, + { + "category_id": 14, + "poly": [ + 641, + 780, + 1056, + 780, + 1056, + 939, + 641, + 939 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { z \\in \\mathcal { R } ^ { 8 } \\mathrm { F C } _ { 5 1 2 } \\mathrm { R e L U } } \\\\ & { ~ \\mathrm { F C } _ { 5 1 2 } \\mathrm { R e L U } } \\\\ & { ~ \\mathrm { F C } _ { 5 1 2 } \\mathrm { R e L U } } \\\\ & { ~ \\mathrm { F C } _ { 5 1 2 } \\mathrm { R e L U } \\mathrm { F C } _ { 1 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 608, + 229, + 774, + 229, + 774, + 260, + 608, + 260 + ], + "score": 0.93, + "latex": "\\alpha = 5 \\times 1 0 ^ { - 4 }" + }, + { + "category_id": 13, + "poly": [ + 1109, + 1603, + 1191, + 1603, + 1191, + 1638, + 1109, + 1638 + ], + "score": 0.92, + "latex": "\\sigma _ { z } ^ { 2 } = 2" + }, + { + "category_id": 14, + "poly": [ + 536, + 1869, + 1167, + 1869, + 1167, + 2032, + 536, + 2032 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } & { x \\in \\mathcal { R } ^ { 6 4 \\times 6 4 \\times 3 } \\to \\mathrm { C o n v _ { 1 2 8 } } \\to \\mathrm { B N } \\to \\mathrm { R e L U } } \\\\ & { \\qquad \\to \\mathrm { C o n v _ { 2 5 6 } } \\to \\mathrm { B N } \\to \\mathrm { R e L U } } \\\\ & { \\qquad \\to \\mathrm { C o n v _ { 5 1 2 } } \\to \\mathrm { B N } \\to \\mathrm { R e L U } } \\\\ & { \\qquad \\to \\mathrm { C o n v _ { 1 0 2 4 } } \\to \\mathrm { B N } \\to \\mathrm { R e L U } \\to \\mathrm { F C } _ { 6 4 } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 554, + 387, + 1145, + 387, + 1145, + 549, + 554, + 549 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } { x \\in \\mathcal { R } ^ { 2 8 \\times 2 8 } \\mathrm { C o n v _ { 1 2 8 } } \\mathrm { B N } \\mathrm { R e L U } } & { } \\\\ { \\mathrm { C o n v _ { 2 5 6 } } \\mathrm { B N } \\mathrm { R e L U } } & { } \\\\ { \\mathrm { C o n v _ { 5 1 2 } } \\mathrm { B N } \\mathrm { R e L U } } & { } \\\\ { \\mathrm { C o n v _ { 1 0 2 4 } } \\mathrm { B N } \\mathrm { R e L U } \\mathrm { F C } _ { 8 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1098, + 1681, + 1268, + 1681, + 1268, + 1711, + 1098, + 1711 + ], + "score": 0.92, + "latex": "\\alpha = 3 \\times 1 0 ^ { - 4 }" + }, + { + "category_id": 14, + "poly": [ + 540, + 603, + 1154, + 603, + 1154, + 725, + 540, + 725 + ], + "score": 0.91, + "latex": "\\begin{array} { r l } & { z \\in \\mathcal { R } ^ { 8 } \\mathrm { F C } _ { 7 \\times 7 \\times 1 0 2 4 } } \\\\ & { \\qquad \\mathrm { F S C o n v } _ { 5 1 2 } \\mathrm { B N } \\mathrm { R e L U } } \\\\ & { \\qquad \\mathrm { F S C o n v } _ { 2 5 6 } \\mathrm { B N } \\mathrm { R e L U } \\mathrm { F S C o n v } _ { 1 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1025, + 1649, + 1152, + 1649, + 1152, + 1680, + 1025, + 1680 + ], + "score": 0.91, + "latex": "\\alpha = 1 0 ^ { - 3 }" + }, + { + "category_id": 13, + "poly": [ + 584, + 1605, + 683, + 1605, + 683, + 1633, + 584, + 1633 + ], + "score": 0.9, + "latex": "\\lambda = 1 0 0" + }, + { + "category_id": 13, + "poly": [ + 1279, + 1159, + 1322, + 1159, + 1322, + 1191, + 1279, + 1191 + ], + "score": 0.9, + "latex": "Q _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 439, + 1711, + 498, + 1711, + 498, + 1741, + 439, + 1741 + ], + "score": 0.9, + "latex": "1 0 ^ { - 3 }" + }, + { + "category_id": 13, + "poly": [ + 359, + 961, + 439, + 961, + 439, + 990, + 359, + 990 + ], + "score": 0.9, + "latex": "\\operatorname { C o n v } _ { k }" + }, + { + "category_id": 13, + "poly": [ + 1022, + 1021, + 1076, + 1021, + 1076, + 1051, + 1022, + 1051 + ], + "score": 0.89, + "latex": "\\mathrm { F C } _ { \\mathrm { k } }" + }, + { + "category_id": 13, + "poly": [ + 907, + 1605, + 977, + 1605, + 977, + 1633, + 907, + 1633 + ], + "score": 0.89, + "latex": "\\lambda = 1" + }, + { + "category_id": 13, + "poly": [ + 552, + 1189, + 590, + 1189, + 590, + 1220, + 552, + 1220 + ], + "score": 0.89, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 429, + 1049, + 468, + 1049, + 468, + 1078, + 429, + 1078 + ], + "score": 0.89, + "latex": "\\mathcal { R } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 873, + 960, + 986, + 960, + 986, + 990, + 873, + 990 + ], + "score": 0.89, + "latex": "\\mathrm { F S C o n v } _ { k }" + }, + { + "category_id": 13, + "poly": [ + 353, + 991, + 372, + 991, + 372, + 1017, + 353, + 1017 + ], + "score": 0.81, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 772, + 961, + 792, + 961, + 792, + 987, + 772, + 987 + ], + "score": 0.81, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1072, + 1790, + 1118, + 1790, + 1118, + 1818, + 1072, + 1818 + ], + "score": 0.37, + "latex": "5 \\mathrm { x } 5" + }, + { + "category_id": 13, + "poly": [ + 879, + 1514, + 979, + 1514, + 979, + 1543, + 879, + 1543 + ], + "score": 0.34, + "latex": "1 4 0 \\mathrm { x } 1 4 0" + }, + { + "category_id": 13, + "poly": [ + 297, + 1544, + 371, + 1544, + 371, + 1573, + 297, + 1573 + ], + "score": 0.33, + "latex": "6 4 \\mathrm { x } 6 4" + }, + { + "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": [ + 296.0, + 1451.0, + 476.0, + 1451.0, + 476.0, + 1492.0, + 296.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1126.0, + 1405.0, + 1126.0, + 1405.0, + 1164.0, + 294.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1156.0, + 1278.0, + 1156.0, + 1278.0, + 1194.0, + 294.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1323.0, + 1156.0, + 1405.0, + 1156.0, + 1405.0, + 1194.0, + 1323.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1189.0, + 551.0, + 1189.0, + 551.0, + 1223.0, + 295.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 1189.0, + 1405.0, + 1189.0, + 1405.0, + 1223.0, + 591.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1220.0, + 1404.0, + 1220.0, + 1404.0, + 1254.0, + 295.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1249.0, + 1405.0, + 1249.0, + 1405.0, + 1284.0, + 295.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1281.0, + 1406.0, + 1281.0, + 1406.0, + 1316.0, + 295.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1312.0, + 457.0, + 1312.0, + 457.0, + 1341.0, + 293.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1512.0, + 878.0, + 1512.0, + 878.0, + 1548.0, + 294.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 1512.0, + 1405.0, + 1512.0, + 1405.0, + 1548.0, + 980.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 1544.0, + 1406.0, + 1544.0, + 1406.0, + 1576.0, + 372.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1572.0, + 1405.0, + 1572.0, + 1405.0, + 1610.0, + 292.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1603.0, + 583.0, + 1603.0, + 583.0, + 1639.0, + 293.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 1603.0, + 906.0, + 1603.0, + 906.0, + 1639.0, + 684.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 1603.0, + 1108.0, + 1603.0, + 1108.0, + 1639.0, + 978.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 1603.0, + 1204.0, + 1603.0, + 1204.0, + 1639.0, + 1192.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 958.0, + 358.0, + 958.0, + 358.0, + 991.0, + 296.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 958.0, + 771.0, + 958.0, + 771.0, + 991.0, + 440.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 958.0, + 872.0, + 958.0, + 872.0, + 991.0, + 793.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 958.0, + 1404.0, + 958.0, + 1404.0, + 991.0, + 987.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 987.0, + 352.0, + 987.0, + 352.0, + 1022.0, + 295.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 987.0, + 1405.0, + 987.0, + 1405.0, + 1022.0, + 373.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1015.0, + 1021.0, + 1015.0, + 1021.0, + 1057.0, + 292.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 1015.0, + 1406.0, + 1015.0, + 1406.0, + 1057.0, + 1077.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1046.0, + 428.0, + 1046.0, + 428.0, + 1086.0, + 291.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 1046.0, + 1406.0, + 1046.0, + 1406.0, + 1086.0, + 469.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1080.0, + 403.0, + 1080.0, + 403.0, + 1120.0, + 292.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1648.0, + 1024.0, + 1648.0, + 1024.0, + 1684.0, + 293.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 1648.0, + 1406.0, + 1648.0, + 1406.0, + 1684.0, + 1153.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1680.0, + 1097.0, + 1680.0, + 1097.0, + 1715.0, + 291.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 1680.0, + 1405.0, + 1680.0, + 1405.0, + 1715.0, + 1269.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1709.0, + 438.0, + 1709.0, + 438.0, + 1749.0, + 293.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 1709.0, + 1406.0, + 1709.0, + 1406.0, + 1749.0, + 499.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1743.0, + 1204.0, + 1743.0, + 1204.0, + 1776.0, + 295.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1352.0, + 1406.0, + 1352.0, + 1406.0, + 1393.0, + 293.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1388.0, + 665.0, + 1388.0, + 665.0, + 1423.0, + 293.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 226.0, + 607.0, + 226.0, + 607.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 226.0, + 1406.0, + 226.0, + 1406.0, + 266.0, + 775.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 259.0, + 772.0, + 259.0, + 772.0, + 295.0, + 294.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 741.0, + 741.0, + 741.0, + 741.0, + 780.0, + 294.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 565.0, + 543.0, + 565.0, + 543.0, + 604.0, + 295.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1833.0, + 542.0, + 1833.0, + 542.0, + 1870.0, + 295.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1784.0, + 1071.0, + 1784.0, + 1071.0, + 1825.0, + 294.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 1784.0, + 1354.0, + 1784.0, + 1354.0, + 1825.0, + 1119.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 355.0, + 540.0, + 355.0, + 540.0, + 388.0, + 296.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 303.0, + 1354.0, + 303.0, + 1354.0, + 344.0, + 294.0, + 344.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 694, + 1404, + 694, + 1404, + 850, + 297, + 850 + ], + "score": 0.975 + }, + { + "category_id": 8, + "poly": [ + 536, + 276, + 1159, + 276, + 1159, + 431, + 536, + 431 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 298, + 863, + 1402, + 863, + 1402, + 958, + 298, + 958 + ], + "score": 0.961 + }, + { + "category_id": 8, + "poly": [ + 639, + 507, + 1059, + 507, + 1059, + 665, + 639, + 665 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 299, + 463, + 737, + 463, + 737, + 495, + 299, + 495 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 298, + 230, + 540, + 230, + 540, + 261, + 298, + 261 + ], + "score": 0.923 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 815, + 74, + 815, + 105, + 298, + 105 + ], + "score": 0.909 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.844 + }, + { + "category_id": 14, + "poly": [ + 636, + 505, + 1063, + 505, + 1063, + 668, + 636, + 668 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } { z \\in \\mathcal { R } ^ { 6 4 } \\to \\mathrm { F C } _ { 5 1 2 } \\to \\mathrm { R e L U } } \\\\ { \\to \\mathrm { F C } _ { 5 1 2 } \\to \\mathrm { R e L U } } \\\\ { \\to \\mathrm { F C } _ { 5 1 2 } \\to \\mathrm { R e L U } } \\\\ { \\to \\mathrm { F C } _ { 5 1 2 } \\to \\mathrm { R e L U } \\to \\mathrm { F C } _ { 1 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1033, + 725, + 1394, + 725, + 1394, + 759, + 1033, + 759 + ], + "score": 0.92, + "latex": "D ^ { * } ( z ) = \\log p _ { Z } ( z ) - \\log q _ { Z } ( z )" + }, + { + "category_id": 13, + "poly": [ + 1240, + 862, + 1367, + 862, + 1367, + 893, + 1240, + 893 + ], + "score": 0.91, + "latex": "\\alpha = 1 0 ^ { - 4 }" + }, + { + "category_id": 13, + "poly": [ + 358, + 788, + 469, + 788, + 469, + 820, + 358, + 820 + ], + "score": 0.91, + "latex": "\\log p _ { Z } ( z )" + }, + { + "category_id": 13, + "poly": [ + 778, + 757, + 822, + 757, + 822, + 789, + 778, + 789 + ], + "score": 0.89, + "latex": "Q _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 685, + 757, + 723, + 757, + 723, + 787, + 685, + 787 + ], + "score": 0.89, + "latex": "P _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 902, + 818, + 945, + 818, + 945, + 850, + 902, + 850 + ], + "score": 0.89, + "latex": "Q _ { Z }" + }, + { + "category_id": 14, + "poly": [ + 533, + 273, + 1161, + 273, + 1161, + 435, + 533, + 435 + ], + "score": 0.88, + "latex": "\\begin{array} { r l } { z \\in \\mathcal { R } ^ { 6 4 } \\mathrm { F C } _ { 8 \\times 8 \\times 1 0 2 4 } } & { } \\\\ { \\mathrm { F S C o n v } _ { 5 1 2 } \\mathrm { B N } \\mathrm { R e L U } } \\\\ { \\mathrm { F S C o n v } _ { 2 5 6 } \\mathrm { B N } \\mathrm { R e L U } } & { } \\\\ { \\mathrm { F S C o n v } _ { 1 2 8 } \\mathrm { B N } \\mathrm { R e L U } \\mathrm { F S C o n v } _ { 1 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 373, + 761, + 409, + 761, + 409, + 788, + 373, + 788 + ], + "score": 0.84, + "latex": "p _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 464, + 761, + 497, + 761, + 497, + 788, + 464, + 788 + ], + "score": 0.84, + "latex": "q _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 1041, + 696, + 1076, + 696, + 1076, + 723, + 1041, + 723 + ], + "score": 0.27, + "latex": "\\mathrm { I V }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 818.0, + 72.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 692.0, + 1040.0, + 692.0, + 1040.0, + 729.0, + 295.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 692.0, + 1404.0, + 692.0, + 1404.0, + 729.0, + 1077.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 721.0, + 1032.0, + 721.0, + 1032.0, + 763.0, + 292.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 721.0, + 1404.0, + 721.0, + 1404.0, + 763.0, + 1395.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 749.0, + 372.0, + 749.0, + 372.0, + 797.0, + 291.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 749.0, + 463.0, + 749.0, + 463.0, + 797.0, + 410.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 749.0, + 684.0, + 749.0, + 684.0, + 797.0, + 498.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 749.0, + 777.0, + 749.0, + 777.0, + 797.0, + 724.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 749.0, + 1408.0, + 749.0, + 1408.0, + 797.0, + 823.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 785.0, + 357.0, + 785.0, + 357.0, + 823.0, + 294.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 785.0, + 1404.0, + 785.0, + 1404.0, + 823.0, + 470.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 819.0, + 901.0, + 819.0, + 901.0, + 852.0, + 296.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 819.0, + 1098.0, + 819.0, + 1098.0, + 852.0, + 946.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 861.0, + 1239.0, + 861.0, + 1239.0, + 900.0, + 292.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1368.0, + 861.0, + 1408.0, + 861.0, + 1408.0, + 900.0, + 1368.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 895.0, + 1406.0, + 895.0, + 1406.0, + 929.0, + 294.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 926.0, + 968.0, + 926.0, + 968.0, + 960.0, + 296.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 462.0, + 739.0, + 462.0, + 739.0, + 499.0, + 294.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 226.0, + 543.0, + 226.0, + 543.0, + 265.0, + 295.0, + 265.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/r1IRctqxg/r1IRctqxg.md b/parse/train/r1IRctqxg/r1IRctqxg.md new file mode 100644 index 0000000000000000000000000000000000000000..7d64915543cb8fbbc6f9cb50440617a4c022997e --- /dev/null +++ b/parse/train/r1IRctqxg/r1IRctqxg.md @@ -0,0 +1,256 @@ +# SAMPLE IMPORTANCE IN TRAINING DEEP NEURAL NETWORKS + +Tianxiang Gao, Vladimir Jojic Department of Computer Science University of North Carolina at Chapel Hill Chapel Hill, NC, 27599 , USA {tgao,vjojic}@cs.unc.edu + +# ABSTRACT + +The contribution of each sample during model training varies across training iterations and the model’s parameters. We define the concept of sample importance as the change in parameters induced by a sample. In this paper, we explored the sample importance in training deep neural networks using stochastic gradient descent. We found that “easy” samples – samples that are correctly and confidently classified at the end of the training – shape parameters closer to the output, while the “hard” samples impact parameters closer to the input to the network. Further, “easy” samples are relevant in the early training stages, and “hard” in the late training stage. Further, we show that constructing batches which contain samples of comparable difficulties tends to be a poor strategy compared to maintaining a mix of both hard and easy samples in all of the batches. Interestingly, this contradicts some of the results on curriculum learning which suggest that ordering training examples in terms of difficulty can lead to better performance. + +# 1 INTRODUCTION + +Sample importance is the sample’s contribution to the parameter change during training. In statistics, the concept “leverage” of a point is used (St Laurent & Cook (1992)) to measure the impact of a sample on the training of a model. In the context of SVM, the most important samples are the support vectors as they define the separating hyperplane. Understanding the importance of the samples can help us interpret trained models and structure training to speed up convergence and improve prediction accuracy. For example, Curriculum learning (CL) from Bengio et al. (2009) shows that training with easy samples first, then gradually transitioning to difficult samples can improve the learning. In CL, the “easiness” of a sample is predefined either manually or using an evaluation model. Self-paced learning (SPL) (Kumar et al. (2010)) shows that it is possible to learn from samples in order of easiness. In this framework, easiness is related to the prediction error and can be estimated from the model. However, easiness of a sample may not be sufficient to decide when it should be introduced to a learner. Maintaining diversity among the training samples can have a substantial effect on the training (Jiang et al. (2014)). + +In this work, we explore the sample importance in deep neural networks. Deep learning methods have been successfully applied in many tasks and routinely achieve better generalization error than classical shallow methods (LeCun et al. (2015)). One of the key characteristics of a deep network is its capacity to construct progressively more complex features throughout its layers (Lee et al. (2011)). An intuitive question arises: which samples contribute the most to the training of the different layer’s parameters? From literature Saxe et al. (2011), we know that even randomly generated filters can compute features that lead to good performance – presumably on easy samples. However, to learn hard samples correctly, the model may need to construct complex features, which require both more training time and refined filters from bottom layers. Hence, we hypothesized that the hard samples shape the bottom layers – closer to the input – and easy samples shape the top layers – closer to the output. + +Motivated by the above hypothesis, we analyzed the sample importance in a 3 layer ReLU network on two standard datasets. The results reveal several interesting facts about the sample importance in easy and hard samples: + +1. Easy and hard samples impact the parameters in different training stages. The biggest impact of easy samples on parameters are mostly during the early training stage, while the impact of hard samples become large in the late training stage. + +2. Easy and hard samples impact the parameters in different layers. Easy samples impact have larger impact on top layer parameters, while hard samples shape the bottom layer parameters. + +3. Mixing hard samples with easy samples in each batch helps training. We conducted batches with homogeneous or mixed “easiness”. We found that use of homogeneous batches hinders the training. Hence, it is preferable for network to see both easy and hard samples during all stages of training. + +Next, we are going to give the definition of sample importance in Section 2. The empirical analysis for sample importance in the deep neural network in two real datasets is discussed in Section 3. Extension about sample importance is showed in Section 4. + +# 2 SAMPLE IMPORTANCE + +In this section, we are going to introduce the terminology and provide a quantitative measurement of sample importance for a training procedure. + +# 2.1 SAMPLE WEIGHT + +In supervised learning, a model is trained by optimizing an objective over a set of observed training samples $\left( \mathbf { x } _ { i } , y _ { i } \right)$ . Let $f ( \mathbf { x } _ { i } , \pmb { \theta } )$ be the output of a model for parameter $\pmb { \theta }$ . The training objective can be written as: + +$$ +\sum _ { i = 1 } ^ { n } L ( y _ { i } , f ( \mathbf { x } _ { i } , \pmb { \theta } ) ) + R ( \pmb { \theta } ) , +$$ + +where $L ( y _ { i } , f ( \mathbf { x } _ { i } , \pmb { \theta } ) )$ is the loss on sample $i$ , and $R ( \pmb \theta )$ is the regularization on the parameters. In order to highlight contribution of each sample, we can introduce sample specific weights $v _ { i } \in [ 0 , 1 ]$ which scale sample’s contribution to the loss. Hence, the objective in (1) can be rewritten as: + +$$ +\sum _ { i = 1 } ^ { n } v _ { i } L ( y _ { i } , f ( \mathbf { x } _ { i } , \pmb { \theta } ) ) + R ( \pmb { \theta } ) , +$$ + +We define the weight $v _ { i }$ as the sample weight. Similar definitions on $v _ { i }$ has been proposed in Self-paced learning (SPL) Kumar et al. (2010). + +In Stochastic Gradient descend (SGD) methods, parameters $\pmb \theta$ are updated with a certain step size $\eta$ in each iteration with regard to a set of training samples. If we allow different sample weights in different iterations, a single update can be written as: + +$$ +\pmb { \theta } ^ { t + 1 } = \pmb { \theta } ^ { t } - \eta \sum _ { i = 1 } ^ { n } v _ { i } ^ { t } \mathbf { g } _ { i } ^ { t } - \eta \mathbf { r } ^ { t } , +$$ + +where $\theta ^ { t }$ is the parameter vector at epoch $t$ , $\begin{array} { r } { \mathbf { g } _ { i } ^ { t } = \frac { \partial } { \partial \pmb { \theta } ^ { t } } L _ { i } ( y _ { i } , f ( \mathbf { x } _ { i } , \pmb { \theta } ^ { t } ) ) , \mathbf { r } ^ { t } = \frac { \partial } { \partial \pmb { \theta } ^ { t } } R ( \pmb { \theta } ^ { t } ) } \end{array}$ , and $\boldsymbol { v } _ { i } ^ { t }$ is the weight of ith sample at iteration $t$ . + +# 2.2 SAMPLE IMPORTANCE + +If we change the weight of a sample $i$ at iteration $t$ , how would such change impact the parameter training in that iteration? We can answer this question by calculating the first order derivative of parameter change $\Delta \pmb { \theta } ^ { t } = \pmb { \theta } ^ { t + 1 } - \pmb { \theta } ^ { t }$ with regard to sample weight $\boldsymbol { v } _ { i } ^ { t }$ : + +$$ +{ \boldsymbol { \phi } } _ { i } ^ { t } = { \frac { \partial } { \partial v _ { i } ^ { t } } } \Delta { \pmb { \theta } } ^ { t } = - \eta \mathbf { g } _ { i } ^ { t } . +$$ + +We call $\boldsymbol { \phi } _ { i } ^ { t }$ the parameter affectibility by ith sample at iteration $t$ . $\boldsymbol { \phi } _ { i } ^ { t }$ is a vector consists of parameter affectibility from all parameters in the network. Specifically, $\boldsymbol { \phi } _ { i , j } ^ { t }$ is the parameter affectibility for $j$ th parameter in the network. $\boldsymbol { \phi } _ { i } ^ { t }$ reflects the relationship between parameter change and different samples. + +Typical deep networks contains millions of parameters. Hence, we are going to focus on groups of parameters of interests. We define ith sample’s importance for parameters of $d \mathrm { t h }$ layer of as: + +$$ +\beta _ { i , d } ^ { t } = \sum _ { j \in \mathcal { Q } _ { d } } ( \phi _ { i , j } ^ { t } ) ^ { 2 } , +$$ + +where $\mathcal { Q } _ { d }$ is a set consists of the indexes of all parameters in layer $d$ . Hence, sample’s importance for all the parameters in the model is: + +$$ +\alpha _ { i } ^ { t } = \sum _ { j } ( \phi _ { i , j } ^ { t } ) ^ { 2 } , +$$ + +Obviously, we have $\begin{array} { r } { \alpha _ { i } ^ { t } = \sum _ { d = 1 } ^ { D } \beta _ { i , d } ^ { t } } \end{array}$ + +The sum of sample’s importance across all iterations is defined as overall importance of a sample: + +$$ +\tau _ { i } = \sum _ { t } \alpha _ { i } ^ { t } +$$ + +In general, for each sample $i$ , computing $\beta _ { i , d } ^ { t }$ allows us to decompose its influence in the model’s training across training stages and different layers. + +We note that the sample importance is a high-level measurement of the samples influence on parameters at each iteration of the update. This quantity is not an accurate measurement of the relationship between a sample and final trained model. Refinements of this concept are discussed in Section 4. + +# 3 EMPIRICAL ANALYSIS OF SAMPLE IMPORTANCE + +We are going to explore the samples’ importance for different layers at different epoch through a series of empirical experiments on two standard datasets. + +# 3.1 EXPERIMENT SETUP + +Dataset All the analysis are performed on two standard datasets: MNIST 1 (LeCun et al. (1998)), a benchmark dataset that contains handwritten digit images. Each sample is a $2 8 \times 2 8$ image from 10 classes. We used 50000 samples for training and 10000 samples for testing. CIFAR-10 2 (Krizhevsky & Hinton (2009)), a dataset contains $3 2 \times 3 2$ tiny color images from 10 classes. Each sample has 3072 features. We used 50000 samples for training and 10000 samples for testing. + +Architecture We used a multilayer feed forward neural network with 3 hidden layers of 512 hidden nodes with rectified linear units (ReLU) activation function, a linear output layer, and a softmax layer on top for classification. The weights in each hidden layer are initialized according to Glorot & Bengio (2010). For hyper-parameters, we used learning rate of 0.1, batch size of 100, 50 total epochs, and weight-decay of $1 e - 5$ . No momentum or learning decay was used. All the code are based on a common deep learning package Theano from Bergstra et al. (2010); Bastien et al. (2012). + +# 3.2 SAMPLE IMPORTANCE IS STABLE WITH RESPECT TO DIFFERENT INITIALIZATIONS + +Firstly, we want to explore whether the sample importance is stable under different initializations. We used three different random seeds to initialize the network parameters and calculated the sample importance every five epochs. We computed the Spearman’s rank correlation between sample importance to the model, $\alpha _ { i } ^ { t }$ , in each pair of initializations. This correlation remains high in all epochs, above 0.9, as shown in Figure 1. This indicates that the sample importance is relatively stable to initialization of the network. Hence, all the following analysis are based on the results from initialization seed 1. (Details of training and test error for the chosen model can be viewed in Appendix Figure 9). + +![](images/0a3fc09ab1365aa5c2ccb287411ae343403bce7f9654cd12222a19101f92d457.jpg) +Figure 1: Does initialization affect sample’s importance? Sample importance is preserved between initializations of the network. For each epoch, and a pair of initializations, we computed Spearman Correlation of samples’ importance. Across all epochs, the correlation is of greater than 0.9 in both MNIST and CIFAR-10. Early epochs show higher consistency between ranks of sample importance across different initializations. + +# 3.3 DECOMPOSITION OF SAMPLE IMPORTANCE + +To better understand and visualize the sample importance, we firstly calculate the overall sample importance at each epoch as $\begin{array} { r } { A ^ { t } = \sum _ { i = 1 } ^ { n } \dot { \alpha _ { i } ^ { t } } } \end{array}$ . Similarly, the overall sample importance to layer $d$ is $\begin{array} { r } { B _ { d } ^ { t } = \sum _ { i = 1 } ^ { n } \beta _ { i , d } ^ { t } } \end{array}$ . We show the overall sample importance and its decomposition in layers for two datasets in Figure 2. Firstly, we found that even with a fixed learning rate, the overall sample importance is different under different epochs. Output layer always has the largest average sample importance per parameter, and its contribution reaches the maximum in the early training stage and then drops. Each layer contributes differently to the total sample importance. In both MNIST and CIFAR-10, the 2nd layer contributes more than the 3rd layer. In CIFAR-10, the 1st layer’s provides largest contribution the total sample importance, as it contains much more parameters than other layers. Interestingly, all classes do not provide the same amount of sample importance. + +We found that most samples have small sample importance (Appendix Figure 10). To visualize the contribution of different samples, we split the samples based on their total importance into three groups: $10 \%$ , top $10 \%$ – top $20 \%$ most important samples, and other $80 \%$ samples. We show the decomposition of importance contribution in each layer in Figure 3. In MNIST, the top $10 \%$ samples contribute almost all the sample importance. In CIFAR-10, most important samples contribute more in lower layers rather than output layer. This result indicates that top $20 \%$ most important samples contribute to the majority of the sample importance. + +# 3.4 SAMPLE IMPORTANCE AND NEGATIVE LOG-LIKELIHOOD + +Negative log likelihood (NLL) is the loss metric we used for training objective. It has been used to measure the “easiness” of a sample in Curriculum learning Bengio et al. (2009) and Self-paced learning Kumar et al. (2010). Intuitively, the samples with large NLL should also have large sample importance (SI). However, in our experiment, we found that this is not always the case. In Figure 4, we found that 1) NLL and SI become more correlated as training goes on. However, 2) NLL is not predictive of the SI. There are many points with high NLL but small SI, and otherwise. + +![](images/7b01f6ee56ad410d554315b0e829197fb194fba35538582c41bb8eb261a1288f.jpg) +Figure 2: Which classes and at which stage shape the network’s layer’s parameters? Parameters of different layers are learned at different times. Parameters in Output layers are learned mostly during the early training stage. In the lower layers, parameters are learned predominantly during the middle and late training stage. All classes do not contribute equally to training of the model. + +![](images/c65928096336387e31f6986d8a5c1157a406686b28f9f2fb2cc62ef0c29e1cd8.jpg) +Figure 3: Are all data samples equally important for all layers? The top $20 \%$ most important samples contributes to the majority of parameter learning, especially in lower layers. “L1” to “L3” stands for Layer 1 to Layer 3. “Out” stands for output layer. + +# 3.5 CLUSTERING SAMPLES BASED ON SAMPLE IMPORTANCE + +To better visualize the importance of different samples, we provide three representative clusters of samples for each dataset. In MNIST, we clustered all digit “5” samples into 20 clusters based on their epoch-specific, layer-specific sample importance. In CIFAR-10, we clustered all “horse” samples into 30 clusters using the same features as MNIST. Kmeans algorithm is used for clustering. + +![](images/366cabd6209561647cb6d00ed6cdc1387b95f239c1a5c25a3d36e0ae64232719.jpg) +Figure 4: Is Sample Importance correlated with Negative log-likelihood of a sample? Sample importance is positively correlated with negative log-likelihood. As training goes on, their correlation becomes higher. However, there remain many samples with high NLL and low SI, and vice versa. Left column: correlation between sample importance and negative log likelihood for all samples across epochs. Right column: scatter plot for NLL in the last epoch and all epoch sample importance for each sample. + +MNIST In Figure 5, we showed 3 example clusters on digit $\cdot 5 ^ { , }$ . In the cluster of easy samples, where NLL converges very fast, most of the sample importance is concentrated in the first few epochs in output layer parameters. The cluster of medium samples has a slow NLL convergence compared to the easy cluster. The biggest impact is in middle training stage and more towards bottom layer parameters. Hard samples hardly converge even during the late stage of training. As training goes on, the sample importance for the bottom layer parameters become larger. + +CIFAR-10 In Figure 6, we showed 3 examples clusters on class “horse”. We observed very similar sample importance changing pattern as for the MNIST examples for easy, medium and hard clusters. Comparing to MNIST, all three clusters in CIFAR-10 have a very large impact on the parameters in the bottom layer. We note that the CIFAR-10 has almost 4 times larger number of parameters $( 3 0 7 5 \times 5 1 2 \approx 1 5 7 4 k )$ in the first layer than MNIST $7 8 5 \times 5 1 2 \approx 4 0 1 k$ ). + +# 3.6 BATCH ORDER AND SAMPLE IMPORTANCE + +With the observations from empirical analysis on sample importance, we know that time – iteration – and place – layer – of sample’s impact varies according to its “easiness” . We wanted to know whether constructing batches based on the sample importance or negative log likelihood would make a difference in training. Hence, we designed an experiment to explore how the different construction of batches influence the training. We note that the information used to structure the batches (negative log-likelihood and sample importance) – was obtained from a full training run. + +We split all 50, 000 samples into $b = 5 0 0$ batch subsets $\{ B _ { 1 } , B _ { 2 } , \ldots , B _ { b } \}$ . Each batch has batch size $| B _ { i } | = 1 0 0$ . In our experiment, each training sample must be in exactly one batch. There is no intersection between batches. + +During training, in each epoch, we update the parameters with each batch in order $1 , 2 , \ldots , b$ iteratively. + +We used seven different batch construction methods in this experiment: + +![](images/beca3d0da8b2003b41df3f1588b013088625e0966c9a1ccd126e7c77463862f6.jpg) +Figure 5: When and where does an MNIST sample make the biggest impact? For “easy” samples, their biggest impact is on output layers and during the early training stage. As sample’s difficulty increases (medium and hard), the biggest impact moves to lower layers and in the late training stage. Each row is a sample cluster. In each row, from left to right: example images in the cluster; average sample importance and layer-wise decomposition across epochs; A boxplot of average training negative log likelihood across epochs. + +1. Rand: Randomly constructed batch. All $5 0 \mathrm { k }$ samples are randomly split into $b$ batches before training. The batches and orders stay fixed during training. +2. NLO: Negative Log-likelihood Order. We sort all the samples based on their final NLL from low to high. The batches are constructed based on the sorted samples. First 100 samples with least NLL are in $\boldsymbol { B } _ { 1 }$ , 101 to 200 samples are in $B _ { 2 }$ , and so on. Hence, during training, the batches with small NLL will be trained first. +3. RNLO Reverse-Negative Log-likelihood Order. We construct the batches same as NLO. During training, we update the batches in reverse order $B _ { b } , B _ { b - 1 } , \ldots , B _ { 1 }$ . Hence, the batches with large NLL will be trained first. +4. NLM Negative Log-likelihood Mixed. We sort all the samples based on their final NLL from low to high. Next, for each sample $i$ in the sorted sequence, we put that sample into batch $j = ( i { \bmod { b } } ) + 1$ . This ordering constructs batches out of samples with diverse levels of NLL. +5. SIO: Sample Importance Order. Similar to NLO, except that we sort all the samples based on their sum sample importance over all epochs from low to high. Hence, batches with small sample importance will be trained first. +6. RSIO Reverse-Sample Importance Order. We construct the batches same as SIO. During training, we update the batches in reverse order $B _ { b } , B _ { b - 1 } , \ldots , B _ { 1 }$ . Hence, during training, the batches with large sample importance will be trained first. + +![](images/06ecd2bfd33d18b39d48776d6ab4984ee42b58766a17f2e0d0d3d92cd9424928.jpg) +Figure 6: When and where does a CIFAR-10 sample make the biggest impact? For “easy” samples, their biggest impact is on the first layer during the early training stage. As samples’s difficulty increases (medium and hard), the biggest impact moves to lower layers and to late training stage. Each row is a sample cluster. In each row, from left to right: example images in the cluster; average sample importance and layer-wise decomposition across epochs; A boxplot of average training negative log likelihood across epochs. + +7. SIM Sample Important Mixed. Similar to NLM, but we sort the samples based on overall sample importance. Thus, batches contain samples with divers sample importance. + +We performed five different runs (with different random initializations) on MNIST and CIFAR-10. The result is shown in Figure 7. From the result, we found that: 1) In both MNIST and CIFAR-10, Rand, SIS, and NLS have the lowest test error compared to all other methods. This indicates that diverse batches are helpful for training. 2) NLO and SIO got the worst performance in CIFAR10. Their training error even goes up after the early stage. RNLO and RSIO have same batch constructions as NLO and SIO, but their performances are drastically different. This indicates that the order of batches during training is important. Further, training on easy samples first and hard later seems to be counter-productive. + +To better understand the impact of different batch construction, we performed the principle component analysis on the learned parameters in each epoch (Figure 8). In MNIST, the impact of batch construction is not very significant. In CIFAR-10, batch construction and even the order of batch training do have a large impact on the training. + +Our experiment result shows a different conclusion to Curriculum Learning and Self-paced learning, where easy samples are trained on before introducing hard samples. We found that constructing and ordering the batches – hard to easy and easy to hard – seems to hinder the performance of learning. Having hard samples mixed in with the easy ones in each batch helps the training. + +Also, the results show that we want to learn from the hard samples in early epochs and “see” hard samples more frequently, even if their major impact on parameters is during the late stage. As hard examples are few compared to easy samples and hard examples need a longer time to train, we do want to mix the hard samples into each batch to start learning from those samples early and learn longer. + +![](images/42716aa645f0c758ca13ad616d456e30f3c7f969dca4da6b441665f267b2d69c.jpg) +Figure 7: Does organizing batches by “easiness” affect training? When batches are constructed with homogeneous easiness, the training performance become worse. Batches with mixed easiness have lower test error. The solid color line represents the mean over 5 runs. The error bar indicates the standard error over 5 runs. + +![](images/2356039eb64f765e3572f2159baff9807ba4501ba29d7c5578292085327cf2f9.jpg) +Figure 8: Do parameters converge differently under different batch construction? In MNIST, the converging path for all batch constructions are very similar. In CIFAR-10, batch construction with mixed easiness (Rand, NLM, SIM) has a very different converging path with all other methods. Notably, we found that even with same batch constructions but just reversed order (NLO vs. RNLO, SIO vs. RSIO), the parameters converge to different points. Each circle dotted line shows the path of the first two principle components of all parameters in different epochs. Note that in CIFAR-10, the paths of Rand, NLS and SIS are very similar and they are overlapped in the plot. + +# 4 EXTENSIONS OF SAMPLE IMPORTANCE + +We calculated the sample importance in each iteration in Stochastic Gradient Descent. However, such quantity only reflects the impact on the change in parameters within each iteration. The influence of a sample at a particular iteration can be accumulated through updates and impact the final model. Here, we are going to derive the exact calculation of the sample’s influence to the model. We rewrite the Objective (2) in Section 2 here: + +$$ +\operatorname* { m i n } _ { \pmb { \theta } } \sum _ { i = 1 } ^ { n } v _ { i } L ( y _ { i } , f ( \mathbf { x } _ { i } , \pmb { \theta } ) ) + R ( \pmb { \theta } ) , +$$ + +Here, we deem the sample weight $v _ { i }$ is fixed across all iterations. The update rule for stochastic gradient descent in each iteration is: + +$$ +\pmb { \theta } ^ { t + 1 } = \pmb { \theta } ^ { t } - \eta \sum _ { i } v _ { i } \mathbf { g } _ { i } ^ { t } - \eta \mathbf { r } _ { i } ^ { t } +$$ + +The derivative of $\pmb { \theta } ^ { t + 1 }$ with respect to sample weight $v _ { i }$ is: + +$$ +\begin{array} { r c l } { { \displaystyle \frac { \partial } { \partial v _ { i } } \pmb { \theta } ^ { t + 1 } } } & { { = } } & { { \displaystyle \frac { \partial } { \partial v _ { i } } \pmb { \theta } ^ { t } - \eta \mathbf { g } _ { i } ^ { t } - \eta H ( \pmb { \theta } ^ { t } ) \frac { \partial } { \partial v _ { i } } \pmb { \theta } ^ { t } } } \\ { { \displaystyle \frac { \partial } { \partial v _ { i } } \pmb { \theta } ^ { 1 } } } & { { = } } & { { \displaystyle - \eta \mathbf { g } _ { i } ^ { 0 } , } } \end{array} +$$ + +where $H ( \pmb \theta ^ { t } )$ is the Hessian matrix of the objective in (2) with regard to all parameters in iteration $t$ . If we iterate the updates until convergence, then we can assume that $\theta ^ { T }$ is a fix-point, $\pmb { \theta } ^ { \ast } = \pmb { \theta } ^ { T + 1 } =$ $\theta ^ { T }$ , and we obtain: + +$$ +\frac { \partial } { \partial v _ { i } } \pmb { \theta } ^ { T + 1 } - \frac { \partial } { \partial v _ { i } } \pmb { \theta } ^ { T } = - \eta \mathbf { g } _ { i } ^ { t } - \eta H ( \pmb { \theta } ^ { * } ) \frac { \partial } { \partial v _ { i } } \pmb { \theta } ^ { * } +$$ + +Hence, the derivative of parameters in the final model with regard to a sample weight is: + +$$ +\frac { \partial } { \partial v _ { i } } \pmb { \theta } ^ { * } = - H ( \pmb { \theta } ^ { * } ) ^ { - 1 } \mathbf { g } _ { i } ^ { T } +$$ + +Equation (4) indicates that we can calculate the sample specific impact on final trained model by using the parameters learned at the convergence point. In deep learning methods, due to early stopping, fix point might not be achieved, and Equation (4) might not be an accurate. + +For any target quantity $\boldsymbol { \mathcal { T } } ( \boldsymbol { \theta } ^ { * } )$ that depends on the final trained parameter $\pmb { \theta } ^ { * }$ , we can calculate the impact of a particular sample on that target as: + +$$ +\frac { \partial } { \partial v _ { i } } T ( \pmb { \theta } ^ { * } ) = \frac { \partial } { \partial \pmb { \theta } ^ { * } } T ( \pmb { \theta } ^ { * } ) \frac { \partial } { \partial v _ { i } } \pmb { \theta } ^ { * } +$$ + +For example, if we are interested in the sum of predictions on a set of samples ${ \mathcal { T } } ( \theta ^ { * } ) ~ =$ $\textstyle \sum _ { i \in { \mathcal { S } } _ { c } } f ( \mathbf { x } _ { i } , { \pmb \theta } ^ { t } )$ , we can use Equation (5) to calculate the derivative: + +$$ +\begin{array} { r c l } { \displaystyle \frac { \partial } { \partial v _ { i } } \mathcal { T } ( \pmb { \theta } ^ { * } ) } & { = } & { \displaystyle \sum _ { i \in \mathcal { S } _ { c } } \frac { \partial } { \partial \pmb { \theta } ^ { * } } f ( \mathbf { x } _ { i } , \pmb { \theta } ^ { t } ) \frac { \partial } { \partial v _ { i } } \pmb { \theta } ^ { * } } \end{array} +$$ + +We note evaluating the exact impact of a sample, as shown above, is computationally cumbersome for all but the simplest models. + +# 5 DISCUSSION + +Samples’ impact on the deep network’s parameters vary across stages of training and network’s layers. In our work, we found that easy samples predominantly shape parameters the top layers at the early training stages, while hard samples predominantly shape the parameters of the bottom layers at the late training stage. Our experiments show that it is important to mix hard samples into different batches rather than keep them together in the same batch and away from other examples. + +There are many future extensions to the current work. Firstly, we want to expand our sample importance analysis to different deep learning structures, like Convolution Neural Network and Recurrent Neural Networks. Secondly, we want to use the sample importance as a guidance to extract a minimal subset of samples that are sufficient to achieve performance comparable to a network trained on the full dataset. + +# REFERENCES + +Fred´ eric Bastien, Pascal Lamblin, Razvan Pascanu, James Bergstra, Ian J. Goodfellow, Arnaud ´ Bergeron, Nicolas Bouchard, and Yoshua Bengio. Theano: new features and speed improvements. Deep Learning and Unsupervised Feature Learning NIPS 2012 Workshop, 2012. + +Yoshua Bengio, Jer´ ome Louradour, Ronan Collobert, and Jason Weston. Curriculum learning. In ˆ Proceedings of the 26th annual international conference on machine learning, pp. 41–48. ACM, 2009. + +James Bergstra, Olivier Breuleux, Fred´ eric Bastien, Pascal Lamblin, Razvan Pascanu, Guillaume ´ Desjardins, Joseph Turian, David Warde-Farley, and Yoshua Bengio. Theano: a CPU and GPU math expression compiler. In Proceedings of the Python for Scientific Computing Conference (SciPy), June 2010. Oral Presentation. + +Xavier Glorot and Yoshua Bengio. Understanding the difficulty of training deep feedforward neural networks. In International Conference on Artificial Intelligence and Statistics, pp. 249–256, 2010. + +Lu Jiang, Deyu Meng, Shoou-I Yu, Zhenzhong Lan, Shiguang Shan, and Alexander Hauptmann. Self-paced learning with diversity. In Advances in Neural Information Processing Systems, pp. 2078–2086, 2014. + +Alex Krizhevsky and Geoffrey Hinton. Learning multiple layers of features from tiny images, 2009. + +M Pawan Kumar, Benjamin Packer, and Daphne Koller. Self-paced learning for latent variable models. In Advances in Neural Information Processing Systems, pp. 1189–1197, 2010. + +Yann LeCun, Corinna Cortes, and Christopher JC Burges. The MNIST database of handwritten digits, 1998. + +Yann LeCun, Yoshua Bengio, and Geoffrey Hinton. Deep learning. Nature, 521(7553):436–444, 2015. + +Honglak Lee, Roger Grosse, Rajesh Ranganath, and A. Y. Ng. Unsupervised learning of hierarchical representations with convolutional deep belief networks. Communications of the ACM, 54(10): 95–103, 2011. + +Andrew Saxe, Pang W Koh, Zhenghao Chen, Maneesh Bhand, Bipin Suresh, and Andrew Y Ng. On random weights and unsupervised feature learning. In Proceedings of the 28th international conference on machine learning (ICML-11), pp. 1089–1096, 2011. + +Roy T St Laurent and R Dennis Cook. Leverage and superleverage in nonlinear regression. Journal of the American Statistical Association, 87(420):985–990, 1992. + +# APPENDIX + +![](images/b50b1bc5189d4cb3fa5ad2950a2e80b6a0c2b3a70f01fab8b5c6bf2838fbfbfa.jpg) +Figure 9: The training and test error on MNIST (first row) and CIFAR-10 (second row). The left column showed the average class-specific negative log likelihood. + +![](images/f8db2eb88900f5393079c3638df2a7dc58b9a63367a73c5ed63a70e9013e6e1f.jpg) +Figure 10: Histogram of total sample importance. \ No newline at end of file diff --git a/parse/train/r1IRctqxg/r1IRctqxg_content_list.json b/parse/train/r1IRctqxg/r1IRctqxg_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..87f4138105697bd3fc8b0dc016f96dcb24180990 --- /dev/null +++ b/parse/train/r1IRctqxg/r1IRctqxg_content_list.json @@ -0,0 +1,1286 @@ +[ + { + "type": "text", + "text": "SAMPLE IMPORTANCE IN TRAINING DEEP NEURAL NETWORKS ", + "text_level": 1, + "bbox": [ + 176, + 98, + 823, + 145 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Tianxiang Gao, Vladimir Jojic Department of Computer Science University of North Carolina at Chapel Hill Chapel Hill, NC, 27599 , USA {tgao,vjojic}@cs.unc.edu ", + "bbox": [ + 184, + 170, + 470, + 241 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 276, + 544, + 291 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "The contribution of each sample during model training varies across training iterations and the model’s parameters. We define the concept of sample importance as the change in parameters induced by a sample. In this paper, we explored the sample importance in training deep neural networks using stochastic gradient descent. We found that “easy” samples – samples that are correctly and confidently classified at the end of the training – shape parameters closer to the output, while the “hard” samples impact parameters closer to the input to the network. Further, “easy” samples are relevant in the early training stages, and “hard” in the late training stage. Further, we show that constructing batches which contain samples of comparable difficulties tends to be a poor strategy compared to maintaining a mix of both hard and easy samples in all of the batches. Interestingly, this contradicts some of the results on curriculum learning which suggest that ordering training examples in terms of difficulty can lead to better performance. ", + "bbox": [ + 233, + 316, + 764, + 497 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 544, + 336, + 560 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Sample importance is the sample’s contribution to the parameter change during training. In statistics, the concept “leverage” of a point is used (St Laurent & Cook (1992)) to measure the impact of a sample on the training of a model. In the context of SVM, the most important samples are the support vectors as they define the separating hyperplane. Understanding the importance of the samples can help us interpret trained models and structure training to speed up convergence and improve prediction accuracy. For example, Curriculum learning (CL) from Bengio et al. (2009) shows that training with easy samples first, then gradually transitioning to difficult samples can improve the learning. In CL, the “easiness” of a sample is predefined either manually or using an evaluation model. Self-paced learning (SPL) (Kumar et al. (2010)) shows that it is possible to learn from samples in order of easiness. In this framework, easiness is related to the prediction error and can be estimated from the model. However, easiness of a sample may not be sufficient to decide when it should be introduced to a learner. Maintaining diversity among the training samples can have a substantial effect on the training (Jiang et al. (2014)). ", + "bbox": [ + 174, + 583, + 825, + 763 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In this work, we explore the sample importance in deep neural networks. Deep learning methods have been successfully applied in many tasks and routinely achieve better generalization error than classical shallow methods (LeCun et al. (2015)). One of the key characteristics of a deep network is its capacity to construct progressively more complex features throughout its layers (Lee et al. (2011)). An intuitive question arises: which samples contribute the most to the training of the different layer’s parameters? From literature Saxe et al. (2011), we know that even randomly generated filters can compute features that lead to good performance – presumably on easy samples. However, to learn hard samples correctly, the model may need to construct complex features, which require both more training time and refined filters from bottom layers. Hence, we hypothesized that the hard samples shape the bottom layers – closer to the input – and easy samples shape the top layers – closer to the output. ", + "bbox": [ + 174, + 771, + 825, + 924 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Motivated by the above hypothesis, we analyzed the sample importance in a 3 layer ReLU network on two standard datasets. The results reveal several interesting facts about the sample importance in easy and hard samples: ", + "bbox": [ + 174, + 103, + 823, + 146 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "1. Easy and hard samples impact the parameters in different training stages. The biggest impact of easy samples on parameters are mostly during the early training stage, while the impact of hard samples become large in the late training stage. ", + "bbox": [ + 174, + 152, + 821, + 195 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2. Easy and hard samples impact the parameters in different layers. Easy samples impact have larger impact on top layer parameters, while hard samples shape the bottom layer parameters. ", + "bbox": [ + 171, + 202, + 823, + 231 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "3. Mixing hard samples with easy samples in each batch helps training. We conducted batches with homogeneous or mixed “easiness”. We found that use of homogeneous batches hinders the training. Hence, it is preferable for network to see both easy and hard samples during all stages of training. ", + "bbox": [ + 174, + 236, + 825, + 292 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Next, we are going to give the definition of sample importance in Section 2. The empirical analysis for sample importance in the deep neural network in two real datasets is discussed in Section 3. Extension about sample importance is showed in Section 4. ", + "bbox": [ + 174, + 299, + 825, + 342 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 SAMPLE IMPORTANCE ", + "text_level": 1, + "bbox": [ + 174, + 362, + 390, + 378 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this section, we are going to introduce the terminology and provide a quantitative measurement of sample importance for a training procedure. ", + "bbox": [ + 173, + 393, + 823, + 422 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 SAMPLE WEIGHT ", + "text_level": 1, + "bbox": [ + 174, + 439, + 336, + 454 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In supervised learning, a model is trained by optimizing an objective over a set of observed training samples $\\left( \\mathbf { x } _ { i } , y _ { i } \\right)$ . Let $f ( \\mathbf { x } _ { i } , \\pmb { \\theta } )$ be the output of a model for parameter $\\pmb { \\theta }$ . The training objective can be written as: ", + "bbox": [ + 174, + 464, + 825, + 506 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/6c9700eb2b2cae7d3282a001c5cf3d7cfe57b076643c802dab9b5964942bf55a.jpg", + "text": "$$\n\\sum _ { i = 1 } ^ { n } L ( y _ { i } , f ( \\mathbf { x } _ { i } , \\pmb { \\theta } ) ) + R ( \\pmb { \\theta } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 401, + 502, + 593, + 544 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "where $L ( y _ { i } , f ( \\mathbf { x } _ { i } , \\pmb { \\theta } ) )$ is the loss on sample $i$ , and $R ( \\pmb \\theta )$ is the regularization on the parameters. In order to highlight contribution of each sample, we can introduce sample specific weights $v _ { i } \\in [ 0 , 1 ]$ which scale sample’s contribution to the loss. Hence, the objective in (1) can be rewritten as: ", + "bbox": [ + 174, + 546, + 825, + 588 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/908eabf6f381664fd44fceefb840a8d6b32a49e06bd6bb8d0623fbfe011e5f72.jpg", + "text": "$$\n\\sum _ { i = 1 } ^ { n } v _ { i } L ( y _ { i } , f ( \\mathbf { x } _ { i } , \\pmb { \\theta } ) ) + R ( \\pmb { \\theta } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 395, + 594, + 599, + 636 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We define the weight $v _ { i }$ as the sample weight. Similar definitions on $v _ { i }$ has been proposed in Self-paced learning (SPL) Kumar et al. (2010). ", + "bbox": [ + 173, + 640, + 823, + 670 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In Stochastic Gradient descend (SGD) methods, parameters $\\pmb \\theta$ are updated with a certain step size $\\eta$ in each iteration with regard to a set of training samples. If we allow different sample weights in different iterations, a single update can be written as: ", + "bbox": [ + 173, + 676, + 825, + 718 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/f911e47349428d3009a00bd32a2c526871c2ec2abfcf626fe3b2210dd57be4e3.jpg", + "text": "$$\n\\pmb { \\theta } ^ { t + 1 } = \\pmb { \\theta } ^ { t } - \\eta \\sum _ { i = 1 } ^ { n } v _ { i } ^ { t } \\mathbf { g } _ { i } ^ { t } - \\eta \\mathbf { r } ^ { t } ,\n$$", + "text_format": "latex", + "bbox": [ + 395, + 723, + 601, + 765 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "where $\\theta ^ { t }$ is the parameter vector at epoch $t$ , $\\begin{array} { r } { \\mathbf { g } _ { i } ^ { t } = \\frac { \\partial } { \\partial \\pmb { \\theta } ^ { t } } L _ { i } ( y _ { i } , f ( \\mathbf { x } _ { i } , \\pmb { \\theta } ^ { t } ) ) , \\mathbf { r } ^ { t } = \\frac { \\partial } { \\partial \\pmb { \\theta } ^ { t } } R ( \\pmb { \\theta } ^ { t } ) } \\end{array}$ , and $\\boldsymbol { v } _ { i } ^ { t }$ is the weight of ith sample at iteration $t$ . ", + "bbox": [ + 174, + 772, + 825, + 801 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.2 SAMPLE IMPORTANCE ", + "text_level": 1, + "bbox": [ + 174, + 818, + 369, + 833 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "If we change the weight of a sample $i$ at iteration $t$ , how would such change impact the parameter training in that iteration? We can answer this question by calculating the first order derivative of parameter change $\\Delta \\pmb { \\theta } ^ { t } = \\pmb { \\theta } ^ { t + 1 } - \\pmb { \\theta } ^ { t }$ with regard to sample weight $\\boldsymbol { v } _ { i } ^ { t }$ : ", + "bbox": [ + 174, + 844, + 825, + 888 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/78153153295e27c983546c99d6faeb9380990239d25380c67002d86e081ab9d0.jpg", + "text": "$$\n{ \\boldsymbol { \\phi } } _ { i } ^ { t } = { \\frac { \\partial } { \\partial v _ { i } ^ { t } } } \\Delta { \\pmb { \\theta } } ^ { t } = - \\eta \\mathbf { g } _ { i } ^ { t } .\n$$", + "text_format": "latex", + "bbox": [ + 418, + 895, + 580, + 928 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We call $\\boldsymbol { \\phi } _ { i } ^ { t }$ the parameter affectibility by ith sample at iteration $t$ . $\\boldsymbol { \\phi } _ { i } ^ { t }$ is a vector consists of parameter affectibility from all parameters in the network. Specifically, $\\boldsymbol { \\phi } _ { i , j } ^ { t }$ is the parameter affectibility for $j$ th parameter in the network. $\\boldsymbol { \\phi } _ { i } ^ { t }$ reflects the relationship between parameter change and different samples. ", + "bbox": [ + 174, + 102, + 825, + 165 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Typical deep networks contains millions of parameters. Hence, we are going to focus on groups of parameters of interests. We define ith sample’s importance for parameters of $d \\mathrm { t h }$ layer of as: ", + "bbox": [ + 173, + 171, + 825, + 200 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/8626b5054cbdde3860883ba9c05d0db064409126f521bc710cb5c5be7c6c90de.jpg", + "text": "$$\n\\beta _ { i , d } ^ { t } = \\sum _ { j \\in \\mathcal { Q } _ { d } } ( \\phi _ { i , j } ^ { t } ) ^ { 2 } ,\n$$", + "text_format": "latex", + "bbox": [ + 431, + 205, + 563, + 241 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\mathcal { Q } _ { d }$ is a set consists of the indexes of all parameters in layer $d$ . Hence, sample’s importance for all the parameters in the model is: ", + "bbox": [ + 174, + 246, + 825, + 275 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/a5f3836f8436def08a638eb774f585b8a6c938e4ea65ef386dd35259b0013a1d.jpg", + "text": "$$\n\\alpha _ { i } ^ { t } = \\sum _ { j } ( \\phi _ { i , j } ^ { t } ) ^ { 2 } ,\n$$", + "text_format": "latex", + "bbox": [ + 441, + 281, + 555, + 316 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Obviously, we have $\\begin{array} { r } { \\alpha _ { i } ^ { t } = \\sum _ { d = 1 } ^ { D } \\beta _ { i , d } ^ { t } } \\end{array}$ ", + "bbox": [ + 174, + 323, + 419, + 342 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The sum of sample’s importance across all iterations is defined as overall importance of a sample: ", + "bbox": [ + 173, + 348, + 812, + 363 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/24968536f95e16a13035e3f1082522378fa5bfb112efbdcb7d333c36ee2a3446.jpg", + "text": "$$\n\\tau _ { i } = \\sum _ { t } \\alpha _ { i } ^ { t }\n$$", + "text_format": "latex", + "bbox": [ + 459, + 368, + 539, + 402 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In general, for each sample $i$ , computing $\\beta _ { i , d } ^ { t }$ allows us to decompose its influence in the model’s training across training stages and different layers. ", + "bbox": [ + 171, + 415, + 823, + 446 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We note that the sample importance is a high-level measurement of the samples influence on parameters at each iteration of the update. This quantity is not an accurate measurement of the relationship between a sample and final trained model. Refinements of this concept are discussed in Section 4. ", + "bbox": [ + 174, + 453, + 823, + 496 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 EMPIRICAL ANALYSIS OF SAMPLE IMPORTANCE ", + "text_level": 1, + "bbox": [ + 176, + 516, + 606, + 531 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We are going to explore the samples’ importance for different layers at different epoch through a series of empirical experiments on two standard datasets. ", + "bbox": [ + 174, + 546, + 825, + 574 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.1 EXPERIMENT SETUP ", + "text_level": 1, + "bbox": [ + 174, + 592, + 357, + 607 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Dataset All the analysis are performed on two standard datasets: MNIST 1 (LeCun et al. (1998)), a benchmark dataset that contains handwritten digit images. Each sample is a $2 8 \\times 2 8$ image from 10 classes. We used 50000 samples for training and 10000 samples for testing. CIFAR-10 2 (Krizhevsky & Hinton (2009)), a dataset contains $3 2 \\times 3 2$ tiny color images from 10 classes. Each sample has 3072 features. We used 50000 samples for training and 10000 samples for testing. ", + "bbox": [ + 173, + 617, + 825, + 688 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Architecture We used a multilayer feed forward neural network with 3 hidden layers of 512 hidden nodes with rectified linear units (ReLU) activation function, a linear output layer, and a softmax layer on top for classification. The weights in each hidden layer are initialized according to Glorot & Bengio (2010). For hyper-parameters, we used learning rate of 0.1, batch size of 100, 50 total epochs, and weight-decay of $1 e - 5$ . No momentum or learning decay was used. All the code are based on a common deep learning package Theano from Bergstra et al. (2010); Bastien et al. (2012). ", + "bbox": [ + 174, + 703, + 825, + 787 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.2 SAMPLE IMPORTANCE IS STABLE WITH RESPECT TO DIFFERENT INITIALIZATIONS ", + "text_level": 1, + "bbox": [ + 171, + 804, + 776, + 818 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Firstly, we want to explore whether the sample importance is stable under different initializations. We used three different random seeds to initialize the network parameters and calculated the sample importance every five epochs. We computed the Spearman’s rank correlation between sample importance to the model, $\\alpha _ { i } ^ { t }$ , in each pair of initializations. This correlation remains high in all epochs, above 0.9, as shown in Figure 1. This indicates that the sample importance is relatively stable to initialization of the network. Hence, all the following analysis are based on the results from initialization seed 1. (Details of training and test error for the chosen model can be viewed in Appendix Figure 9). ", + "bbox": [ + 174, + 829, + 825, + 886 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 160 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/0a3fc09ab1365aa5c2ccb287411ae343403bce7f9654cd12222a19101f92d457.jpg", + "image_caption": [ + "Figure 1: Does initialization affect sample’s importance? Sample importance is preserved between initializations of the network. For each epoch, and a pair of initializations, we computed Spearman Correlation of samples’ importance. Across all epochs, the correlation is of greater than 0.9 in both MNIST and CIFAR-10. Early epochs show higher consistency between ranks of sample importance across different initializations. " + ], + "image_footnote": [], + "bbox": [ + 274, + 188, + 723, + 358 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.3 DECOMPOSITION OF SAMPLE IMPORTANCE ", + "text_level": 1, + "bbox": [ + 178, + 503, + 509, + 517 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "To better understand and visualize the sample importance, we firstly calculate the overall sample importance at each epoch as $\\begin{array} { r } { A ^ { t } = \\sum _ { i = 1 } ^ { n } \\dot { \\alpha _ { i } ^ { t } } } \\end{array}$ . Similarly, the overall sample importance to layer $d$ is $\\begin{array} { r } { B _ { d } ^ { t } = \\sum _ { i = 1 } ^ { n } \\beta _ { i , d } ^ { t } } \\end{array}$ . We show the overall sample importance and its decomposition in layers for two datasets in Figure 2. Firstly, we found that even with a fixed learning rate, the overall sample importance is different under different epochs. Output layer always has the largest average sample importance per parameter, and its contribution reaches the maximum in the early training stage and then drops. Each layer contributes differently to the total sample importance. In both MNIST and CIFAR-10, the 2nd layer contributes more than the 3rd layer. In CIFAR-10, the 1st layer’s provides largest contribution the total sample importance, as it contains much more parameters than other layers. Interestingly, all classes do not provide the same amount of sample importance. ", + "bbox": [ + 174, + 534, + 825, + 675 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We found that most samples have small sample importance (Appendix Figure 10). To visualize the contribution of different samples, we split the samples based on their total importance into three groups: $10 \\%$ , top $10 \\%$ – top $20 \\%$ most important samples, and other $80 \\%$ samples. We show the decomposition of importance contribution in each layer in Figure 3. In MNIST, the top $10 \\%$ samples contribute almost all the sample importance. In CIFAR-10, most important samples contribute more in lower layers rather than output layer. This result indicates that top $20 \\%$ most important samples contribute to the majority of the sample importance. ", + "bbox": [ + 174, + 683, + 825, + 780 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.4 SAMPLE IMPORTANCE AND NEGATIVE LOG-LIKELIHOOD ", + "text_level": 1, + "bbox": [ + 174, + 810, + 604, + 823 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Negative log likelihood (NLL) is the loss metric we used for training objective. It has been used to measure the “easiness” of a sample in Curriculum learning Bengio et al. (2009) and Self-paced learning Kumar et al. (2010). Intuitively, the samples with large NLL should also have large sample importance (SI). However, in our experiment, we found that this is not always the case. In Figure 4, we found that 1) NLL and SI become more correlated as training goes on. However, 2) NLL is not predictive of the SI. There are many points with high NLL but small SI, and otherwise. ", + "bbox": [ + 174, + 839, + 825, + 924 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/7b01f6ee56ad410d554315b0e829197fb194fba35538582c41bb8eb261a1288f.jpg", + "image_caption": [ + "Figure 2: Which classes and at which stage shape the network’s layer’s parameters? Parameters of different layers are learned at different times. Parameters in Output layers are learned mostly during the early training stage. In the lower layers, parameters are learned predominantly during the middle and late training stage. All classes do not contribute equally to training of the model. " + ], + "image_footnote": [], + "bbox": [ + 176, + 102, + 869, + 415 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/c65928096336387e31f6986d8a5c1157a406686b28f9f2fb2cc62ef0c29e1cd8.jpg", + "image_caption": [ + "Figure 3: Are all data samples equally important for all layers? The top $20 \\%$ most important samples contributes to the majority of parameter learning, especially in lower layers. “L1” to “L3” stands for Layer 1 to Layer 3. “Out” stands for output layer. " + ], + "image_footnote": [], + "bbox": [ + 179, + 510, + 913, + 751 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.5 CLUSTERING SAMPLES BASED ON SAMPLE IMPORTANCE ", + "text_level": 1, + "bbox": [ + 181, + 842, + 602, + 856 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "To better visualize the importance of different samples, we provide three representative clusters of samples for each dataset. In MNIST, we clustered all digit “5” samples into 20 clusters based on their epoch-specific, layer-specific sample importance. In CIFAR-10, we clustered all “horse” samples into 30 clusters using the same features as MNIST. Kmeans algorithm is used for clustering. ", + "bbox": [ + 174, + 867, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/366cabd6209561647cb6d00ed6cdc1387b95f239c1a5c25a3d36e0ae64232719.jpg", + "image_caption": [ + "Figure 4: Is Sample Importance correlated with Negative log-likelihood of a sample? Sample importance is positively correlated with negative log-likelihood. As training goes on, their correlation becomes higher. However, there remain many samples with high NLL and low SI, and vice versa. Left column: correlation between sample importance and negative log likelihood for all samples across epochs. Right column: scatter plot for NLL in the last epoch and all epoch sample importance for each sample. " + ], + "image_footnote": [], + "bbox": [ + 318, + 104, + 678, + 385 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "MNIST In Figure 5, we showed 3 example clusters on digit $\\cdot 5 ^ { , }$ . In the cluster of easy samples, where NLL converges very fast, most of the sample importance is concentrated in the first few epochs in output layer parameters. The cluster of medium samples has a slow NLL convergence compared to the easy cluster. The biggest impact is in middle training stage and more towards bottom layer parameters. Hard samples hardly converge even during the late stage of training. As training goes on, the sample importance for the bottom layer parameters become larger. ", + "bbox": [ + 173, + 520, + 825, + 604 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "CIFAR-10 In Figure 6, we showed 3 examples clusters on class “horse”. We observed very similar sample importance changing pattern as for the MNIST examples for easy, medium and hard clusters. Comparing to MNIST, all three clusters in CIFAR-10 have a very large impact on the parameters in the bottom layer. We note that the CIFAR-10 has almost 4 times larger number of parameters $( 3 0 7 5 \\times 5 1 2 \\approx 1 5 7 4 k )$ in the first layer than MNIST $7 8 5 \\times 5 1 2 \\approx 4 0 1 k$ ). ", + "bbox": [ + 174, + 619, + 825, + 690 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "3.6 BATCH ORDER AND SAMPLE IMPORTANCE ", + "text_level": 1, + "bbox": [ + 174, + 708, + 504, + 722 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "With the observations from empirical analysis on sample importance, we know that time – iteration – and place – layer – of sample’s impact varies according to its “easiness” . We wanted to know whether constructing batches based on the sample importance or negative log likelihood would make a difference in training. Hence, we designed an experiment to explore how the different construction of batches influence the training. We note that the information used to structure the batches (negative log-likelihood and sample importance) – was obtained from a full training run. ", + "bbox": [ + 174, + 734, + 825, + 818 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We split all 50, 000 samples into $b = 5 0 0$ batch subsets $\\{ B _ { 1 } , B _ { 2 } , \\ldots , B _ { b } \\}$ . Each batch has batch size $| B _ { i } | = 1 0 0$ . In our experiment, each training sample must be in exactly one batch. There is no intersection between batches. ", + "bbox": [ + 174, + 824, + 825, + 867 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "During training, in each epoch, we update the parameters with each batch in order $1 , 2 , \\ldots , b$ iteratively. ", + "bbox": [ + 174, + 875, + 823, + 902 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We used seven different batch construction methods in this experiment: ", + "bbox": [ + 174, + 909, + 640, + 924 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/beca3d0da8b2003b41df3f1588b013088625e0966c9a1ccd126e7c77463862f6.jpg", + "image_caption": [ + "Figure 5: When and where does an MNIST sample make the biggest impact? For “easy” samples, their biggest impact is on output layers and during the early training stage. As sample’s difficulty increases (medium and hard), the biggest impact moves to lower layers and in the late training stage. Each row is a sample cluster. In each row, from left to right: example images in the cluster; average sample importance and layer-wise decomposition across epochs; A boxplot of average training negative log likelihood across epochs. " + ], + "image_footnote": [], + "bbox": [ + 184, + 108, + 816, + 470 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "1. Rand: Randomly constructed batch. All $5 0 \\mathrm { k }$ samples are randomly split into $b$ batches before training. The batches and orders stay fixed during training. \n2. NLO: Negative Log-likelihood Order. We sort all the samples based on their final NLL from low to high. The batches are constructed based on the sorted samples. First 100 samples with least NLL are in $\\boldsymbol { B } _ { 1 }$ , 101 to 200 samples are in $B _ { 2 }$ , and so on. Hence, during training, the batches with small NLL will be trained first. \n3. RNLO Reverse-Negative Log-likelihood Order. We construct the batches same as NLO. During training, we update the batches in reverse order $B _ { b } , B _ { b - 1 } , \\ldots , B _ { 1 }$ . Hence, the batches with large NLL will be trained first. \n4. NLM Negative Log-likelihood Mixed. We sort all the samples based on their final NLL from low to high. Next, for each sample $i$ in the sorted sequence, we put that sample into batch $j = ( i { \\bmod { b } } ) + 1$ . This ordering constructs batches out of samples with diverse levels of NLL. \n5. SIO: Sample Importance Order. Similar to NLO, except that we sort all the samples based on their sum sample importance over all epochs from low to high. Hence, batches with small sample importance will be trained first. \n6. RSIO Reverse-Sample Importance Order. We construct the batches same as SIO. During training, we update the batches in reverse order $B _ { b } , B _ { b - 1 } , \\ldots , B _ { 1 }$ . Hence, during training, the batches with large sample importance will be trained first. ", + "bbox": [ + 209, + 611, + 826, + 924 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/06ecd2bfd33d18b39d48776d6ab4984ee42b58766a17f2e0d0d3d92cd9424928.jpg", + "image_caption": [ + "Figure 6: When and where does a CIFAR-10 sample make the biggest impact? For “easy” samples, their biggest impact is on the first layer during the early training stage. As samples’s difficulty increases (medium and hard), the biggest impact moves to lower layers and to late training stage. Each row is a sample cluster. In each row, from left to right: example images in the cluster; average sample importance and layer-wise decomposition across epochs; A boxplot of average training negative log likelihood across epochs. " + ], + "image_footnote": [], + "bbox": [ + 184, + 108, + 816, + 470 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "7. SIM Sample Important Mixed. Similar to NLM, but we sort the samples based on overall sample importance. Thus, batches contain samples with divers sample importance. ", + "bbox": [ + 210, + 611, + 823, + 638 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We performed five different runs (with different random initializations) on MNIST and CIFAR-10. The result is shown in Figure 7. From the result, we found that: 1) In both MNIST and CIFAR-10, Rand, SIS, and NLS have the lowest test error compared to all other methods. This indicates that diverse batches are helpful for training. 2) NLO and SIO got the worst performance in CIFAR10. Their training error even goes up after the early stage. RNLO and RSIO have same batch constructions as NLO and SIO, but their performances are drastically different. This indicates that the order of batches during training is important. Further, training on easy samples first and hard later seems to be counter-productive. ", + "bbox": [ + 174, + 651, + 825, + 762 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "To better understand the impact of different batch construction, we performed the principle component analysis on the learned parameters in each epoch (Figure 8). In MNIST, the impact of batch construction is not very significant. In CIFAR-10, batch construction and even the order of batch training do have a large impact on the training. ", + "bbox": [ + 174, + 770, + 823, + 825 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Our experiment result shows a different conclusion to Curriculum Learning and Self-paced learning, where easy samples are trained on before introducing hard samples. We found that constructing and ordering the batches – hard to easy and easy to hard – seems to hinder the performance of learning. Having hard samples mixed in with the easy ones in each batch helps the training. ", + "bbox": [ + 174, + 833, + 823, + 888 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Also, the results show that we want to learn from the hard samples in early epochs and “see” hard samples more frequently, even if their major impact on parameters is during the late stage. As hard examples are few compared to easy samples and hard examples need a longer time to train, we do want to mix the hard samples into each batch to start learning from those samples early and learn longer. ", + "bbox": [ + 174, + 895, + 821, + 924 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/42716aa645f0c758ca13ad616d456e30f3c7f969dca4da6b441665f267b2d69c.jpg", + "image_caption": [ + "Figure 7: Does organizing batches by “easiness” affect training? When batches are constructed with homogeneous easiness, the training performance become worse. Batches with mixed easiness have lower test error. The solid color line represents the mean over 5 runs. The error bar indicates the standard error over 5 runs. " + ], + "image_footnote": [], + "bbox": [ + 223, + 102, + 772, + 270 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/2356039eb64f765e3572f2159baff9807ba4501ba29d7c5578292085327cf2f9.jpg", + "image_caption": [ + "Figure 8: Do parameters converge differently under different batch construction? In MNIST, the converging path for all batch constructions are very similar. In CIFAR-10, batch construction with mixed easiness (Rand, NLM, SIM) has a very different converging path with all other methods. Notably, we found that even with same batch constructions but just reversed order (NLO vs. RNLO, SIO vs. RSIO), the parameters converge to different points. Each circle dotted line shows the path of the first two principle components of all parameters in different epochs. Note that in CIFAR-10, the paths of Rand, NLS and SIS are very similar and they are overlapped in the plot. " + ], + "image_footnote": [], + "bbox": [ + 222, + 371, + 774, + 536 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 693, + 825, + 736 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "4 EXTENSIONS OF SAMPLE IMPORTANCE ", + "text_level": 1, + "bbox": [ + 174, + 765, + 529, + 781 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We calculated the sample importance in each iteration in Stochastic Gradient Descent. However, such quantity only reflects the impact on the change in parameters within each iteration. The influence of a sample at a particular iteration can be accumulated through updates and impact the final model. Here, we are going to derive the exact calculation of the sample’s influence to the model. We rewrite the Objective (2) in Section 2 here: ", + "bbox": [ + 173, + 801, + 825, + 872 + ], + "page_idx": 8 + }, + { + "type": "equation", + "img_path": "images/8ca9c38e6c5150d63505cc23867c20c4d293b98739219cf5bd6679bd8c8ccc7f.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\pmb { \\theta } } \\sum _ { i = 1 } ^ { n } v _ { i } L ( y _ { i } , f ( \\mathbf { x } _ { i } , \\pmb { \\theta } ) ) + R ( \\pmb { \\theta } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 382, + 887, + 614, + 928 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Here, we deem the sample weight $v _ { i }$ is fixed across all iterations. The update rule for stochastic gradient descent in each iteration is: ", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 9 + }, + { + "type": "equation", + "img_path": "images/6cc13f76fb0dc2b8abc82ce34dff334fff073e9fe51d4eef1884b1df7628cc5a.jpg", + "text": "$$\n\\pmb { \\theta } ^ { t + 1 } = \\pmb { \\theta } ^ { t } - \\eta \\sum _ { i } v _ { i } \\mathbf { g } _ { i } ^ { t } - \\eta \\mathbf { r } _ { i } ^ { t }\n$$", + "text_format": "latex", + "bbox": [ + 398, + 138, + 599, + 174 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "The derivative of $\\pmb { \\theta } ^ { t + 1 }$ with respect to sample weight $v _ { i }$ is: ", + "bbox": [ + 173, + 181, + 560, + 198 + ], + "page_idx": 9 + }, + { + "type": "equation", + "img_path": "images/55051f6288701aec5bc042041645cddaf7911962d699ba048cc340f009ad8f71.jpg", + "text": "$$\n\\begin{array} { r c l } { { \\displaystyle \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { t + 1 } } } & { { = } } & { { \\displaystyle \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { t } - \\eta \\mathbf { g } _ { i } ^ { t } - \\eta H ( \\pmb { \\theta } ^ { t } ) \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { t } } } \\\\ { { \\displaystyle \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { 1 } } } & { { = } } & { { \\displaystyle - \\eta \\mathbf { g } _ { i } ^ { 0 } , } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 346, + 204, + 653, + 271 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "where $H ( \\pmb \\theta ^ { t } )$ is the Hessian matrix of the objective in (2) with regard to all parameters in iteration $t$ . If we iterate the updates until convergence, then we can assume that $\\theta ^ { T }$ is a fix-point, $\\pmb { \\theta } ^ { \\ast } = \\pmb { \\theta } ^ { T + 1 } =$ $\\theta ^ { T }$ , and we obtain: ", + "bbox": [ + 173, + 287, + 825, + 333 + ], + "page_idx": 9 + }, + { + "type": "equation", + "img_path": "images/8ccd2bd9ca63663dc86b7ef0562ad15de38ed0ccf52a47be5041531fd09326a6.jpg", + "text": "$$\n\\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { T + 1 } - \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { T } = - \\eta \\mathbf { g } _ { i } ^ { t } - \\eta H ( \\pmb { \\theta } ^ { * } ) \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { * }\n$$", + "text_format": "latex", + "bbox": [ + 331, + 340, + 665, + 375 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Hence, the derivative of parameters in the final model with regard to a sample weight is: ", + "bbox": [ + 168, + 390, + 751, + 406 + ], + "page_idx": 9 + }, + { + "type": "equation", + "img_path": "images/d30cb4417f117e660ccdc2a6eee39501c9d3a39ed7f1bff4e22e84cfa00b7d0f.jpg", + "text": "$$\n\\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { * } = - H ( \\pmb { \\theta } ^ { * } ) ^ { - 1 } \\mathbf { g } _ { i } ^ { T }\n$$", + "text_format": "latex", + "bbox": [ + 416, + 412, + 581, + 445 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Equation (4) indicates that we can calculate the sample specific impact on final trained model by using the parameters learned at the convergence point. In deep learning methods, due to early stopping, fix point might not be achieved, and Equation (4) might not be an accurate. ", + "bbox": [ + 173, + 459, + 825, + 502 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "For any target quantity $\\boldsymbol { \\mathcal { T } } ( \\boldsymbol { \\theta } ^ { * } )$ that depends on the final trained parameter $\\pmb { \\theta } ^ { * }$ , we can calculate the impact of a particular sample on that target as: ", + "bbox": [ + 174, + 508, + 823, + 537 + ], + "page_idx": 9 + }, + { + "type": "equation", + "img_path": "images/99669177b9d03a381895ef1d3e8c83623a18afe29a5d5ceb5234ccb87dc95e73.jpg", + "text": "$$\n\\frac { \\partial } { \\partial v _ { i } } T ( \\pmb { \\theta } ^ { * } ) = \\frac { \\partial } { \\partial \\pmb { \\theta } ^ { * } } T ( \\pmb { \\theta } ^ { * } ) \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { * }\n$$", + "text_format": "latex", + "bbox": [ + 393, + 544, + 604, + 577 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "For example, if we are interested in the sum of predictions on a set of samples ${ \\mathcal { T } } ( \\theta ^ { * } ) ~ =$ $\\textstyle \\sum _ { i \\in { \\mathcal { S } } _ { c } } f ( \\mathbf { x } _ { i } , { \\pmb \\theta } ^ { t } )$ , we can use Equation (5) to calculate the derivative: ", + "bbox": [ + 174, + 592, + 825, + 623 + ], + "page_idx": 9 + }, + { + "type": "equation", + "img_path": "images/8e4ed9df320fa4f39c893488bb13c88063209723ed58f1f12dd7b772e9e01530.jpg", + "text": "$$\n\\begin{array} { r c l } { \\displaystyle \\frac { \\partial } { \\partial v _ { i } } \\mathcal { T } ( \\pmb { \\theta } ^ { * } ) } & { = } & { \\displaystyle \\sum _ { i \\in \\mathcal { S } _ { c } } \\frac { \\partial } { \\partial \\pmb { \\theta } ^ { * } } f ( \\mathbf { x } _ { i } , \\pmb { \\theta } ^ { t } ) \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { * } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 356, + 631, + 640, + 671 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "We note evaluating the exact impact of a sample, as shown above, is computationally cumbersome for all but the simplest models. ", + "bbox": [ + 173, + 694, + 823, + 724 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "5 DISCUSSION ", + "text_level": 1, + "bbox": [ + 174, + 744, + 312, + 761 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Samples’ impact on the deep network’s parameters vary across stages of training and network’s layers. In our work, we found that easy samples predominantly shape parameters the top layers at the early training stages, while hard samples predominantly shape the parameters of the bottom layers at the late training stage. Our experiments show that it is important to mix hard samples into different batches rather than keep them together in the same batch and away from other examples. ", + "bbox": [ + 173, + 776, + 825, + 847 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "There are many future extensions to the current work. Firstly, we want to expand our sample importance analysis to different deep learning structures, like Convolution Neural Network and Recurrent Neural Networks. Secondly, we want to use the sample importance as a guidance to extract a minimal subset of samples that are sufficient to achieve performance comparable to a network trained on the full dataset. ", + "bbox": [ + 174, + 853, + 825, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 102, + 287, + 117 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Fred´ eric Bastien, Pascal Lamblin, Razvan Pascanu, James Bergstra, Ian J. Goodfellow, Arnaud ´ Bergeron, Nicolas Bouchard, and Yoshua Bengio. Theano: new features and speed improvements. Deep Learning and Unsupervised Feature Learning NIPS 2012 Workshop, 2012. ", + "bbox": [ + 174, + 126, + 825, + 167 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yoshua Bengio, Jer´ ome Louradour, Ronan Collobert, and Jason Weston. Curriculum learning. In ˆ Proceedings of the 26th annual international conference on machine learning, pp. 41–48. ACM, 2009. ", + "bbox": [ + 178, + 178, + 821, + 219 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "James Bergstra, Olivier Breuleux, Fred´ eric Bastien, Pascal Lamblin, Razvan Pascanu, Guillaume ´ Desjardins, Joseph Turian, David Warde-Farley, and Yoshua Bengio. Theano: a CPU and GPU math expression compiler. In Proceedings of the Python for Scientific Computing Conference (SciPy), June 2010. Oral Presentation. ", + "bbox": [ + 174, + 228, + 825, + 285 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Xavier Glorot and Yoshua Bengio. Understanding the difficulty of training deep feedforward neural networks. In International Conference on Artificial Intelligence and Statistics, pp. 249–256, 2010. ", + "bbox": [ + 173, + 294, + 823, + 323 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Lu Jiang, Deyu Meng, Shoou-I Yu, Zhenzhong Lan, Shiguang Shan, and Alexander Hauptmann. Self-paced learning with diversity. In Advances in Neural Information Processing Systems, pp. 2078–2086, 2014. ", + "bbox": [ + 173, + 332, + 825, + 375 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Alex Krizhevsky and Geoffrey Hinton. Learning multiple layers of features from tiny images, 2009. ", + "bbox": [ + 173, + 383, + 821, + 398 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "M Pawan Kumar, Benjamin Packer, and Daphne Koller. Self-paced learning for latent variable models. In Advances in Neural Information Processing Systems, pp. 1189–1197, 2010. ", + "bbox": [ + 174, + 406, + 821, + 436 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yann LeCun, Corinna Cortes, and Christopher JC Burges. The MNIST database of handwritten digits, 1998. ", + "bbox": [ + 176, + 444, + 821, + 474 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yann LeCun, Yoshua Bengio, and Geoffrey Hinton. Deep learning. Nature, 521(7553):436–444, 2015. ", + "bbox": [ + 174, + 482, + 821, + 512 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Honglak Lee, Roger Grosse, Rajesh Ranganath, and A. Y. Ng. Unsupervised learning of hierarchical representations with convolutional deep belief networks. Communications of the ACM, 54(10): 95–103, 2011. ", + "bbox": [ + 174, + 520, + 825, + 563 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Andrew Saxe, Pang W Koh, Zhenghao Chen, Maneesh Bhand, Bipin Suresh, and Andrew Y Ng. On random weights and unsupervised feature learning. In Proceedings of the 28th international conference on machine learning (ICML-11), pp. 1089–1096, 2011. ", + "bbox": [ + 174, + 571, + 825, + 616 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Roy T St Laurent and R Dennis Cook. Leverage and superleverage in nonlinear regression. Journal of the American Statistical Association, 87(420):985–990, 1992. ", + "bbox": [ + 173, + 625, + 823, + 652 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "APPENDIX ", + "text_level": 1, + "bbox": [ + 176, + 103, + 263, + 117 + ], + "page_idx": 11 + }, + { + "type": "image", + "img_path": "images/b50b1bc5189d4cb3fa5ad2950a2e80b6a0c2b3a70f01fab8b5c6bf2838fbfbfa.jpg", + "image_caption": [ + "Figure 9: The training and test error on MNIST (first row) and CIFAR-10 (second row). The left column showed the average class-specific negative log likelihood. " + ], + "image_footnote": [], + "bbox": [ + 222, + 140, + 774, + 482 + ], + "page_idx": 11 + }, + { + "type": "image", + "img_path": "images/f8db2eb88900f5393079c3638df2a7dc58b9a63367a73c5ed63a70e9013e6e1f.jpg", + "image_caption": [ + "Figure 10: Histogram of total sample importance. " + ], + "image_footnote": [], + "bbox": [ + 277, + 561, + 717, + 728 + ], + "page_idx": 11 + } +] \ No newline at end of file diff --git a/parse/train/r1IRctqxg/r1IRctqxg_middle.json b/parse/train/r1IRctqxg/r1IRctqxg_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..864b2a32fa6ec71e4a7b7d99861ad4c437a67419 --- /dev/null +++ b/parse/train/r1IRctqxg/r1IRctqxg_middle.json @@ -0,0 +1,24376 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 504, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 505, + 98 + ], + "score": 1.0, + "content": "SAMPLE IMPORTANCE IN TRAINING DEEP NEURAL", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 98, + 195, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 195, + 118 + ], + "score": 1.0, + "content": "NETWORKS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 135, + 288, + 191 + ], + "lines": [ + { + "bbox": [ + 112, + 135, + 245, + 148 + ], + "spans": [ + { + "bbox": [ + 112, + 135, + 245, + 148 + ], + "score": 1.0, + "content": "Tianxiang Gao, Vladimir Jojic", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 146, + 248, + 158 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 248, + 158 + ], + "score": 1.0, + "content": "Department of Computer Science", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 112, + 157, + 288, + 169 + ], + "spans": [ + { + "bbox": [ + 112, + 157, + 288, + 169 + ], + "score": 1.0, + "content": "University of North Carolina at Chapel Hill", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 112, + 168, + 238, + 180 + ], + "spans": [ + { + "bbox": [ + 112, + 168, + 238, + 180 + ], + "score": 1.0, + "content": "Chapel Hill, NC, 27599 , USA", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 112, + 178, + 257, + 192 + ], + "spans": [ + { + "bbox": [ + 112, + 178, + 257, + 192 + ], + "score": 1.0, + "content": "{tgao,vjojic}@cs.unc.edu", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4 + }, + { + "type": "title", + "bbox": [ + 278, + 219, + 333, + 231 + ], + "lines": [ + { + "bbox": [ + 276, + 218, + 336, + 234 + ], + "spans": [ + { + "bbox": [ + 276, + 218, + 336, + 234 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 143, + 251, + 468, + 394 + ], + "lines": [ + { + "bbox": [ + 142, + 251, + 469, + 263 + ], + "spans": [ + { + "bbox": [ + 142, + 251, + 469, + 263 + ], + "score": 1.0, + "content": "The contribution of each sample during model training varies across training iter-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 262, + 470, + 275 + ], + "spans": [ + { + "bbox": [ + 141, + 262, + 470, + 275 + ], + "score": 1.0, + "content": "ations and the model’s parameters. We define the concept of sample importance", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 273, + 470, + 285 + ], + "spans": [ + { + "bbox": [ + 141, + 273, + 470, + 285 + ], + "score": 1.0, + "content": "as the change in parameters induced by a sample. In this paper, we explored the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 284, + 469, + 296 + ], + "spans": [ + { + "bbox": [ + 141, + 284, + 469, + 296 + ], + "score": 1.0, + "content": "sample importance in training deep neural networks using stochastic gradient de-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 295, + 469, + 307 + ], + "spans": [ + { + "bbox": [ + 141, + 295, + 469, + 307 + ], + "score": 1.0, + "content": "scent. We found that “easy” samples – samples that are correctly and confidently", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 306, + 470, + 319 + ], + "spans": [ + { + "bbox": [ + 141, + 306, + 470, + 319 + ], + "score": 1.0, + "content": "classified at the end of the training – shape parameters closer to the output, while", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 317, + 470, + 329 + ], + "spans": [ + { + "bbox": [ + 141, + 317, + 470, + 329 + ], + "score": 1.0, + "content": "the “hard” samples impact parameters closer to the input to the network. Further,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 327, + 470, + 341 + ], + "spans": [ + { + "bbox": [ + 141, + 327, + 470, + 341 + ], + "score": 1.0, + "content": "“easy” samples are relevant in the early training stages, and “hard” in the late", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 339, + 470, + 352 + ], + "spans": [ + { + "bbox": [ + 141, + 339, + 470, + 352 + ], + "score": 1.0, + "content": "training stage. Further, we show that constructing batches which contain samples", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 349, + 470, + 362 + ], + "spans": [ + { + "bbox": [ + 141, + 349, + 470, + 362 + ], + "score": 1.0, + "content": "of comparable difficulties tends to be a poor strategy compared to maintaining a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 360, + 470, + 374 + ], + "spans": [ + { + "bbox": [ + 141, + 360, + 470, + 374 + ], + "score": 1.0, + "content": "mix of both hard and easy samples in all of the batches. Interestingly, this con-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 371, + 470, + 385 + ], + "spans": [ + { + "bbox": [ + 141, + 371, + 470, + 385 + ], + "score": 1.0, + "content": "tradicts some of the results on curriculum learning which suggest that ordering", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 382, + 428, + 396 + ], + "spans": [ + { + "bbox": [ + 141, + 382, + 428, + 396 + ], + "score": 1.0, + "content": "training examples in terms of difficulty can lead to better performance.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 108, + 431, + 206, + 444 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 208, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 208, + 447 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 462, + 505, + 605 + ], + "lines": [ + { + "bbox": [ + 106, + 462, + 505, + 476 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 505, + 476 + ], + "score": 1.0, + "content": "Sample importance is the sample’s contribution to the parameter change during training. In statistics,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "score": 1.0, + "content": "the concept “leverage” of a point is used (St Laurent & Cook (1992)) to measure the impact of a", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 484, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 506, + 498 + ], + "score": 1.0, + "content": "sample on the training of a model. In the context of SVM, the most important samples are the support", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 495, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 509 + ], + "score": 1.0, + "content": "vectors as they define the separating hyperplane. Understanding the importance of the samples", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "can help us interpret trained models and structure training to speed up convergence and improve", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "prediction accuracy. For example, Curriculum learning (CL) from Bengio et al. (2009) shows that", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "training with easy samples first, then gradually transitioning to difficult samples can improve the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "learning. In CL, the “easiness” of a sample is predefined either manually or using an evaluation", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "model. Self-paced learning (SPL) (Kumar et al. (2010)) shows that it is possible to learn from", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "samples in order of easiness. In this framework, easiness is related to the prediction error and can", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 573, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 505, + 584 + ], + "score": 1.0, + "content": "be estimated from the model. However, easiness of a sample may not be sufficient to decide when", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "it should be introduced to a learner. Maintaining diversity among the training samples can have a", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 595, + 320, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 320, + 606 + ], + "score": 1.0, + "content": "substantial effect on the training (Jiang et al. (2014)).", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 611, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 611, + 504, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 504, + 623 + ], + "score": 1.0, + "content": "In this work, we explore the sample importance in deep neural networks. Deep learning methods", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "score": 1.0, + "content": "have been successfully applied in many tasks and routinely achieve better generalization error than", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "classical shallow methods (LeCun et al. (2015)). One of the key characteristics of a deep network", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 644, + 504, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 504, + 657 + ], + "score": 1.0, + "content": "is its capacity to construct progressively more complex features throughout its layers (Lee et al.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "(2011)). An intuitive question arises: which samples contribute the most to the training of the differ-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "ent layer’s parameters? From literature Saxe et al. (2011), we know that even randomly generated", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "filters can compute features that lead to good performance – presumably on easy samples. However,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "to learn hard samples correctly, the model may need to construct complex features, which require", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "both more training time and refined filters from bottom layers. Hence, we hypothesized that the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "hard samples shape the bottom layers – closer to the input – and easy samples shape the top layers –", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 720, + 188, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 188, + 734 + ], + "score": 1.0, + "content": "closer to the output.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 40 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 303, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 504, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 505, + 98 + ], + "score": 1.0, + "content": "SAMPLE IMPORTANCE IN TRAINING DEEP NEURAL", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 98, + 195, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 195, + 118 + ], + "score": 1.0, + "content": "NETWORKS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 135, + 288, + 191 + ], + "lines": [ + { + "bbox": [ + 112, + 135, + 245, + 148 + ], + "spans": [ + { + "bbox": [ + 112, + 135, + 245, + 148 + ], + "score": 1.0, + "content": "Tianxiang Gao, Vladimir Jojic", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 146, + 248, + 158 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 248, + 158 + ], + "score": 1.0, + "content": "Department of Computer Science", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 112, + 157, + 288, + 169 + ], + "spans": [ + { + "bbox": [ + 112, + 157, + 288, + 169 + ], + "score": 1.0, + "content": "University of North Carolina at Chapel Hill", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 112, + 168, + 238, + 180 + ], + "spans": [ + { + "bbox": [ + 112, + 168, + 238, + 180 + ], + "score": 1.0, + "content": "Chapel Hill, NC, 27599 , USA", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 112, + 178, + 257, + 192 + ], + "spans": [ + { + "bbox": [ + 112, + 178, + 257, + 192 + ], + "score": 1.0, + "content": "{tgao,vjojic}@cs.unc.edu", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4, + "bbox_fs": [ + 112, + 135, + 288, + 192 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 219, + 333, + 231 + ], + "lines": [ + { + "bbox": [ + 276, + 218, + 336, + 234 + ], + "spans": [ + { + "bbox": [ + 276, + 218, + 336, + 234 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 143, + 251, + 468, + 394 + ], + "lines": [ + { + "bbox": [ + 142, + 251, + 469, + 263 + ], + "spans": [ + { + "bbox": [ + 142, + 251, + 469, + 263 + ], + "score": 1.0, + "content": "The contribution of each sample during model training varies across training iter-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 262, + 470, + 275 + ], + "spans": [ + { + "bbox": [ + 141, + 262, + 470, + 275 + ], + "score": 1.0, + "content": "ations and the model’s parameters. We define the concept of sample importance", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 273, + 470, + 285 + ], + "spans": [ + { + "bbox": [ + 141, + 273, + 470, + 285 + ], + "score": 1.0, + "content": "as the change in parameters induced by a sample. In this paper, we explored the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 284, + 469, + 296 + ], + "spans": [ + { + "bbox": [ + 141, + 284, + 469, + 296 + ], + "score": 1.0, + "content": "sample importance in training deep neural networks using stochastic gradient de-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 295, + 469, + 307 + ], + "spans": [ + { + "bbox": [ + 141, + 295, + 469, + 307 + ], + "score": 1.0, + "content": "scent. We found that “easy” samples – samples that are correctly and confidently", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 306, + 470, + 319 + ], + "spans": [ + { + "bbox": [ + 141, + 306, + 470, + 319 + ], + "score": 1.0, + "content": "classified at the end of the training – shape parameters closer to the output, while", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 317, + 470, + 329 + ], + "spans": [ + { + "bbox": [ + 141, + 317, + 470, + 329 + ], + "score": 1.0, + "content": "the “hard” samples impact parameters closer to the input to the network. Further,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 327, + 470, + 341 + ], + "spans": [ + { + "bbox": [ + 141, + 327, + 470, + 341 + ], + "score": 1.0, + "content": "“easy” samples are relevant in the early training stages, and “hard” in the late", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 339, + 470, + 352 + ], + "spans": [ + { + "bbox": [ + 141, + 339, + 470, + 352 + ], + "score": 1.0, + "content": "training stage. Further, we show that constructing batches which contain samples", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 349, + 470, + 362 + ], + "spans": [ + { + "bbox": [ + 141, + 349, + 470, + 362 + ], + "score": 1.0, + "content": "of comparable difficulties tends to be a poor strategy compared to maintaining a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 360, + 470, + 374 + ], + "spans": [ + { + "bbox": [ + 141, + 360, + 470, + 374 + ], + "score": 1.0, + "content": "mix of both hard and easy samples in all of the batches. Interestingly, this con-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 371, + 470, + 385 + ], + "spans": [ + { + "bbox": [ + 141, + 371, + 470, + 385 + ], + "score": 1.0, + "content": "tradicts some of the results on curriculum learning which suggest that ordering", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 382, + 428, + 396 + ], + "spans": [ + { + "bbox": [ + 141, + 382, + 428, + 396 + ], + "score": 1.0, + "content": "training examples in terms of difficulty can lead to better performance.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 14, + "bbox_fs": [ + 141, + 251, + 470, + 396 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 431, + 206, + 444 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 208, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 208, + 447 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 462, + 505, + 605 + ], + "lines": [ + { + "bbox": [ + 106, + 462, + 505, + 476 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 505, + 476 + ], + "score": 1.0, + "content": "Sample importance is the sample’s contribution to the parameter change during training. In statistics,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "score": 1.0, + "content": "the concept “leverage” of a point is used (St Laurent & Cook (1992)) to measure the impact of a", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 484, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 506, + 498 + ], + "score": 1.0, + "content": "sample on the training of a model. In the context of SVM, the most important samples are the support", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 495, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 509 + ], + "score": 1.0, + "content": "vectors as they define the separating hyperplane. Understanding the importance of the samples", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "can help us interpret trained models and structure training to speed up convergence and improve", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "prediction accuracy. For example, Curriculum learning (CL) from Bengio et al. (2009) shows that", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "training with easy samples first, then gradually transitioning to difficult samples can improve the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "learning. In CL, the “easiness” of a sample is predefined either manually or using an evaluation", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "model. Self-paced learning (SPL) (Kumar et al. (2010)) shows that it is possible to learn from", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "samples in order of easiness. In this framework, easiness is related to the prediction error and can", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 573, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 505, + 584 + ], + "score": 1.0, + "content": "be estimated from the model. However, easiness of a sample may not be sufficient to decide when", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "it should be introduced to a learner. Maintaining diversity among the training samples can have a", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 595, + 320, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 320, + 606 + ], + "score": 1.0, + "content": "substantial effect on the training (Jiang et al. (2014)).", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 462, + 506, + 606 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 611, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 611, + 504, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 504, + 623 + ], + "score": 1.0, + "content": "In this work, we explore the sample importance in deep neural networks. Deep learning methods", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "score": 1.0, + "content": "have been successfully applied in many tasks and routinely achieve better generalization error than", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "classical shallow methods (LeCun et al. (2015)). One of the key characteristics of a deep network", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 644, + 504, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 504, + 657 + ], + "score": 1.0, + "content": "is its capacity to construct progressively more complex features throughout its layers (Lee et al.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "(2011)). An intuitive question arises: which samples contribute the most to the training of the differ-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "ent layer’s parameters? From literature Saxe et al. (2011), we know that even randomly generated", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "filters can compute features that lead to good performance – presumably on easy samples. However,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "to learn hard samples correctly, the model may need to construct complex features, which require", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "both more training time and refined filters from bottom layers. Hence, we hypothesized that the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "hard samples shape the bottom layers – closer to the input – and easy samples shape the top layers –", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 720, + 188, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 188, + 734 + ], + "score": 1.0, + "content": "closer to the output.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 611, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Motivated by the above hypothesis, we analyzed the sample importance in a 3 layer ReLU network", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "on two standard datasets. The results reveal several interesting facts about the sample importance in", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 201, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 201, + 117 + ], + "score": 1.0, + "content": "easy and hard samples:", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 121, + 503, + 155 + ], + "lines": [ + { + "bbox": [ + 105, + 121, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 505, + 135 + ], + "score": 1.0, + "content": "1. Easy and hard samples impact the parameters in different training stages. The biggest", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 133, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 505, + 145 + ], + "score": 1.0, + "content": "impact of easy samples on parameters are mostly during the early training stage, while the impact", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 142, + 328, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 328, + 157 + ], + "score": 1.0, + "content": "of hard samples become large in the late training stage.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 105, + 160, + 504, + 183 + ], + "lines": [ + { + "bbox": [ + 106, + 160, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 505, + 173 + ], + "score": 1.0, + "content": "2. Easy and hard samples impact the parameters in different layers. Easy samples impact have", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 171, + 481, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 481, + 184 + ], + "score": 1.0, + "content": "larger impact on top layer parameters, while hard samples shape the bottom layer parameters.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 107, + 187, + 505, + 232 + ], + "lines": [ + { + "bbox": [ + 106, + 188, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 505, + 200 + ], + "score": 1.0, + "content": "3. Mixing hard samples with easy samples in each batch helps training. We conducted batches", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 199, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 505, + 211 + ], + "score": 1.0, + "content": "with homogeneous or mixed “easiness”. We found that use of homogeneous batches hinders the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 210, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 505, + 222 + ], + "score": 1.0, + "content": "training. Hence, it is preferable for network to see both easy and hard samples during all stages of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 220, + 143, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 143, + 235 + ], + "score": 1.0, + "content": "training.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 237, + 505, + 271 + ], + "lines": [ + { + "bbox": [ + 105, + 238, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 505, + 250 + ], + "score": 1.0, + "content": "Next, we are going to give the definition of sample importance in Section 2. The empirical analysis", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 249, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 505, + 261 + ], + "score": 1.0, + "content": "for sample importance in the deep neural network in two real datasets is discussed in Section 3.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 261, + 345, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 345, + 271 + ], + "score": 1.0, + "content": "Extension about sample importance is showed in Section 4.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 107, + 287, + 239, + 300 + ], + "lines": [ + { + "bbox": [ + 105, + 286, + 240, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 240, + 302 + ], + "score": 1.0, + "content": "2 SAMPLE IMPORTANCE", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 312, + 504, + 335 + ], + "lines": [ + { + "bbox": [ + 105, + 311, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 505, + 325 + ], + "score": 1.0, + "content": "In this section, we are going to introduce the terminology and provide a quantitative measurement", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 324, + 294, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 294, + 335 + ], + "score": 1.0, + "content": "of sample importance for a training procedure.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "title", + "bbox": [ + 107, + 348, + 206, + 360 + ], + "lines": [ + { + "bbox": [ + 106, + 347, + 207, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 207, + 360 + ], + "score": 1.0, + "content": "2.1 SAMPLE WEIGHT", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 368, + 505, + 401 + ], + "lines": [ + { + "bbox": [ + 105, + 368, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 505, + 382 + ], + "score": 1.0, + "content": "In supervised learning, a model is trained by optimizing an objective over a set of observed training", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 379, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 141, + 393 + ], + "score": 1.0, + "content": "samples", + "type": "text" + }, + { + "bbox": [ + 142, + 380, + 172, + 392 + ], + "score": 0.92, + "content": "\\left( \\mathbf { x } _ { i } , y _ { i } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 379, + 193, + 393 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 193, + 380, + 227, + 392 + ], + "score": 0.93, + "content": "f ( \\mathbf { x } _ { i } , \\pmb { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 379, + 386, + 393 + ], + "score": 1.0, + "content": "be the output of a model for parameter", + "type": "text" + }, + { + "bbox": [ + 387, + 380, + 393, + 389 + ], + "score": 0.74, + "content": "\\pmb { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 379, + 505, + 393 + ], + "score": 1.0, + "content": ". The training objective can", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 389, + 163, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 163, + 403 + ], + "score": 1.0, + "content": "be written as:", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "interline_equation", + "bbox": [ + 246, + 398, + 363, + 431 + ], + "lines": [ + { + "bbox": [ + 246, + 398, + 363, + 431 + ], + "spans": [ + { + "bbox": [ + 246, + 398, + 363, + 431 + ], + "score": 0.95, + "content": "\\sum _ { i = 1 } ^ { n } L ( y _ { i } , f ( \\mathbf { x } _ { i } , \\pmb { \\theta } ) ) + R ( \\pmb { \\theta } ) ,", + "type": "interline_equation", + "image_path": "6c9700eb2b2cae7d3282a001c5cf3d7cfe57b076643c802dab9b5964942bf55a.jpg" + } + ] + } + ], + "index": 22.5, + "virtual_lines": [ + { + "bbox": [ + 246, + 398, + 363, + 414.5 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 246, + 414.5, + 363, + 431.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 433, + 505, + 466 + ], + "lines": [ + { + "bbox": [ + 106, + 433, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 133, + 445 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 433, + 195, + 445 + ], + "score": 0.92, + "content": "L ( y _ { i } , f ( \\mathbf { x } _ { i } , \\pmb { \\theta } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 433, + 283, + 445 + ], + "score": 1.0, + "content": "is the loss on sample", + "type": "text" + }, + { + "bbox": [ + 284, + 434, + 288, + 443 + ], + "score": 0.77, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 433, + 309, + 445 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 310, + 433, + 332, + 445 + ], + "score": 0.92, + "content": "R ( \\pmb \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 433, + 505, + 445 + ], + "score": 1.0, + "content": "is the regularization on the parameters. In", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 443, + 504, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 462, + 457 + ], + "score": 1.0, + "content": "order to highlight contribution of each sample, we can introduce sample specific weights", + "type": "text" + }, + { + "bbox": [ + 462, + 444, + 504, + 456 + ], + "score": 0.92, + "content": "v _ { i } \\in [ 0 , 1 ]", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 455, + 479, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 479, + 467 + ], + "score": 1.0, + "content": "which scale sample’s contribution to the loss. Hence, the objective in (1) can be rewritten as:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "interline_equation", + "bbox": [ + 242, + 471, + 367, + 504 + ], + "lines": [ + { + "bbox": [ + 242, + 471, + 367, + 504 + ], + "spans": [ + { + "bbox": [ + 242, + 471, + 367, + 504 + ], + "score": 0.94, + "content": "\\sum _ { i = 1 } ^ { n } v _ { i } L ( y _ { i } , f ( \\mathbf { x } _ { i } , \\pmb { \\theta } ) ) + R ( \\pmb { \\theta } ) ,", + "type": "interline_equation", + "image_path": "908eabf6f381664fd44fceefb840a8d6b32a49e06bd6bb8d0623fbfe011e5f72.jpg" + } + ] + } + ], + "index": 27.5, + "virtual_lines": [ + { + "bbox": [ + 242, + 471, + 367, + 487.5 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 242, + 487.5, + 367, + 504.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 507, + 504, + 531 + ], + "lines": [ + { + "bbox": [ + 106, + 506, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 198, + 520 + ], + "score": 1.0, + "content": "We define the weight", + "type": "text" + }, + { + "bbox": [ + 198, + 510, + 208, + 519 + ], + "score": 0.83, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 506, + 402, + 520 + ], + "score": 1.0, + "content": "as the sample weight. Similar definitions on", + "type": "text" + }, + { + "bbox": [ + 403, + 510, + 412, + 519 + ], + "score": 0.84, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 506, + 505, + 520 + ], + "score": 1.0, + "content": "has been proposed in", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 519, + 296, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 296, + 531 + ], + "score": 1.0, + "content": "Self-paced learning (SPL) Kumar et al. (2010).", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 536, + 505, + 569 + ], + "lines": [ + { + "bbox": [ + 104, + 534, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 104, + 534, + 351, + 549 + ], + "score": 1.0, + "content": "In Stochastic Gradient descend (SGD) methods, parameters", + "type": "text" + }, + { + "bbox": [ + 351, + 536, + 358, + 546 + ], + "score": 0.77, + "content": "\\pmb \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 534, + 505, + 549 + ], + "score": 1.0, + "content": "are updated with a certain step size", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 113, + 558 + ], + "score": 0.76, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "in each iteration with regard to a set of training samples. If we allow different sample weights in", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 557, + 320, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 320, + 570 + ], + "score": 1.0, + "content": "different iterations, a single update can be written as:", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "interline_equation", + "bbox": [ + 242, + 573, + 368, + 606 + ], + "lines": [ + { + "bbox": [ + 242, + 573, + 368, + 606 + ], + "spans": [ + { + "bbox": [ + 242, + 573, + 368, + 606 + ], + "score": 0.95, + "content": "\\pmb { \\theta } ^ { t + 1 } = \\pmb { \\theta } ^ { t } - \\eta \\sum _ { i = 1 } ^ { n } v _ { i } ^ { t } \\mathbf { g } _ { i } ^ { t } - \\eta \\mathbf { r } ^ { t } ,", + "type": "interline_equation", + "image_path": "f911e47349428d3009a00bd32a2c526871c2ec2abfcf626fe3b2210dd57be4e3.jpg" + } + ] + } + ], + "index": 34.5, + "virtual_lines": [ + { + "bbox": [ + 242, + 573, + 368, + 589.5 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 242, + 589.5, + 368, + 606.0 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 612, + 505, + 635 + ], + "lines": [ + { + "bbox": [ + 104, + 609, + 507, + 628 + ], + "spans": [ + { + "bbox": [ + 104, + 609, + 133, + 628 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 612, + 144, + 623 + ], + "score": 0.87, + "content": "\\theta ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 609, + 277, + 628 + ], + "score": 1.0, + "content": "is the parameter vector at epoch", + "type": "text" + }, + { + "bbox": [ + 278, + 614, + 282, + 623 + ], + "score": 0.64, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 609, + 286, + 628 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 286, + 611, + 463, + 626 + ], + "score": 0.84, + "content": "\\begin{array} { r } { \\mathbf { g } _ { i } ^ { t } = \\frac { \\partial } { \\partial \\pmb { \\theta } ^ { t } } L _ { i } ( y _ { i } , f ( \\mathbf { x } _ { i } , \\pmb { \\theta } ^ { t } ) ) , \\mathbf { r } ^ { t } = \\frac { \\partial } { \\partial \\pmb { \\theta } ^ { t } } R ( \\pmb { \\theta } ^ { t } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 609, + 484, + 628 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 484, + 612, + 494, + 625 + ], + "score": 0.89, + "content": "\\boldsymbol { v } _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 609, + 507, + 628 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 623, + 261, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 251, + 636 + ], + "score": 1.0, + "content": "the weight of ith sample at iteration", + "type": "text" + }, + { + "bbox": [ + 252, + 625, + 256, + 633 + ], + "score": 0.77, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 623, + 261, + 636 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "title", + "bbox": [ + 107, + 648, + 226, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 648, + 227, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 227, + 661 + ], + "score": 1.0, + "content": "2.2 SAMPLE IMPORTANCE", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 669, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 668, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 256, + 682 + ], + "score": 1.0, + "content": "If we change the weight of a sample", + "type": "text" + }, + { + "bbox": [ + 256, + 671, + 261, + 679 + ], + "score": 0.75, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 668, + 308, + 682 + ], + "score": 1.0, + "content": "at iteration", + "type": "text" + }, + { + "bbox": [ + 309, + 671, + 313, + 679 + ], + "score": 0.72, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 668, + 505, + 682 + ], + "score": 1.0, + "content": ", how would such change impact the parameter", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 680, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 680, + 506, + 694 + ], + "score": 1.0, + "content": "training in that iteration? We can answer this question by calculating the first order derivative of", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 689, + 388, + 707 + ], + "spans": [ + { + "bbox": [ + 104, + 689, + 180, + 707 + ], + "score": 1.0, + "content": "parameter change", + "type": "text" + }, + { + "bbox": [ + 180, + 691, + 253, + 703 + ], + "score": 0.93, + "content": "\\Delta \\pmb { \\theta } ^ { t } = \\pmb { \\theta } ^ { t + 1 } - \\pmb { \\theta } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 689, + 372, + 707 + ], + "score": 1.0, + "content": "with regard to sample weight", + "type": "text" + }, + { + "bbox": [ + 373, + 693, + 382, + 704 + ], + "score": 0.88, + "content": "\\boldsymbol { v } _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 689, + 388, + 707 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + }, + { + "type": "interline_equation", + "bbox": [ + 256, + 709, + 355, + 735 + ], + "lines": [ + { + "bbox": [ + 256, + 709, + 355, + 735 + ], + "spans": [ + { + "bbox": [ + 256, + 709, + 355, + 735 + ], + "score": 0.95, + "content": "{ \\boldsymbol { \\phi } } _ { i } ^ { t } = { \\frac { \\partial } { \\partial v _ { i } ^ { t } } } \\Delta { \\pmb { \\theta } } ^ { t } = - \\eta \\mathbf { g } _ { i } ^ { t } .", + "type": "interline_equation", + "image_path": "78153153295e27c983546c99d6faeb9380990239d25380c67002d86e081ab9d0.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 256, + 709, + 355, + 735 + ], + "spans": [], + "index": 42 + } + ] + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Motivated by the above hypothesis, we analyzed the sample importance in a 3 layer ReLU network", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "on two standard datasets. The results reveal several interesting facts about the sample importance in", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 201, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 201, + 117 + ], + "score": 1.0, + "content": "easy and hard samples:", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 82, + 505, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 121, + 503, + 155 + ], + "lines": [ + { + "bbox": [ + 105, + 121, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 505, + 135 + ], + "score": 1.0, + "content": "1. Easy and hard samples impact the parameters in different training stages. The biggest", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 133, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 505, + 145 + ], + "score": 1.0, + "content": "impact of easy samples on parameters are mostly during the early training stage, while the impact", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 142, + 328, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 328, + 157 + ], + "score": 1.0, + "content": "of hard samples become large in the late training stage.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 121, + 505, + 157 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 160, + 504, + 183 + ], + "lines": [ + { + "bbox": [ + 106, + 160, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 505, + 173 + ], + "score": 1.0, + "content": "2. Easy and hard samples impact the parameters in different layers. Easy samples impact have", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 171, + 481, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 481, + 184 + ], + "score": 1.0, + "content": "larger impact on top layer parameters, while hard samples shape the bottom layer parameters.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 160, + 505, + 184 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 187, + 505, + 232 + ], + "lines": [ + { + "bbox": [ + 106, + 188, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 505, + 200 + ], + "score": 1.0, + "content": "3. Mixing hard samples with easy samples in each batch helps training. We conducted batches", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 199, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 505, + 211 + ], + "score": 1.0, + "content": "with homogeneous or mixed “easiness”. We found that use of homogeneous batches hinders the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 210, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 505, + 222 + ], + "score": 1.0, + "content": "training. Hence, it is preferable for network to see both easy and hard samples during all stages of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 220, + 143, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 143, + 235 + ], + "score": 1.0, + "content": "training.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 188, + 505, + 235 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 237, + 505, + 271 + ], + "lines": [ + { + "bbox": [ + 105, + 238, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 505, + 250 + ], + "score": 1.0, + "content": "Next, we are going to give the definition of sample importance in Section 2. The empirical analysis", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 249, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 505, + 261 + ], + "score": 1.0, + "content": "for sample importance in the deep neural network in two real datasets is discussed in Section 3.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 261, + 345, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 345, + 271 + ], + "score": 1.0, + "content": "Extension about sample importance is showed in Section 4.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 238, + 505, + 271 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 287, + 239, + 300 + ], + "lines": [ + { + "bbox": [ + 105, + 286, + 240, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 240, + 302 + ], + "score": 1.0, + "content": "2 SAMPLE IMPORTANCE", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 312, + 504, + 335 + ], + "lines": [ + { + "bbox": [ + 105, + 311, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 505, + 325 + ], + "score": 1.0, + "content": "In this section, we are going to introduce the terminology and provide a quantitative measurement", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 324, + 294, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 294, + 335 + ], + "score": 1.0, + "content": "of sample importance for a training procedure.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 311, + 505, + 335 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 348, + 206, + 360 + ], + "lines": [ + { + "bbox": [ + 106, + 347, + 207, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 207, + 360 + ], + "score": 1.0, + "content": "2.1 SAMPLE WEIGHT", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 368, + 505, + 401 + ], + "lines": [ + { + "bbox": [ + 105, + 368, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 505, + 382 + ], + "score": 1.0, + "content": "In supervised learning, a model is trained by optimizing an objective over a set of observed training", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 379, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 141, + 393 + ], + "score": 1.0, + "content": "samples", + "type": "text" + }, + { + "bbox": [ + 142, + 380, + 172, + 392 + ], + "score": 0.92, + "content": "\\left( \\mathbf { x } _ { i } , y _ { i } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 379, + 193, + 393 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 193, + 380, + 227, + 392 + ], + "score": 0.93, + "content": "f ( \\mathbf { x } _ { i } , \\pmb { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 379, + 386, + 393 + ], + "score": 1.0, + "content": "be the output of a model for parameter", + "type": "text" + }, + { + "bbox": [ + 387, + 380, + 393, + 389 + ], + "score": 0.74, + "content": "\\pmb { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 379, + 505, + 393 + ], + "score": 1.0, + "content": ". The training objective can", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 389, + 163, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 163, + 403 + ], + "score": 1.0, + "content": "be written as:", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 368, + 505, + 403 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 246, + 398, + 363, + 431 + ], + "lines": [ + { + "bbox": [ + 246, + 398, + 363, + 431 + ], + "spans": [ + { + "bbox": [ + 246, + 398, + 363, + 431 + ], + "score": 0.95, + "content": "\\sum _ { i = 1 } ^ { n } L ( y _ { i } , f ( \\mathbf { x } _ { i } , \\pmb { \\theta } ) ) + R ( \\pmb { \\theta } ) ,", + "type": "interline_equation", + "image_path": "6c9700eb2b2cae7d3282a001c5cf3d7cfe57b076643c802dab9b5964942bf55a.jpg" + } + ] + } + ], + "index": 22.5, + "virtual_lines": [ + { + "bbox": [ + 246, + 398, + 363, + 414.5 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 246, + 414.5, + 363, + 431.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 433, + 505, + 466 + ], + "lines": [ + { + "bbox": [ + 106, + 433, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 133, + 445 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 433, + 195, + 445 + ], + "score": 0.92, + "content": "L ( y _ { i } , f ( \\mathbf { x } _ { i } , \\pmb { \\theta } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 433, + 283, + 445 + ], + "score": 1.0, + "content": "is the loss on sample", + "type": "text" + }, + { + "bbox": [ + 284, + 434, + 288, + 443 + ], + "score": 0.77, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 433, + 309, + 445 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 310, + 433, + 332, + 445 + ], + "score": 0.92, + "content": "R ( \\pmb \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 433, + 505, + 445 + ], + "score": 1.0, + "content": "is the regularization on the parameters. In", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 443, + 504, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 462, + 457 + ], + "score": 1.0, + "content": "order to highlight contribution of each sample, we can introduce sample specific weights", + "type": "text" + }, + { + "bbox": [ + 462, + 444, + 504, + 456 + ], + "score": 0.92, + "content": "v _ { i } \\in [ 0 , 1 ]", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 455, + 479, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 479, + 467 + ], + "score": 1.0, + "content": "which scale sample’s contribution to the loss. Hence, the objective in (1) can be rewritten as:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 433, + 505, + 467 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 242, + 471, + 367, + 504 + ], + "lines": [ + { + "bbox": [ + 242, + 471, + 367, + 504 + ], + "spans": [ + { + "bbox": [ + 242, + 471, + 367, + 504 + ], + "score": 0.94, + "content": "\\sum _ { i = 1 } ^ { n } v _ { i } L ( y _ { i } , f ( \\mathbf { x } _ { i } , \\pmb { \\theta } ) ) + R ( \\pmb { \\theta } ) ,", + "type": "interline_equation", + "image_path": "908eabf6f381664fd44fceefb840a8d6b32a49e06bd6bb8d0623fbfe011e5f72.jpg" + } + ] + } + ], + "index": 27.5, + "virtual_lines": [ + { + "bbox": [ + 242, + 471, + 367, + 487.5 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 242, + 487.5, + 367, + 504.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 507, + 504, + 531 + ], + "lines": [ + { + "bbox": [ + 106, + 506, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 198, + 520 + ], + "score": 1.0, + "content": "We define the weight", + "type": "text" + }, + { + "bbox": [ + 198, + 510, + 208, + 519 + ], + "score": 0.83, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 506, + 402, + 520 + ], + "score": 1.0, + "content": "as the sample weight. Similar definitions on", + "type": "text" + }, + { + "bbox": [ + 403, + 510, + 412, + 519 + ], + "score": 0.84, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 506, + 505, + 520 + ], + "score": 1.0, + "content": "has been proposed in", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 519, + 296, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 296, + 531 + ], + "score": 1.0, + "content": "Self-paced learning (SPL) Kumar et al. (2010).", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 506, + 505, + 531 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 536, + 505, + 569 + ], + "lines": [ + { + "bbox": [ + 104, + 534, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 104, + 534, + 351, + 549 + ], + "score": 1.0, + "content": "In Stochastic Gradient descend (SGD) methods, parameters", + "type": "text" + }, + { + "bbox": [ + 351, + 536, + 358, + 546 + ], + "score": 0.77, + "content": "\\pmb \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 534, + 505, + 549 + ], + "score": 1.0, + "content": "are updated with a certain step size", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 113, + 558 + ], + "score": 0.76, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "in each iteration with regard to a set of training samples. If we allow different sample weights in", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 557, + 320, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 320, + 570 + ], + "score": 1.0, + "content": "different iterations, a single update can be written as:", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 104, + 534, + 505, + 570 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 242, + 573, + 368, + 606 + ], + "lines": [ + { + "bbox": [ + 242, + 573, + 368, + 606 + ], + "spans": [ + { + "bbox": [ + 242, + 573, + 368, + 606 + ], + "score": 0.95, + "content": "\\pmb { \\theta } ^ { t + 1 } = \\pmb { \\theta } ^ { t } - \\eta \\sum _ { i = 1 } ^ { n } v _ { i } ^ { t } \\mathbf { g } _ { i } ^ { t } - \\eta \\mathbf { r } ^ { t } ,", + "type": "interline_equation", + "image_path": "f911e47349428d3009a00bd32a2c526871c2ec2abfcf626fe3b2210dd57be4e3.jpg" + } + ] + } + ], + "index": 34.5, + "virtual_lines": [ + { + "bbox": [ + 242, + 573, + 368, + 589.5 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 242, + 589.5, + 368, + 606.0 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 612, + 505, + 635 + ], + "lines": [ + { + "bbox": [ + 104, + 609, + 507, + 628 + ], + "spans": [ + { + "bbox": [ + 104, + 609, + 133, + 628 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 612, + 144, + 623 + ], + "score": 0.87, + "content": "\\theta ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 609, + 277, + 628 + ], + "score": 1.0, + "content": "is the parameter vector at epoch", + "type": "text" + }, + { + "bbox": [ + 278, + 614, + 282, + 623 + ], + "score": 0.64, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 609, + 286, + 628 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 286, + 611, + 463, + 626 + ], + "score": 0.84, + "content": "\\begin{array} { r } { \\mathbf { g } _ { i } ^ { t } = \\frac { \\partial } { \\partial \\pmb { \\theta } ^ { t } } L _ { i } ( y _ { i } , f ( \\mathbf { x } _ { i } , \\pmb { \\theta } ^ { t } ) ) , \\mathbf { r } ^ { t } = \\frac { \\partial } { \\partial \\pmb { \\theta } ^ { t } } R ( \\pmb { \\theta } ^ { t } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 609, + 484, + 628 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 484, + 612, + 494, + 625 + ], + "score": 0.89, + "content": "\\boldsymbol { v } _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 609, + 507, + 628 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 623, + 261, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 251, + 636 + ], + "score": 1.0, + "content": "the weight of ith sample at iteration", + "type": "text" + }, + { + "bbox": [ + 252, + 625, + 256, + 633 + ], + "score": 0.77, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 623, + 261, + 636 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 104, + 609, + 507, + 636 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 648, + 226, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 648, + 227, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 227, + 661 + ], + "score": 1.0, + "content": "2.2 SAMPLE IMPORTANCE", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 669, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 668, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 256, + 682 + ], + "score": 1.0, + "content": "If we change the weight of a sample", + "type": "text" + }, + { + "bbox": [ + 256, + 671, + 261, + 679 + ], + "score": 0.75, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 668, + 308, + 682 + ], + "score": 1.0, + "content": "at iteration", + "type": "text" + }, + { + "bbox": [ + 309, + 671, + 313, + 679 + ], + "score": 0.72, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 668, + 505, + 682 + ], + "score": 1.0, + "content": ", how would such change impact the parameter", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 680, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 680, + 506, + 694 + ], + "score": 1.0, + "content": "training in that iteration? We can answer this question by calculating the first order derivative of", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 689, + 388, + 707 + ], + "spans": [ + { + "bbox": [ + 104, + 689, + 180, + 707 + ], + "score": 1.0, + "content": "parameter change", + "type": "text" + }, + { + "bbox": [ + 180, + 691, + 253, + 703 + ], + "score": 0.93, + "content": "\\Delta \\pmb { \\theta } ^ { t } = \\pmb { \\theta } ^ { t + 1 } - \\pmb { \\theta } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 689, + 372, + 707 + ], + "score": 1.0, + "content": "with regard to sample weight", + "type": "text" + }, + { + "bbox": [ + 373, + 693, + 382, + 704 + ], + "score": 0.88, + "content": "\\boldsymbol { v } _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 689, + 388, + 707 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 104, + 668, + 506, + 707 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 256, + 709, + 355, + 735 + ], + "lines": [ + { + "bbox": [ + 256, + 709, + 355, + 735 + ], + "spans": [ + { + "bbox": [ + 256, + 709, + 355, + 735 + ], + "score": 0.95, + "content": "{ \\boldsymbol { \\phi } } _ { i } ^ { t } = { \\frac { \\partial } { \\partial v _ { i } ^ { t } } } \\Delta { \\pmb { \\theta } } ^ { t } = - \\eta \\mathbf { g } _ { i } ^ { t } .", + "type": "interline_equation", + "image_path": "78153153295e27c983546c99d6faeb9380990239d25380c67002d86e081ab9d0.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 256, + 709, + 355, + 735 + ], + "spans": [], + "index": 42 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 505, + 131 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 138, + 95 + ], + "score": 1.0, + "content": "We call", + "type": "text" + }, + { + "bbox": [ + 138, + 82, + 151, + 95 + ], + "score": 0.9, + "content": "\\boldsymbol { \\phi } _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 82, + 365, + 95 + ], + "score": 1.0, + "content": "the parameter affectibility by ith sample at iteration", + "type": "text" + }, + { + "bbox": [ + 365, + 83, + 370, + 92 + ], + "score": 0.61, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 82, + 374, + 95 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 374, + 82, + 386, + 94 + ], + "score": 0.87, + "content": "\\boldsymbol { \\phi } _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "is a vector consists of param-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 109 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 370, + 109 + ], + "score": 1.0, + "content": "eter affectibility from all parameters in the network. Specifically,", + "type": "text" + }, + { + "bbox": [ + 370, + 95, + 388, + 108 + ], + "score": 0.92, + "content": "\\boldsymbol { \\phi } _ { i , j } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 93, + 505, + 109 + ], + "score": 1.0, + "content": "is the parameter affectibility", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 107, + 506, + 122 + ], + "spans": [ + { + "bbox": [ + 105, + 107, + 120, + 122 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 120, + 110, + 126, + 120 + ], + "score": 0.73, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 107, + 238, + 122 + ], + "score": 1.0, + "content": "th parameter in the network.", + "type": "text" + }, + { + "bbox": [ + 238, + 107, + 250, + 120 + ], + "score": 0.9, + "content": "\\boldsymbol { \\phi } _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 107, + 506, + 122 + ], + "score": 1.0, + "content": "reflects the relationship between parameter change and different", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 119, + 144, + 132 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 144, + 132 + ], + "score": 1.0, + "content": "samples.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 106, + 136, + 505, + 159 + ], + "lines": [ + { + "bbox": [ + 106, + 135, + 506, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 135, + 506, + 149 + ], + "score": 1.0, + "content": "Typical deep networks contains millions of parameters. Hence, we are going to focus on groups of", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 147, + 482, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 420, + 160 + ], + "score": 1.0, + "content": "parameters of interests. We define ith sample’s importance for parameters of", + "type": "text" + }, + { + "bbox": [ + 420, + 148, + 434, + 157 + ], + "score": 0.27, + "content": "d \\mathrm { t h }", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 147, + 482, + 160 + ], + "score": 1.0, + "content": "layer of as:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "interline_equation", + "bbox": [ + 264, + 163, + 345, + 191 + ], + "lines": [ + { + "bbox": [ + 264, + 163, + 345, + 191 + ], + "spans": [ + { + "bbox": [ + 264, + 163, + 345, + 191 + ], + "score": 0.94, + "content": "\\beta _ { i , d } ^ { t } = \\sum _ { j \\in \\mathcal { Q } _ { d } } ( \\phi _ { i , j } ^ { t } ) ^ { 2 } ,", + "type": "interline_equation", + "image_path": "8626b5054cbdde3860883ba9c05d0db064409126f521bc710cb5c5be7c6c90de.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 264, + 163, + 345, + 177.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 264, + 177.0, + 345, + 191.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 195, + 505, + 218 + ], + "lines": [ + { + "bbox": [ + 105, + 194, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 133, + 209 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 196, + 147, + 207 + ], + "score": 0.89, + "content": "\\mathcal { Q } _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 194, + 373, + 209 + ], + "score": 1.0, + "content": "is a set consists of the indexes of all parameters in layer", + "type": "text" + }, + { + "bbox": [ + 373, + 196, + 380, + 206 + ], + "score": 0.78, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 194, + 505, + 209 + ], + "score": 1.0, + "content": ". Hence, sample’s importance", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 207, + 258, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 207, + 258, + 219 + ], + "score": 1.0, + "content": "for all the parameters in the model is:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "interline_equation", + "bbox": [ + 270, + 223, + 340, + 251 + ], + "lines": [ + { + "bbox": [ + 270, + 223, + 340, + 251 + ], + "spans": [ + { + "bbox": [ + 270, + 223, + 340, + 251 + ], + "score": 0.93, + "content": "\\alpha _ { i } ^ { t } = \\sum _ { j } ( \\phi _ { i , j } ^ { t } ) ^ { 2 } ,", + "type": "interline_equation", + "image_path": "a5f3836f8436def08a638eb774f585b8a6c938e4ea65ef386dd35259b0013a1d.jpg" + } + ] + } + ], + "index": 10.5, + "virtual_lines": [ + { + "bbox": [ + 270, + 223, + 340, + 237.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 270, + 237.0, + 340, + 251.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 256, + 257, + 271 + ], + "lines": [ + { + "bbox": [ + 104, + 253, + 254, + 275 + ], + "spans": [ + { + "bbox": [ + 104, + 253, + 187, + 275 + ], + "score": 1.0, + "content": "Obviously, we have", + "type": "text" + }, + { + "bbox": [ + 187, + 256, + 254, + 272 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\alpha _ { i } ^ { t } = \\sum _ { d = 1 } ^ { D } \\beta _ { i , d } ^ { t } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 276, + 497, + 288 + ], + "lines": [ + { + "bbox": [ + 106, + 275, + 498, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 498, + 289 + ], + "score": 1.0, + "content": "The sum of sample’s importance across all iterations is defined as overall importance of a sample:", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "interline_equation", + "bbox": [ + 281, + 292, + 330, + 319 + ], + "lines": [ + { + "bbox": [ + 281, + 292, + 330, + 319 + ], + "spans": [ + { + "bbox": [ + 281, + 292, + 330, + 319 + ], + "score": 0.94, + "content": "\\tau _ { i } = \\sum _ { t } \\alpha _ { i } ^ { t }", + "type": "interline_equation", + "image_path": "24968536f95e16a13035e3f1082522378fa5bfb112efbdcb7d333c36ee2a3446.jpg" + } + ] + } + ], + "index": 14.5, + "virtual_lines": [ + { + "bbox": [ + 281, + 292, + 330, + 305.5 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 281, + 305.5, + 330, + 319.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 329, + 504, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 506, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 220, + 344 + ], + "score": 1.0, + "content": "In general, for each sample", + "type": "text" + }, + { + "bbox": [ + 220, + 331, + 225, + 340 + ], + "score": 0.74, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 329, + 275, + 344 + ], + "score": 1.0, + "content": ", computing", + "type": "text" + }, + { + "bbox": [ + 275, + 330, + 292, + 344 + ], + "score": 0.92, + "content": "\\beta _ { i , d } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 329, + 506, + 344 + ], + "score": 1.0, + "content": "allows us to decompose its influence in the model’s", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 342, + 309, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 309, + 354 + ], + "score": 1.0, + "content": "training across training stages and different layers.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 107, + 359, + 504, + 393 + ], + "lines": [ + { + "bbox": [ + 106, + 359, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 359, + 505, + 372 + ], + "score": 1.0, + "content": "We note that the sample importance is a high-level measurement of the samples influence on param-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "score": 1.0, + "content": "eters at each iteration of the update. This quantity is not an accurate measurement of the relationship", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 381, + 499, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 499, + 392 + ], + "score": 1.0, + "content": "between a sample and final trained model. Refinements of this concept are discussed in Section 4.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "title", + "bbox": [ + 108, + 409, + 371, + 421 + ], + "lines": [ + { + "bbox": [ + 104, + 407, + 372, + 424 + ], + "spans": [ + { + "bbox": [ + 104, + 407, + 372, + 424 + ], + "score": 1.0, + "content": "3 EMPIRICAL ANALYSIS OF SAMPLE IMPORTANCE", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 433, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 106, + 432, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 506, + 447 + ], + "score": 1.0, + "content": "We are going to explore the samples’ importance for different layers at different epoch through a", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 444, + 336, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 336, + 456 + ], + "score": 1.0, + "content": "series of empirical experiments on two standard datasets.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "title", + "bbox": [ + 107, + 469, + 219, + 481 + ], + "lines": [ + { + "bbox": [ + 105, + 469, + 220, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 220, + 482 + ], + "score": 1.0, + "content": "3.1 EXPERIMENT SETUP", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 489, + 505, + 545 + ], + "lines": [ + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "Dataset All the analysis are performed on two standard datasets: MNIST 1 (LeCun et al. (1998)),", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 500, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 104, + 500, + 439, + 514 + ], + "score": 1.0, + "content": "a benchmark dataset that contains handwritten digit images. Each sample is a", + "type": "text" + }, + { + "bbox": [ + 439, + 501, + 476, + 511 + ], + "score": 0.89, + "content": "2 8 \\times 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 500, + 506, + 514 + ], + "score": 1.0, + "content": "image", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 511, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 525 + ], + "score": 1.0, + "content": "from 10 classes. We used 50000 samples for training and 10000 samples for testing. CIFAR-10", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 521, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 311, + 536 + ], + "score": 1.0, + "content": "2 (Krizhevsky & Hinton (2009)), a dataset contains", + "type": "text" + }, + { + "bbox": [ + 311, + 523, + 344, + 533 + ], + "score": 0.9, + "content": "3 2 \\times 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 521, + 505, + 536 + ], + "score": 1.0, + "content": "tiny color images from 10 classes. Each", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 532, + 482, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 482, + 547 + ], + "score": 1.0, + "content": "sample has 3072 features. We used 50000 samples for training and 10000 samples for testing.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 557, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 106, + 557, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 505, + 568 + ], + "score": 1.0, + "content": "Architecture We used a multilayer feed forward neural network with 3 hidden layers of 512 hid-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 568, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 580 + ], + "score": 1.0, + "content": "den nodes with rectified linear units (ReLU) activation function, a linear output layer, and a softmax", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 580, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 505, + 591 + ], + "score": 1.0, + "content": "layer on top for classification. The weights in each hidden layer are initialized according to Glorot", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 589, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 506, + 604 + ], + "score": 1.0, + "content": "& Bengio (2010). For hyper-parameters, we used learning rate of 0.1, batch size of 100, 50 total", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 601, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 225, + 614 + ], + "score": 1.0, + "content": "epochs, and weight-decay of", + "type": "text" + }, + { + "bbox": [ + 225, + 602, + 253, + 612 + ], + "score": 0.8, + "content": "1 e - 5", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 601, + 506, + 614 + ], + "score": 1.0, + "content": ". No momentum or learning decay was used. All the code are", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 613, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 505, + 624 + ], + "score": 1.0, + "content": "based on a common deep learning package Theano from Bergstra et al. (2010); Bastien et al. (2012).", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32.5 + }, + { + "type": "title", + "bbox": [ + 105, + 637, + 475, + 648 + ], + "lines": [ + { + "bbox": [ + 106, + 637, + 475, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 475, + 648 + ], + "score": 1.0, + "content": "3.2 SAMPLE IMPORTANCE IS STABLE WITH RESPECT TO DIFFERENT INITIALIZATIONS", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 657, + 505, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 657, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 505, + 670 + ], + "score": 1.0, + "content": "Firstly, we want to explore whether the sample importance is stable under different initializations.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "We used three different random seeds to initialize the network parameters and calculated the sample", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 680, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 680, + 505, + 692 + ], + "score": 1.0, + "content": "importance every five epochs. We computed the Spearman’s rank correlation between sample im-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 690, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 197, + 703 + ], + "score": 1.0, + "content": "portance to the model,", + "type": "text" + }, + { + "bbox": [ + 198, + 690, + 208, + 703 + ], + "score": 0.89, + "content": "\\alpha _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 690, + 505, + 703 + ], + "score": 1.0, + "content": ", in each pair of initializations. This correlation remains high in all epochs,", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 118, + 711, + 355, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 709, + 308, + 722 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 308, + 722 + ], + "score": 1.0, + "content": "1http://yann.lecun.com/expdb/mnist/", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 719, + 356, + 733 + ], + "spans": [ + { + "bbox": [ + 118, + 719, + 356, + 733 + ], + "score": 1.0, + "content": "2https://www.cs.toronto.edu/˜kriz/cifar.html", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 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 2017", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 505, + 131 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 138, + 95 + ], + "score": 1.0, + "content": "We call", + "type": "text" + }, + { + "bbox": [ + 138, + 82, + 151, + 95 + ], + "score": 0.9, + "content": "\\boldsymbol { \\phi } _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 82, + 365, + 95 + ], + "score": 1.0, + "content": "the parameter affectibility by ith sample at iteration", + "type": "text" + }, + { + "bbox": [ + 365, + 83, + 370, + 92 + ], + "score": 0.61, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 82, + 374, + 95 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 374, + 82, + 386, + 94 + ], + "score": 0.87, + "content": "\\boldsymbol { \\phi } _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "is a vector consists of param-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 109 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 370, + 109 + ], + "score": 1.0, + "content": "eter affectibility from all parameters in the network. Specifically,", + "type": "text" + }, + { + "bbox": [ + 370, + 95, + 388, + 108 + ], + "score": 0.92, + "content": "\\boldsymbol { \\phi } _ { i , j } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 93, + 505, + 109 + ], + "score": 1.0, + "content": "is the parameter affectibility", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 107, + 506, + 122 + ], + "spans": [ + { + "bbox": [ + 105, + 107, + 120, + 122 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 120, + 110, + 126, + 120 + ], + "score": 0.73, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 107, + 238, + 122 + ], + "score": 1.0, + "content": "th parameter in the network.", + "type": "text" + }, + { + "bbox": [ + 238, + 107, + 250, + 120 + ], + "score": 0.9, + "content": "\\boldsymbol { \\phi } _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 107, + 506, + 122 + ], + "score": 1.0, + "content": "reflects the relationship between parameter change and different", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 119, + 144, + 132 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 144, + 132 + ], + "score": 1.0, + "content": "samples.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 82, + 506, + 132 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 136, + 505, + 159 + ], + "lines": [ + { + "bbox": [ + 106, + 135, + 506, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 135, + 506, + 149 + ], + "score": 1.0, + "content": "Typical deep networks contains millions of parameters. Hence, we are going to focus on groups of", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 147, + 482, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 420, + 160 + ], + "score": 1.0, + "content": "parameters of interests. We define ith sample’s importance for parameters of", + "type": "text" + }, + { + "bbox": [ + 420, + 148, + 434, + 157 + ], + "score": 0.27, + "content": "d \\mathrm { t h }", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 147, + 482, + 160 + ], + "score": 1.0, + "content": "layer of as:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 135, + 506, + 160 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 264, + 163, + 345, + 191 + ], + "lines": [ + { + "bbox": [ + 264, + 163, + 345, + 191 + ], + "spans": [ + { + "bbox": [ + 264, + 163, + 345, + 191 + ], + "score": 0.94, + "content": "\\beta _ { i , d } ^ { t } = \\sum _ { j \\in \\mathcal { Q } _ { d } } ( \\phi _ { i , j } ^ { t } ) ^ { 2 } ,", + "type": "interline_equation", + "image_path": "8626b5054cbdde3860883ba9c05d0db064409126f521bc710cb5c5be7c6c90de.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 264, + 163, + 345, + 177.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 264, + 177.0, + 345, + 191.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 195, + 505, + 218 + ], + "lines": [ + { + "bbox": [ + 105, + 194, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 133, + 209 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 196, + 147, + 207 + ], + "score": 0.89, + "content": "\\mathcal { Q } _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 194, + 373, + 209 + ], + "score": 1.0, + "content": "is a set consists of the indexes of all parameters in layer", + "type": "text" + }, + { + "bbox": [ + 373, + 196, + 380, + 206 + ], + "score": 0.78, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 194, + 505, + 209 + ], + "score": 1.0, + "content": ". Hence, sample’s importance", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 207, + 258, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 207, + 258, + 219 + ], + "score": 1.0, + "content": "for all the parameters in the model is:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 194, + 505, + 219 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 270, + 223, + 340, + 251 + ], + "lines": [ + { + "bbox": [ + 270, + 223, + 340, + 251 + ], + "spans": [ + { + "bbox": [ + 270, + 223, + 340, + 251 + ], + "score": 0.93, + "content": "\\alpha _ { i } ^ { t } = \\sum _ { j } ( \\phi _ { i , j } ^ { t } ) ^ { 2 } ,", + "type": "interline_equation", + "image_path": "a5f3836f8436def08a638eb774f585b8a6c938e4ea65ef386dd35259b0013a1d.jpg" + } + ] + } + ], + "index": 10.5, + "virtual_lines": [ + { + "bbox": [ + 270, + 223, + 340, + 237.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 270, + 237.0, + 340, + 251.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 256, + 257, + 271 + ], + "lines": [ + { + "bbox": [ + 104, + 253, + 254, + 275 + ], + "spans": [ + { + "bbox": [ + 104, + 253, + 187, + 275 + ], + "score": 1.0, + "content": "Obviously, we have", + "type": "text" + }, + { + "bbox": [ + 187, + 256, + 254, + 272 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\alpha _ { i } ^ { t } = \\sum _ { d = 1 } ^ { D } \\beta _ { i , d } ^ { t } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 104, + 253, + 254, + 275 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 276, + 497, + 288 + ], + "lines": [ + { + "bbox": [ + 106, + 275, + 498, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 498, + 289 + ], + "score": 1.0, + "content": "The sum of sample’s importance across all iterations is defined as overall importance of a sample:", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 275, + 498, + 289 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 281, + 292, + 330, + 319 + ], + "lines": [ + { + "bbox": [ + 281, + 292, + 330, + 319 + ], + "spans": [ + { + "bbox": [ + 281, + 292, + 330, + 319 + ], + "score": 0.94, + "content": "\\tau _ { i } = \\sum _ { t } \\alpha _ { i } ^ { t }", + "type": "interline_equation", + "image_path": "24968536f95e16a13035e3f1082522378fa5bfb112efbdcb7d333c36ee2a3446.jpg" + } + ] + } + ], + "index": 14.5, + "virtual_lines": [ + { + "bbox": [ + 281, + 292, + 330, + 305.5 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 281, + 305.5, + 330, + 319.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 329, + 504, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 506, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 220, + 344 + ], + "score": 1.0, + "content": "In general, for each sample", + "type": "text" + }, + { + "bbox": [ + 220, + 331, + 225, + 340 + ], + "score": 0.74, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 329, + 275, + 344 + ], + "score": 1.0, + "content": ", computing", + "type": "text" + }, + { + "bbox": [ + 275, + 330, + 292, + 344 + ], + "score": 0.92, + "content": "\\beta _ { i , d } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 329, + 506, + 344 + ], + "score": 1.0, + "content": "allows us to decompose its influence in the model’s", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 342, + 309, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 309, + 354 + ], + "score": 1.0, + "content": "training across training stages and different layers.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 329, + 506, + 354 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 359, + 504, + 393 + ], + "lines": [ + { + "bbox": [ + 106, + 359, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 359, + 505, + 372 + ], + "score": 1.0, + "content": "We note that the sample importance is a high-level measurement of the samples influence on param-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "score": 1.0, + "content": "eters at each iteration of the update. This quantity is not an accurate measurement of the relationship", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 381, + 499, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 499, + 392 + ], + "score": 1.0, + "content": "between a sample and final trained model. Refinements of this concept are discussed in Section 4.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 359, + 505, + 392 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 409, + 371, + 421 + ], + "lines": [ + { + "bbox": [ + 104, + 407, + 372, + 424 + ], + "spans": [ + { + "bbox": [ + 104, + 407, + 372, + 424 + ], + "score": 1.0, + "content": "3 EMPIRICAL ANALYSIS OF SAMPLE IMPORTANCE", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 433, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 106, + 432, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 506, + 447 + ], + "score": 1.0, + "content": "We are going to explore the samples’ importance for different layers at different epoch through a", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 444, + 336, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 336, + 456 + ], + "score": 1.0, + "content": "series of empirical experiments on two standard datasets.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 432, + 506, + 456 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 469, + 219, + 481 + ], + "lines": [ + { + "bbox": [ + 105, + 469, + 220, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 220, + 482 + ], + "score": 1.0, + "content": "3.1 EXPERIMENT SETUP", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 489, + 505, + 545 + ], + "lines": [ + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "Dataset All the analysis are performed on two standard datasets: MNIST 1 (LeCun et al. (1998)),", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 500, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 104, + 500, + 439, + 514 + ], + "score": 1.0, + "content": "a benchmark dataset that contains handwritten digit images. Each sample is a", + "type": "text" + }, + { + "bbox": [ + 439, + 501, + 476, + 511 + ], + "score": 0.89, + "content": "2 8 \\times 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 500, + 506, + 514 + ], + "score": 1.0, + "content": "image", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 511, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 525 + ], + "score": 1.0, + "content": "from 10 classes. We used 50000 samples for training and 10000 samples for testing. CIFAR-10", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 521, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 311, + 536 + ], + "score": 1.0, + "content": "2 (Krizhevsky & Hinton (2009)), a dataset contains", + "type": "text" + }, + { + "bbox": [ + 311, + 523, + 344, + 533 + ], + "score": 0.9, + "content": "3 2 \\times 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 521, + 505, + 536 + ], + "score": 1.0, + "content": "tiny color images from 10 classes. Each", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 532, + 482, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 482, + 547 + ], + "score": 1.0, + "content": "sample has 3072 features. We used 50000 samples for training and 10000 samples for testing.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27, + "bbox_fs": [ + 104, + 489, + 506, + 547 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 557, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 106, + 557, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 505, + 568 + ], + "score": 1.0, + "content": "Architecture We used a multilayer feed forward neural network with 3 hidden layers of 512 hid-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 568, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 580 + ], + "score": 1.0, + "content": "den nodes with rectified linear units (ReLU) activation function, a linear output layer, and a softmax", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 580, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 505, + 591 + ], + "score": 1.0, + "content": "layer on top for classification. The weights in each hidden layer are initialized according to Glorot", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 589, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 506, + 604 + ], + "score": 1.0, + "content": "& Bengio (2010). For hyper-parameters, we used learning rate of 0.1, batch size of 100, 50 total", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 601, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 225, + 614 + ], + "score": 1.0, + "content": "epochs, and weight-decay of", + "type": "text" + }, + { + "bbox": [ + 225, + 602, + 253, + 612 + ], + "score": 0.8, + "content": "1 e - 5", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 601, + 506, + 614 + ], + "score": 1.0, + "content": ". No momentum or learning decay was used. All the code are", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 613, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 505, + 624 + ], + "score": 1.0, + "content": "based on a common deep learning package Theano from Bergstra et al. (2010); Bastien et al. (2012).", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 557, + 506, + 624 + ] + }, + { + "type": "title", + "bbox": [ + 105, + 637, + 475, + 648 + ], + "lines": [ + { + "bbox": [ + 106, + 637, + 475, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 475, + 648 + ], + "score": 1.0, + "content": "3.2 SAMPLE IMPORTANCE IS STABLE WITH RESPECT TO DIFFERENT INITIALIZATIONS", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 657, + 505, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 657, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 505, + 670 + ], + "score": 1.0, + "content": "Firstly, we want to explore whether the sample importance is stable under different initializations.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "We used three different random seeds to initialize the network parameters and calculated the sample", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 680, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 680, + 505, + 692 + ], + "score": 1.0, + "content": "importance every five epochs. We computed the Spearman’s rank correlation between sample im-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 690, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 197, + 703 + ], + "score": 1.0, + "content": "portance to the model,", + "type": "text" + }, + { + "bbox": [ + 198, + 690, + 208, + 703 + ], + "score": 0.89, + "content": "\\alpha _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 690, + 505, + 703 + ], + "score": 1.0, + "content": ", in each pair of initializations. This correlation remains high in all epochs,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "above 0.9, as shown in Figure 1. This indicates that the sample importance is relatively stable to", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "initialization of the network. Hence, all the following analysis are based on the results from initial-", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "ization seed 1. (Details of training and test error for the chosen model can be viewed in Appendix", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 113, + 149, + 129 + ], + "spans": [ + { + "bbox": [ + 104, + 113, + 149, + 129 + ], + "score": 1.0, + "content": "Figure 9).", + "type": "text", + "cross_page": true + } + ], + "index": 3 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 657, + 505, + 703 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "above 0.9, as shown in Figure 1. This indicates that the sample importance is relatively stable to", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "initialization of the network. Hence, all the following analysis are based on the results from initial-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "ization seed 1. (Details of training and test error for the chosen model can be viewed in Appendix", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 113, + 149, + 129 + ], + "spans": [ + { + "bbox": [ + 104, + 113, + 149, + 129 + ], + "score": 1.0, + "content": "Figure 9).", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "image", + "bbox": [ + 168, + 149, + 443, + 284 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 168, + 149, + 443, + 284 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 168, + 149, + 443, + 284 + ], + "spans": [ + { + "bbox": [ + 168, + 149, + 443, + 284 + ], + "score": 0.97, + "type": "image", + "image_path": "0a3fc09ab1365aa5c2ccb287411ae343403bce7f9654cd12222a19101f92d457.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 168, + 149, + 443, + 194.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 168, + 194.0, + 443, + 239.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 168, + 239.0, + 443, + 284.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 305, + 505, + 361 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 305, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 505, + 318 + ], + "score": 1.0, + "content": "Figure 1: Does initialization affect sample’s importance? Sample importance is preserved be-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 316, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 505, + 329 + ], + "score": 1.0, + "content": "tween initializations of the network. For each epoch, and a pair of initializations, we computed", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 328, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 328, + 505, + 340 + ], + "score": 1.0, + "content": "Spearman Correlation of samples’ importance. Across all epochs, the correlation is of greater than", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "score": 1.0, + "content": "0.9 in both MNIST and CIFAR-10. Early epochs show higher consistency between ranks of sample", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 350, + 277, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 277, + 362 + ], + "score": 1.0, + "content": "importance across different initializations.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9 + } + ], + "index": 7.0 + }, + { + "type": "title", + "bbox": [ + 109, + 399, + 312, + 410 + ], + "lines": [ + { + "bbox": [ + 106, + 399, + 315, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 315, + 411 + ], + "score": 1.0, + "content": "3.3 DECOMPOSITION OF SAMPLE IMPORTANCE", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 423, + 505, + 535 + ], + "lines": [ + { + "bbox": [ + 105, + 423, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 437 + ], + "score": 1.0, + "content": "To better understand and visualize the sample importance, we firstly calculate the overall sample", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 102, + 429, + 504, + 452 + ], + "spans": [ + { + "bbox": [ + 102, + 429, + 225, + 452 + ], + "score": 1.0, + "content": "importance at each epoch as", + "type": "text" + }, + { + "bbox": [ + 225, + 434, + 289, + 447 + ], + "score": 0.93, + "content": "\\begin{array} { r } { A ^ { t } = \\sum _ { i = 1 } ^ { n } \\dot { \\alpha _ { i } ^ { t } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 429, + 497, + 452 + ], + "score": 1.0, + "content": ". Similarly, the overall sample importance to layer", + "type": "text" + }, + { + "bbox": [ + 497, + 435, + 504, + 444 + ], + "score": 0.72, + "content": "d", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 442, + 509, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 116, + 461 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 117, + 445, + 187, + 459 + ], + "score": 0.93, + "content": "\\begin{array} { r } { B _ { d } ^ { t } = \\sum _ { i = 1 } ^ { n } \\beta _ { i , d } ^ { t } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 442, + 509, + 461 + ], + "score": 1.0, + "content": ". We show the overall sample importance and its decomposition in layers for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 458, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 505, + 471 + ], + "score": 1.0, + "content": "two datasets in Figure 2. Firstly, we found that even with a fixed learning rate, the overall sample", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 468, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 483 + ], + "score": 1.0, + "content": "importance is different under different epochs. Output layer always has the largest average sample", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 480, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 505, + 493 + ], + "score": 1.0, + "content": "importance per parameter, and its contribution reaches the maximum in the early training stage and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 491, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 503 + ], + "score": 1.0, + "content": "then drops. Each layer contributes differently to the total sample importance. In both MNIST and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 502, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 505, + 514 + ], + "score": 1.0, + "content": "CIFAR-10, the 2nd layer contributes more than the 3rd layer. In CIFAR-10, the 1st layer’s provides", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 513, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 506, + 526 + ], + "score": 1.0, + "content": "largest contribution the total sample importance, as it contains much more parameters than other", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 524, + 455, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 455, + 537 + ], + "score": 1.0, + "content": "layers. Interestingly, all classes do not provide the same amount of sample importance.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 107, + 541, + 505, + 618 + ], + "lines": [ + { + "bbox": [ + 106, + 541, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 505, + 553 + ], + "score": 1.0, + "content": "We found that most samples have small sample importance (Appendix Figure 10). To visualize the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 552, + 504, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 504, + 563 + ], + "score": 1.0, + "content": "contribution of different samples, we split the samples based on their total importance into three", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 563, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 140, + 575 + ], + "score": 1.0, + "content": "groups:", + "type": "text" + }, + { + "bbox": [ + 141, + 563, + 160, + 574 + ], + "score": 0.87, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 563, + 180, + 575 + ], + "score": 1.0, + "content": ", top", + "type": "text" + }, + { + "bbox": [ + 181, + 563, + 200, + 574 + ], + "score": 0.74, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 563, + 225, + 575 + ], + "score": 1.0, + "content": "– top", + "type": "text" + }, + { + "bbox": [ + 225, + 563, + 245, + 573 + ], + "score": 0.84, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 563, + 389, + 575 + ], + "score": 1.0, + "content": "most important samples, and other", + "type": "text" + }, + { + "bbox": [ + 390, + 563, + 410, + 573 + ], + "score": 0.86, + "content": "80 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 563, + 505, + 575 + ], + "score": 1.0, + "content": "samples. We show the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 574, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 450, + 586 + ], + "score": 1.0, + "content": "decomposition of importance contribution in each layer in Figure 3. In MNIST, the top", + "type": "text" + }, + { + "bbox": [ + 450, + 574, + 470, + 585 + ], + "score": 0.86, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 574, + 505, + 586 + ], + "score": 1.0, + "content": "samples", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 585, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 597 + ], + "score": 1.0, + "content": "contribute almost all the sample importance. In CIFAR-10, most important samples contribute more", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 596, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 383, + 609 + ], + "score": 1.0, + "content": "in lower layers rather than output layer. This result indicates that top", + "type": "text" + }, + { + "bbox": [ + 383, + 596, + 406, + 606 + ], + "score": 0.83, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 596, + 505, + 609 + ], + "score": 1.0, + "content": "most important samples", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 607, + 316, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 316, + 620 + ], + "score": 1.0, + "content": "contribute to the majority of the sample importance.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26 + }, + { + "type": "title", + "bbox": [ + 107, + 642, + 370, + 652 + ], + "lines": [ + { + "bbox": [ + 106, + 641, + 371, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 371, + 654 + ], + "score": 1.0, + "content": "3.4 SAMPLE IMPORTANCE AND NEGATIVE LOG-LIKELIHOOD", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "Negative log likelihood (NLL) is the loss metric we used for training objective. It has been used", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "to measure the “easiness” of a sample in Curriculum learning Bengio et al. (2009) and Self-paced", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "learning Kumar et al. (2010). Intuitively, the samples with large NLL should also have large sample", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 699, + 504, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 504, + 711 + ], + "score": 1.0, + "content": "importance (SI). However, in our experiment, we found that this is not always the case. In Figure 4,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "we found that 1) NLL and SI become more correlated as training goes on. However, 2) NLL is not", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 721, + 456, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 456, + 733 + ], + "score": 1.0, + "content": "predictive of the SI. There are many points with high NLL but small SI, and otherwise.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 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 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 127 + ], + "lines": [], + "index": 1.5, + "bbox_fs": [ + 104, + 81, + 506, + 129 + ], + "lines_deleted": true + }, + { + "type": "image", + "bbox": [ + 168, + 149, + 443, + 284 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 168, + 149, + 443, + 284 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 168, + 149, + 443, + 284 + ], + "spans": [ + { + "bbox": [ + 168, + 149, + 443, + 284 + ], + "score": 0.97, + "type": "image", + "image_path": "0a3fc09ab1365aa5c2ccb287411ae343403bce7f9654cd12222a19101f92d457.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 168, + 149, + 443, + 194.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 168, + 194.0, + 443, + 239.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 168, + 239.0, + 443, + 284.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 305, + 505, + 361 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 305, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 505, + 318 + ], + "score": 1.0, + "content": "Figure 1: Does initialization affect sample’s importance? Sample importance is preserved be-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 316, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 505, + 329 + ], + "score": 1.0, + "content": "tween initializations of the network. For each epoch, and a pair of initializations, we computed", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 328, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 328, + 505, + 340 + ], + "score": 1.0, + "content": "Spearman Correlation of samples’ importance. Across all epochs, the correlation is of greater than", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "score": 1.0, + "content": "0.9 in both MNIST and CIFAR-10. Early epochs show higher consistency between ranks of sample", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 350, + 277, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 277, + 362 + ], + "score": 1.0, + "content": "importance across different initializations.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9 + } + ], + "index": 7.0 + }, + { + "type": "title", + "bbox": [ + 109, + 399, + 312, + 410 + ], + "lines": [ + { + "bbox": [ + 106, + 399, + 315, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 315, + 411 + ], + "score": 1.0, + "content": "3.3 DECOMPOSITION OF SAMPLE IMPORTANCE", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 423, + 505, + 535 + ], + "lines": [ + { + "bbox": [ + 105, + 423, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 437 + ], + "score": 1.0, + "content": "To better understand and visualize the sample importance, we firstly calculate the overall sample", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 102, + 429, + 504, + 452 + ], + "spans": [ + { + "bbox": [ + 102, + 429, + 225, + 452 + ], + "score": 1.0, + "content": "importance at each epoch as", + "type": "text" + }, + { + "bbox": [ + 225, + 434, + 289, + 447 + ], + "score": 0.93, + "content": "\\begin{array} { r } { A ^ { t } = \\sum _ { i = 1 } ^ { n } \\dot { \\alpha _ { i } ^ { t } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 429, + 497, + 452 + ], + "score": 1.0, + "content": ". Similarly, the overall sample importance to layer", + "type": "text" + }, + { + "bbox": [ + 497, + 435, + 504, + 444 + ], + "score": 0.72, + "content": "d", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 442, + 509, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 116, + 461 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 117, + 445, + 187, + 459 + ], + "score": 0.93, + "content": "\\begin{array} { r } { B _ { d } ^ { t } = \\sum _ { i = 1 } ^ { n } \\beta _ { i , d } ^ { t } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 442, + 509, + 461 + ], + "score": 1.0, + "content": ". We show the overall sample importance and its decomposition in layers for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 458, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 505, + 471 + ], + "score": 1.0, + "content": "two datasets in Figure 2. Firstly, we found that even with a fixed learning rate, the overall sample", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 468, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 483 + ], + "score": 1.0, + "content": "importance is different under different epochs. Output layer always has the largest average sample", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 480, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 505, + 493 + ], + "score": 1.0, + "content": "importance per parameter, and its contribution reaches the maximum in the early training stage and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 491, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 503 + ], + "score": 1.0, + "content": "then drops. Each layer contributes differently to the total sample importance. In both MNIST and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 502, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 505, + 514 + ], + "score": 1.0, + "content": "CIFAR-10, the 2nd layer contributes more than the 3rd layer. In CIFAR-10, the 1st layer’s provides", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 513, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 506, + 526 + ], + "score": 1.0, + "content": "largest contribution the total sample importance, as it contains much more parameters than other", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 524, + 455, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 455, + 537 + ], + "score": 1.0, + "content": "layers. Interestingly, all classes do not provide the same amount of sample importance.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 17.5, + "bbox_fs": [ + 102, + 423, + 509, + 537 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 541, + 505, + 618 + ], + "lines": [ + { + "bbox": [ + 106, + 541, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 505, + 553 + ], + "score": 1.0, + "content": "We found that most samples have small sample importance (Appendix Figure 10). To visualize the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 552, + 504, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 504, + 563 + ], + "score": 1.0, + "content": "contribution of different samples, we split the samples based on their total importance into three", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 563, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 140, + 575 + ], + "score": 1.0, + "content": "groups:", + "type": "text" + }, + { + "bbox": [ + 141, + 563, + 160, + 574 + ], + "score": 0.87, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 563, + 180, + 575 + ], + "score": 1.0, + "content": ", top", + "type": "text" + }, + { + "bbox": [ + 181, + 563, + 200, + 574 + ], + "score": 0.74, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 563, + 225, + 575 + ], + "score": 1.0, + "content": "– top", + "type": "text" + }, + { + "bbox": [ + 225, + 563, + 245, + 573 + ], + "score": 0.84, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 563, + 389, + 575 + ], + "score": 1.0, + "content": "most important samples, and other", + "type": "text" + }, + { + "bbox": [ + 390, + 563, + 410, + 573 + ], + "score": 0.86, + "content": "80 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 563, + 505, + 575 + ], + "score": 1.0, + "content": "samples. We show the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 574, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 450, + 586 + ], + "score": 1.0, + "content": "decomposition of importance contribution in each layer in Figure 3. In MNIST, the top", + "type": "text" + }, + { + "bbox": [ + 450, + 574, + 470, + 585 + ], + "score": 0.86, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 574, + 505, + 586 + ], + "score": 1.0, + "content": "samples", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 585, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 597 + ], + "score": 1.0, + "content": "contribute almost all the sample importance. In CIFAR-10, most important samples contribute more", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 596, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 383, + 609 + ], + "score": 1.0, + "content": "in lower layers rather than output layer. This result indicates that top", + "type": "text" + }, + { + "bbox": [ + 383, + 596, + 406, + 606 + ], + "score": 0.83, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 596, + 505, + 609 + ], + "score": 1.0, + "content": "most important samples", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 607, + 316, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 316, + 620 + ], + "score": 1.0, + "content": "contribute to the majority of the sample importance.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 541, + 505, + 620 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 642, + 370, + 652 + ], + "lines": [ + { + "bbox": [ + 106, + 641, + 371, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 371, + 654 + ], + "score": 1.0, + "content": "3.4 SAMPLE IMPORTANCE AND NEGATIVE LOG-LIKELIHOOD", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "Negative log likelihood (NLL) is the loss metric we used for training objective. It has been used", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "to measure the “easiness” of a sample in Curriculum learning Bengio et al. (2009) and Self-paced", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "learning Kumar et al. (2010). Intuitively, the samples with large NLL should also have large sample", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 699, + 504, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 504, + 711 + ], + "score": 1.0, + "content": "importance (SI). However, in our experiment, we found that this is not always the case. In Figure 4,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "we found that 1) NLL and SI become more correlated as training goes on. However, 2) NLL is not", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 721, + 456, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 456, + 733 + ], + "score": 1.0, + "content": "predictive of the SI. There are many points with high NLL but small SI, and otherwise.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 666, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 81, + 532, + 329 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 81, + 532, + 329 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 81, + 532, + 329 + ], + "spans": [ + { + "bbox": [ + 108, + 81, + 532, + 329 + ], + "score": 0.966, + "type": "image", + "image_path": "7b01f6ee56ad410d554315b0e829197fb194fba35538582c41bb8eb261a1288f.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 81, + 532, + 163.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 163.66666666666669, + 532, + 246.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 246.33333333333337, + 532, + 329.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 346, + 506, + 391 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 346, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 506, + 359 + ], + "score": 1.0, + "content": "Figure 2: Which classes and at which stage shape the network’s layer’s parameters? Parameters", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "of different layers are learned at different times. Parameters in Output layers are learned mostly", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 369, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 506, + 381 + ], + "score": 1.0, + "content": "during the early training stage. In the lower layers, parameters are learned predominantly during the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 379, + 476, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 476, + 391 + ], + "score": 1.0, + "content": "middle and late training stage. All classes do not contribute equally to training of the model.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "image", + "bbox": [ + 110, + 404, + 559, + 595 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 404, + 559, + 595 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 110, + 404, + 559, + 595 + ], + "spans": [ + { + "bbox": [ + 110, + 404, + 559, + 595 + ], + "score": 0.971, + "type": "image", + "image_path": "c65928096336387e31f6986d8a5c1157a406686b28f9f2fb2cc62ef0c29e1cd8.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 110, + 404, + 559, + 467.6666666666667 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 110, + 467.6666666666667, + 559, + 531.3333333333334 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 110, + 531.3333333333334, + 559, + 595.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 612, + 506, + 646 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 419, + 624 + ], + "score": 1.0, + "content": "Figure 3: Are all data samples equally important for all layers? The top", + "type": "text" + }, + { + "bbox": [ + 420, + 612, + 439, + 623 + ], + "score": 0.84, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "most important", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 622, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 506, + 636 + ], + "score": 1.0, + "content": "samples contributes to the majority of parameter learning, especially in lower layers. “L1” to “L3”", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 634, + 347, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 347, + 646 + ], + "score": 1.0, + "content": "stands for Layer 1 to Layer 3. “Out” stands for output layer.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "title", + "bbox": [ + 111, + 667, + 369, + 678 + ], + "lines": [ + { + "bbox": [ + 108, + 666, + 371, + 679 + ], + "spans": [ + { + "bbox": [ + 108, + 666, + 371, + 679 + ], + "score": 1.0, + "content": "3.5 CLUSTERING SAMPLES BASED ON SAMPLE IMPORTANCE", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "To better visualize the importance of different samples, we provide three representative clusters of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "samples for each dataset. In MNIST, we clustered all digit “5” samples into 20 clusters based on their", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "epoch-specific, layer-specific sample importance. In CIFAR-10, we clustered all “horse” samples", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 720, + 476, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 476, + 734 + ], + "score": 1.0, + "content": "into 30 clusters using the same features as MNIST. Kmeans algorithm is used for clustering.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 81, + 532, + 329 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 81, + 532, + 329 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 81, + 532, + 329 + ], + "spans": [ + { + "bbox": [ + 108, + 81, + 532, + 329 + ], + "score": 0.966, + "type": "image", + "image_path": "7b01f6ee56ad410d554315b0e829197fb194fba35538582c41bb8eb261a1288f.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 81, + 532, + 163.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 163.66666666666669, + 532, + 246.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 246.33333333333337, + 532, + 329.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 346, + 506, + 391 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 346, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 506, + 359 + ], + "score": 1.0, + "content": "Figure 2: Which classes and at which stage shape the network’s layer’s parameters? Parameters", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "of different layers are learned at different times. Parameters in Output layers are learned mostly", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 369, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 506, + 381 + ], + "score": 1.0, + "content": "during the early training stage. In the lower layers, parameters are learned predominantly during the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 379, + 476, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 476, + 391 + ], + "score": 1.0, + "content": "middle and late training stage. All classes do not contribute equally to training of the model.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "image", + "bbox": [ + 110, + 404, + 559, + 595 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 404, + 559, + 595 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 110, + 404, + 559, + 595 + ], + "spans": [ + { + "bbox": [ + 110, + 404, + 559, + 595 + ], + "score": 0.971, + "type": "image", + "image_path": "c65928096336387e31f6986d8a5c1157a406686b28f9f2fb2cc62ef0c29e1cd8.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 110, + 404, + 559, + 467.6666666666667 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 110, + 467.6666666666667, + 559, + 531.3333333333334 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 110, + 531.3333333333334, + 559, + 595.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 612, + 506, + 646 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 419, + 624 + ], + "score": 1.0, + "content": "Figure 3: Are all data samples equally important for all layers? The top", + "type": "text" + }, + { + "bbox": [ + 420, + 612, + 439, + 623 + ], + "score": 0.84, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "most important", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 622, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 506, + 636 + ], + "score": 1.0, + "content": "samples contributes to the majority of parameter learning, especially in lower layers. “L1” to “L3”", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 634, + 347, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 347, + 646 + ], + "score": 1.0, + "content": "stands for Layer 1 to Layer 3. “Out” stands for output layer.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "title", + "bbox": [ + 111, + 667, + 369, + 678 + ], + "lines": [ + { + "bbox": [ + 108, + 666, + 371, + 679 + ], + "spans": [ + { + "bbox": [ + 108, + 666, + 371, + 679 + ], + "score": 1.0, + "content": "3.5 CLUSTERING SAMPLES BASED ON SAMPLE IMPORTANCE", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "To better visualize the importance of different samples, we provide three representative clusters of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "samples for each dataset. In MNIST, we clustered all digit “5” samples into 20 clusters based on their", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "epoch-specific, layer-specific sample importance. In CIFAR-10, we clustered all “horse” samples", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 720, + 476, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 476, + 734 + ], + "score": 1.0, + "content": "into 30 clusters using the same features as MNIST. Kmeans algorithm is used for clustering.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 687, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 195, + 83, + 415, + 305 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 195, + 83, + 415, + 305 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 195, + 83, + 415, + 305 + ], + "spans": [ + { + "bbox": [ + 195, + 83, + 415, + 305 + ], + "score": 0.975, + "type": "image", + "image_path": "366cabd6209561647cb6d00ed6cdc1387b95f239c1a5c25a3d36e0ae64232719.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 195, + 83, + 415, + 96.05882352941177 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 195, + 96.05882352941177, + 415, + 109.11764705882354 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 195, + 109.11764705882354, + 415, + 122.1764705882353 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 195, + 122.1764705882353, + 415, + 135.23529411764707 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 195, + 135.23529411764707, + 415, + 148.29411764705884 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 195, + 148.29411764705884, + 415, + 161.3529411764706 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 195, + 161.3529411764706, + 415, + 174.41176470588238 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 195, + 174.41176470588238, + 415, + 187.47058823529414 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 195, + 187.47058823529414, + 415, + 200.5294117647059 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 195, + 200.5294117647059, + 415, + 213.58823529411768 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 195, + 213.58823529411768, + 415, + 226.64705882352945 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 195, + 226.64705882352945, + 415, + 239.70588235294122 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 195, + 239.70588235294122, + 415, + 252.76470588235298 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 195, + 252.76470588235298, + 415, + 265.82352941176475 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 195, + 265.82352941176475, + 415, + 278.8823529411765 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 195, + 278.8823529411765, + 415, + 291.9411764705883 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 195, + 291.9411764705883, + 415, + 305.00000000000006 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 325, + 505, + 391 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 325, + 504, + 337 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 504, + 337 + ], + "score": 1.0, + "content": "Figure 4: Is Sample Importance correlated with Negative log-likelihood of a sample? Sample", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 336, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 505, + 349 + ], + "score": 1.0, + "content": "importance is positively correlated with negative log-likelihood. As training goes on, their corre-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "score": 1.0, + "content": "lation becomes higher. However, there remain many samples with high NLL and low SI, and vice", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 358, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 371 + ], + "score": 1.0, + "content": "versa. Left column: correlation between sample importance and negative log likelihood for all sam-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 369, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 382 + ], + "score": 1.0, + "content": "ples across epochs. Right column: scatter plot for NLL in the last epoch and all epoch sample", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 380, + 222, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 222, + 393 + ], + "score": 1.0, + "content": "importance for each sample.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5 + } + ], + "index": 13.75 + }, + { + "type": "text", + "bbox": [ + 106, + 412, + 505, + 479 + ], + "lines": [ + { + "bbox": [ + 105, + 411, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 363, + 425 + ], + "score": 1.0, + "content": "MNIST In Figure 5, we showed 3 example clusters on digit", + "type": "text" + }, + { + "bbox": [ + 363, + 413, + 374, + 423 + ], + "score": 0.31, + "content": "\\cdot 5 ^ { , }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 411, + 505, + 425 + ], + "score": 1.0, + "content": ". In the cluster of easy samples,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 424, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 106, + 424, + 505, + 437 + ], + "score": 1.0, + "content": "where NLL converges very fast, most of the sample importance is concentrated in the first few", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 434, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 506, + 447 + ], + "score": 1.0, + "content": "epochs in output layer parameters. The cluster of medium samples has a slow NLL convergence", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 445, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 505, + 458 + ], + "score": 1.0, + "content": "compared to the easy cluster. The biggest impact is in middle training stage and more towards", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "score": 1.0, + "content": "bottom layer parameters. Hard samples hardly converge even during the late stage of training. As", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 467, + 457, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 457, + 481 + ], + "score": 1.0, + "content": "training goes on, the sample importance for the bottom layer parameters become larger.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 491, + 505, + 547 + ], + "lines": [ + { + "bbox": [ + 106, + 492, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 505, + 504 + ], + "score": 1.0, + "content": "CIFAR-10 In Figure 6, we showed 3 examples clusters on class “horse”. We observed very similar", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 502, + 504, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 504, + 515 + ], + "score": 1.0, + "content": "sample importance changing pattern as for the MNIST examples for easy, medium and hard clusters.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "Comparing to MNIST, all three clusters in CIFAR-10 have a very large impact on the parameters", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 523, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 505, + 538 + ], + "score": 1.0, + "content": "in the bottom layer. We note that the CIFAR-10 has almost 4 times larger number of parameters", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 108, + 535, + 407, + 549 + ], + "spans": [ + { + "bbox": [ + 108, + 536, + 198, + 547 + ], + "score": 0.89, + "content": "( 3 0 7 5 \\times 5 1 2 \\approx 1 5 7 4 k )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 535, + 322, + 549 + ], + "score": 1.0, + "content": "in the first layer than MNIST", + "type": "text" + }, + { + "bbox": [ + 323, + 536, + 401, + 547 + ], + "score": 0.88, + "content": "7 8 5 \\times 5 1 2 \\approx 4 0 1 k", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 535, + 407, + 549 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31 + }, + { + "type": "title", + "bbox": [ + 107, + 561, + 309, + 572 + ], + "lines": [ + { + "bbox": [ + 105, + 561, + 311, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 311, + 573 + ], + "score": 1.0, + "content": "3.6 BATCH ORDER AND SAMPLE IMPORTANCE", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 582, + 505, + 648 + ], + "lines": [ + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "score": 1.0, + "content": "With the observations from empirical analysis on sample importance, we know that time – iteration", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 592, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 505, + 605 + ], + "score": 1.0, + "content": "– and place – layer – of sample’s impact varies according to its “easiness” . We wanted to know", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "whether constructing batches based on the sample importance or negative log likelihood would make", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 614, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 505, + 628 + ], + "score": 1.0, + "content": "a difference in training. Hence, we designed an experiment to explore how the different construction", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 625, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 505, + 638 + ], + "score": 1.0, + "content": "of batches influence the training. We note that the information used to structure the batches (negative", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 637, + 423, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 423, + 650 + ], + "score": 1.0, + "content": "log-likelihood and sample importance) – was obtained from a full training run.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 653, + 505, + 687 + ], + "lines": [ + { + "bbox": [ + 105, + 653, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 243, + 666 + ], + "score": 1.0, + "content": "We split all 50, 000 samples into", + "type": "text" + }, + { + "bbox": [ + 243, + 654, + 280, + 664 + ], + "score": 0.9, + "content": "b = 5 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 653, + 339, + 666 + ], + "score": 1.0, + "content": "batch subsets", + "type": "text" + }, + { + "bbox": [ + 339, + 654, + 409, + 666 + ], + "score": 0.93, + "content": "\\{ B _ { 1 } , B _ { 2 } , \\ldots , B _ { b } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 653, + 505, + 666 + ], + "score": 1.0, + "content": ". Each batch has batch", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 664, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 664, + 125, + 677 + ], + "score": 1.0, + "content": "size", + "type": "text" + }, + { + "bbox": [ + 125, + 665, + 170, + 677 + ], + "score": 0.92, + "content": "| B _ { i } | = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 664, + 505, + 677 + ], + "score": 1.0, + "content": ". In our experiment, each training sample must be in exactly one batch. There is no", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 676, + 225, + 687 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 225, + 687 + ], + "score": 1.0, + "content": "intersection between batches.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 693, + 504, + 715 + ], + "lines": [ + { + "bbox": [ + 105, + 691, + 506, + 706 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 438, + 706 + ], + "score": 1.0, + "content": "During training, in each epoch, we update the parameters with each batch in order", + "type": "text" + }, + { + "bbox": [ + 438, + 693, + 480, + 704 + ], + "score": 0.91, + "content": "1 , 2 , \\ldots , b", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 691, + 506, + 706 + ], + "score": 1.0, + "content": "itera-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 701, + 136, + 718 + ], + "spans": [ + { + "bbox": [ + 104, + 701, + 136, + 718 + ], + "score": 1.0, + "content": "tively.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + }, + { + "type": "text", + "bbox": [ + 107, + 720, + 392, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 718, + 393, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 718, + 393, + 734 + ], + "score": 1.0, + "content": "We used seven different batch construction methods in this experiment:", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 46 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 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 2017", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 195, + 83, + 415, + 305 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 195, + 83, + 415, + 305 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 195, + 83, + 415, + 305 + ], + "spans": [ + { + "bbox": [ + 195, + 83, + 415, + 305 + ], + "score": 0.975, + "type": "image", + "image_path": "366cabd6209561647cb6d00ed6cdc1387b95f239c1a5c25a3d36e0ae64232719.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 195, + 83, + 415, + 96.05882352941177 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 195, + 96.05882352941177, + 415, + 109.11764705882354 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 195, + 109.11764705882354, + 415, + 122.1764705882353 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 195, + 122.1764705882353, + 415, + 135.23529411764707 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 195, + 135.23529411764707, + 415, + 148.29411764705884 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 195, + 148.29411764705884, + 415, + 161.3529411764706 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 195, + 161.3529411764706, + 415, + 174.41176470588238 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 195, + 174.41176470588238, + 415, + 187.47058823529414 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 195, + 187.47058823529414, + 415, + 200.5294117647059 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 195, + 200.5294117647059, + 415, + 213.58823529411768 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 195, + 213.58823529411768, + 415, + 226.64705882352945 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 195, + 226.64705882352945, + 415, + 239.70588235294122 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 195, + 239.70588235294122, + 415, + 252.76470588235298 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 195, + 252.76470588235298, + 415, + 265.82352941176475 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 195, + 265.82352941176475, + 415, + 278.8823529411765 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 195, + 278.8823529411765, + 415, + 291.9411764705883 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 195, + 291.9411764705883, + 415, + 305.00000000000006 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 325, + 505, + 391 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 325, + 504, + 337 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 504, + 337 + ], + "score": 1.0, + "content": "Figure 4: Is Sample Importance correlated with Negative log-likelihood of a sample? Sample", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 336, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 505, + 349 + ], + "score": 1.0, + "content": "importance is positively correlated with negative log-likelihood. As training goes on, their corre-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "score": 1.0, + "content": "lation becomes higher. However, there remain many samples with high NLL and low SI, and vice", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 358, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 371 + ], + "score": 1.0, + "content": "versa. Left column: correlation between sample importance and negative log likelihood for all sam-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 369, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 382 + ], + "score": 1.0, + "content": "ples across epochs. Right column: scatter plot for NLL in the last epoch and all epoch sample", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 380, + 222, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 222, + 393 + ], + "score": 1.0, + "content": "importance for each sample.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5 + } + ], + "index": 13.75 + }, + { + "type": "text", + "bbox": [ + 106, + 412, + 505, + 479 + ], + "lines": [ + { + "bbox": [ + 105, + 411, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 363, + 425 + ], + "score": 1.0, + "content": "MNIST In Figure 5, we showed 3 example clusters on digit", + "type": "text" + }, + { + "bbox": [ + 363, + 413, + 374, + 423 + ], + "score": 0.31, + "content": "\\cdot 5 ^ { , }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 411, + 505, + 425 + ], + "score": 1.0, + "content": ". In the cluster of easy samples,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 424, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 106, + 424, + 505, + 437 + ], + "score": 1.0, + "content": "where NLL converges very fast, most of the sample importance is concentrated in the first few", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 434, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 506, + 447 + ], + "score": 1.0, + "content": "epochs in output layer parameters. The cluster of medium samples has a slow NLL convergence", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 445, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 505, + 458 + ], + "score": 1.0, + "content": "compared to the easy cluster. The biggest impact is in middle training stage and more towards", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "score": 1.0, + "content": "bottom layer parameters. Hard samples hardly converge even during the late stage of training. As", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 467, + 457, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 457, + 481 + ], + "score": 1.0, + "content": "training goes on, the sample importance for the bottom layer parameters become larger.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 411, + 506, + 481 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 491, + 505, + 547 + ], + "lines": [ + { + "bbox": [ + 106, + 492, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 505, + 504 + ], + "score": 1.0, + "content": "CIFAR-10 In Figure 6, we showed 3 examples clusters on class “horse”. We observed very similar", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 502, + 504, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 504, + 515 + ], + "score": 1.0, + "content": "sample importance changing pattern as for the MNIST examples for easy, medium and hard clusters.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "Comparing to MNIST, all three clusters in CIFAR-10 have a very large impact on the parameters", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 523, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 505, + 538 + ], + "score": 1.0, + "content": "in the bottom layer. We note that the CIFAR-10 has almost 4 times larger number of parameters", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 108, + 535, + 407, + 549 + ], + "spans": [ + { + "bbox": [ + 108, + 536, + 198, + 547 + ], + "score": 0.89, + "content": "( 3 0 7 5 \\times 5 1 2 \\approx 1 5 7 4 k )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 535, + 322, + 549 + ], + "score": 1.0, + "content": "in the first layer than MNIST", + "type": "text" + }, + { + "bbox": [ + 323, + 536, + 401, + 547 + ], + "score": 0.88, + "content": "7 8 5 \\times 5 1 2 \\approx 4 0 1 k", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 535, + 407, + 549 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 492, + 505, + 549 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 561, + 309, + 572 + ], + "lines": [ + { + "bbox": [ + 105, + 561, + 311, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 311, + 573 + ], + "score": 1.0, + "content": "3.6 BATCH ORDER AND SAMPLE IMPORTANCE", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 582, + 505, + 648 + ], + "lines": [ + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "score": 1.0, + "content": "With the observations from empirical analysis on sample importance, we know that time – iteration", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 592, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 505, + 605 + ], + "score": 1.0, + "content": "– and place – layer – of sample’s impact varies according to its “easiness” . We wanted to know", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "whether constructing batches based on the sample importance or negative log likelihood would make", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 614, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 505, + 628 + ], + "score": 1.0, + "content": "a difference in training. Hence, we designed an experiment to explore how the different construction", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 625, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 505, + 638 + ], + "score": 1.0, + "content": "of batches influence the training. We note that the information used to structure the batches (negative", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 637, + 423, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 423, + 650 + ], + "score": 1.0, + "content": "log-likelihood and sample importance) – was obtained from a full training run.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 582, + 505, + 650 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 653, + 505, + 687 + ], + "lines": [ + { + "bbox": [ + 105, + 653, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 243, + 666 + ], + "score": 1.0, + "content": "We split all 50, 000 samples into", + "type": "text" + }, + { + "bbox": [ + 243, + 654, + 280, + 664 + ], + "score": 0.9, + "content": "b = 5 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 653, + 339, + 666 + ], + "score": 1.0, + "content": "batch subsets", + "type": "text" + }, + { + "bbox": [ + 339, + 654, + 409, + 666 + ], + "score": 0.93, + "content": "\\{ B _ { 1 } , B _ { 2 } , \\ldots , B _ { b } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 653, + 505, + 666 + ], + "score": 1.0, + "content": ". Each batch has batch", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 664, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 664, + 125, + 677 + ], + "score": 1.0, + "content": "size", + "type": "text" + }, + { + "bbox": [ + 125, + 665, + 170, + 677 + ], + "score": 0.92, + "content": "| B _ { i } | = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 664, + 505, + 677 + ], + "score": 1.0, + "content": ". In our experiment, each training sample must be in exactly one batch. There is no", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 676, + 225, + 687 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 225, + 687 + ], + "score": 1.0, + "content": "intersection between batches.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 653, + 505, + 687 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 693, + 504, + 715 + ], + "lines": [ + { + "bbox": [ + 105, + 691, + 506, + 706 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 438, + 706 + ], + "score": 1.0, + "content": "During training, in each epoch, we update the parameters with each batch in order", + "type": "text" + }, + { + "bbox": [ + 438, + 693, + 480, + 704 + ], + "score": 0.91, + "content": "1 , 2 , \\ldots , b", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 691, + 506, + 706 + ], + "score": 1.0, + "content": "itera-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 701, + 136, + 718 + ], + "spans": [ + { + "bbox": [ + 104, + 701, + 136, + 718 + ], + "score": 1.0, + "content": "tively.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5, + "bbox_fs": [ + 104, + 691, + 506, + 718 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 720, + 392, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 718, + 393, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 718, + 393, + 734 + ], + "score": 1.0, + "content": "We used seven different batch construction methods in this experiment:", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 46, + "bbox_fs": [ + 106, + 718, + 393, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 113, + 86, + 500, + 373 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 113, + 86, + 500, + 373 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 86, + 500, + 373 + ], + "spans": [ + { + "bbox": [ + 113, + 86, + 500, + 373 + ], + "score": 0.978, + "type": "image", + "image_path": "beca3d0da8b2003b41df3f1588b013088625e0966c9a1ccd126e7c77463862f6.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 113, + 86, + 500, + 181.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 113, + 181.66666666666669, + 500, + 277.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 113, + 277.33333333333337, + 500, + 373.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 397, + 505, + 464 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 396, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 505, + 410 + ], + "score": 1.0, + "content": "Figure 5: When and where does an MNIST sample make the biggest impact? For “easy”", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "samples, their biggest impact is on output layers and during the early training stage. As sample’s", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 418, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 432 + ], + "score": 1.0, + "content": "difficulty increases (medium and hard), the biggest impact moves to lower layers and in the late", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 430, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 505, + 442 + ], + "score": 1.0, + "content": "training stage. Each row is a sample cluster. In each row, from left to right: example images in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 440, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 104, + 440, + 506, + 454 + ], + "score": 1.0, + "content": "the cluster; average sample importance and layer-wise decomposition across epochs; A boxplot of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 452, + 327, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 327, + 464 + ], + "score": 1.0, + "content": "average training negative log likelihood across epochs.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 128, + 484, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 130, + 487, + 504, + 500 + ], + "spans": [ + { + "bbox": [ + 130, + 488, + 313, + 500 + ], + "score": 1.0, + "content": "1. Rand: Randomly constructed batch. All", + "type": "text" + }, + { + "bbox": [ + 314, + 487, + 331, + 498 + ], + "score": 0.25, + "content": "5 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 488, + 465, + 500 + ], + "score": 1.0, + "content": "samples are randomly split into", + "type": "text" + }, + { + "bbox": [ + 465, + 488, + 471, + 497 + ], + "score": 0.73, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 488, + 504, + 500 + ], + "score": 1.0, + "content": "batches", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 498, + 407, + 512 + ], + "spans": [ + { + "bbox": [ + 141, + 498, + 407, + 512 + ], + "score": 1.0, + "content": "before training. The batches and orders stay fixed during training.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 129, + 516, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 129, + 516, + 506, + 529 + ], + "score": 1.0, + "content": "2. NLO: Negative Log-likelihood Order. We sort all the samples based on their final NLL", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 142, + 527, + 506, + 539 + ], + "spans": [ + { + "bbox": [ + 142, + 527, + 506, + 539 + ], + "score": 1.0, + "content": "from low to high. The batches are constructed based on the sorted samples. First 100", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 537, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 141, + 537, + 264, + 552 + ], + "score": 1.0, + "content": "samples with least NLL are in", + "type": "text" + }, + { + "bbox": [ + 265, + 538, + 277, + 549 + ], + "score": 0.87, + "content": "\\boldsymbol { B } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 537, + 385, + 552 + ], + "score": 1.0, + "content": ", 101 to 200 samples are in", + "type": "text" + }, + { + "bbox": [ + 386, + 538, + 398, + 549 + ], + "score": 0.88, + "content": "B _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 537, + 505, + 552 + ], + "score": 1.0, + "content": ", and so on. Hence, during", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 142, + 550, + 372, + 560 + ], + "spans": [ + { + "bbox": [ + 142, + 550, + 372, + 560 + ], + "score": 1.0, + "content": "training, the batches with small NLL will be trained first.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 129, + 567, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 129, + 567, + 505, + 580 + ], + "score": 1.0, + "content": "3. RNLO Reverse-Negative Log-likelihood Order. We construct the batches same as NLO.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 141, + 578, + 379, + 591 + ], + "score": 1.0, + "content": "During training, we update the batches in reverse order", + "type": "text" + }, + { + "bbox": [ + 379, + 578, + 448, + 590 + ], + "score": 0.93, + "content": "B _ { b } , B _ { b - 1 } , \\ldots , B _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 578, + 505, + 591 + ], + "score": 1.0, + "content": ". Hence, the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 142, + 590, + 320, + 602 + ], + "spans": [ + { + "bbox": [ + 142, + 590, + 320, + 602 + ], + "score": 1.0, + "content": "batches with large NLL will be trained first.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 129, + 607, + 505, + 620 + ], + "spans": [ + { + "bbox": [ + 129, + 607, + 505, + 620 + ], + "score": 1.0, + "content": "4. NLM Negative Log-likelihood Mixed. We sort all the samples based on their final NLL", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 618, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 141, + 618, + 307, + 631 + ], + "score": 1.0, + "content": "from low to high. Next, for each sample", + "type": "text" + }, + { + "bbox": [ + 308, + 619, + 313, + 628 + ], + "score": 0.72, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 618, + 506, + 631 + ], + "score": 1.0, + "content": "in the sorted sequence, we put that sample into", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 629, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 141, + 629, + 167, + 642 + ], + "score": 1.0, + "content": "batch", + "type": "text" + }, + { + "bbox": [ + 168, + 630, + 247, + 641 + ], + "score": 0.9, + "content": "j = ( i { \\bmod { b } } ) + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 629, + 506, + 642 + ], + "score": 1.0, + "content": ". This ordering constructs batches out of samples with diverse", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 641, + 202, + 652 + ], + "spans": [ + { + "bbox": [ + 142, + 641, + 202, + 652 + ], + "score": 1.0, + "content": "levels of NLL.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 129, + 659, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 129, + 659, + 505, + 671 + ], + "score": 1.0, + "content": "5. SIO: Sample Importance Order. Similar to NLO, except that we sort all the samples based", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 670, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 141, + 670, + 505, + 682 + ], + "score": 1.0, + "content": "on their sum sample importance over all epochs from low to high. Hence, batches with", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 142, + 681, + 325, + 693 + ], + "spans": [ + { + "bbox": [ + 142, + 681, + 325, + 693 + ], + "score": 1.0, + "content": "small sample importance will be trained first.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 131, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 131, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "6. RSIO Reverse-Sample Importance Order. We construct the batches same as SIO. During", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 141, + 709, + 335, + 723 + ], + "score": 1.0, + "content": "training, we update the batches in reverse order", + "type": "text" + }, + { + "bbox": [ + 335, + 710, + 405, + 721 + ], + "score": 0.92, + "content": "B _ { b } , B _ { b - 1 } , \\ldots , B _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 709, + 505, + 723 + ], + "score": 1.0, + "content": ". Hence, during training,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 142, + 721, + 391, + 733 + ], + "spans": [ + { + "bbox": [ + 142, + 721, + 391, + 733 + ], + "score": 1.0, + "content": "the batches with large sample importance will be trained first.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 18 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2017", + "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": [ + 113, + 86, + 500, + 373 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 113, + 86, + 500, + 373 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 86, + 500, + 373 + ], + "spans": [ + { + "bbox": [ + 113, + 86, + 500, + 373 + ], + "score": 0.978, + "type": "image", + "image_path": "beca3d0da8b2003b41df3f1588b013088625e0966c9a1ccd126e7c77463862f6.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 113, + 86, + 500, + 181.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 113, + 181.66666666666669, + 500, + 277.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 113, + 277.33333333333337, + 500, + 373.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 397, + 505, + 464 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 396, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 505, + 410 + ], + "score": 1.0, + "content": "Figure 5: When and where does an MNIST sample make the biggest impact? For “easy”", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "samples, their biggest impact is on output layers and during the early training stage. As sample’s", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 418, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 432 + ], + "score": 1.0, + "content": "difficulty increases (medium and hard), the biggest impact moves to lower layers and in the late", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 430, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 505, + 442 + ], + "score": 1.0, + "content": "training stage. Each row is a sample cluster. In each row, from left to right: example images in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 440, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 104, + 440, + 506, + 454 + ], + "score": 1.0, + "content": "the cluster; average sample importance and layer-wise decomposition across epochs; A boxplot of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 452, + 327, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 327, + 464 + ], + "score": 1.0, + "content": "average training negative log likelihood across epochs.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "list", + "bbox": [ + 128, + 484, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 130, + 487, + 504, + 500 + ], + "spans": [ + { + "bbox": [ + 130, + 488, + 313, + 500 + ], + "score": 1.0, + "content": "1. Rand: Randomly constructed batch. All", + "type": "text" + }, + { + "bbox": [ + 314, + 487, + 331, + 498 + ], + "score": 0.25, + "content": "5 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 488, + 465, + 500 + ], + "score": 1.0, + "content": "samples are randomly split into", + "type": "text" + }, + { + "bbox": [ + 465, + 488, + 471, + 497 + ], + "score": 0.73, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 488, + 504, + 500 + ], + "score": 1.0, + "content": "batches", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 498, + 407, + 512 + ], + "spans": [ + { + "bbox": [ + 141, + 498, + 407, + 512 + ], + "score": 1.0, + "content": "before training. The batches and orders stay fixed during training.", + "type": "text" + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 129, + 516, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 129, + 516, + 506, + 529 + ], + "score": 1.0, + "content": "2. NLO: Negative Log-likelihood Order. We sort all the samples based on their final NLL", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 142, + 527, + 506, + 539 + ], + "spans": [ + { + "bbox": [ + 142, + 527, + 506, + 539 + ], + "score": 1.0, + "content": "from low to high. The batches are constructed based on the sorted samples. First 100", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 537, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 141, + 537, + 264, + 552 + ], + "score": 1.0, + "content": "samples with least NLL are in", + "type": "text" + }, + { + "bbox": [ + 265, + 538, + 277, + 549 + ], + "score": 0.87, + "content": "\\boldsymbol { B } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 537, + 385, + 552 + ], + "score": 1.0, + "content": ", 101 to 200 samples are in", + "type": "text" + }, + { + "bbox": [ + 386, + 538, + 398, + 549 + ], + "score": 0.88, + "content": "B _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 537, + 505, + 552 + ], + "score": 1.0, + "content": ", and so on. Hence, during", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 142, + 550, + 372, + 560 + ], + "spans": [ + { + "bbox": [ + 142, + 550, + 372, + 560 + ], + "score": 1.0, + "content": "training, the batches with small NLL will be trained first.", + "type": "text" + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 129, + 567, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 129, + 567, + 505, + 580 + ], + "score": 1.0, + "content": "3. RNLO Reverse-Negative Log-likelihood Order. We construct the batches same as NLO.", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 141, + 578, + 379, + 591 + ], + "score": 1.0, + "content": "During training, we update the batches in reverse order", + "type": "text" + }, + { + "bbox": [ + 379, + 578, + 448, + 590 + ], + "score": 0.93, + "content": "B _ { b } , B _ { b - 1 } , \\ldots , B _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 578, + 505, + 591 + ], + "score": 1.0, + "content": ". Hence, the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 142, + 590, + 320, + 602 + ], + "spans": [ + { + "bbox": [ + 142, + 590, + 320, + 602 + ], + "score": 1.0, + "content": "batches with large NLL will be trained first.", + "type": "text" + } + ], + "index": 17, + "is_list_end_line": true + }, + { + "bbox": [ + 129, + 607, + 505, + 620 + ], + "spans": [ + { + "bbox": [ + 129, + 607, + 505, + 620 + ], + "score": 1.0, + "content": "4. NLM Negative Log-likelihood Mixed. We sort all the samples based on their final NLL", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 618, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 141, + 618, + 307, + 631 + ], + "score": 1.0, + "content": "from low to high. Next, for each sample", + "type": "text" + }, + { + "bbox": [ + 308, + 619, + 313, + 628 + ], + "score": 0.72, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 618, + 506, + 631 + ], + "score": 1.0, + "content": "in the sorted sequence, we put that sample into", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 629, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 141, + 629, + 167, + 642 + ], + "score": 1.0, + "content": "batch", + "type": "text" + }, + { + "bbox": [ + 168, + 630, + 247, + 641 + ], + "score": 0.9, + "content": "j = ( i { \\bmod { b } } ) + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 629, + 506, + 642 + ], + "score": 1.0, + "content": ". This ordering constructs batches out of samples with diverse", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 641, + 202, + 652 + ], + "spans": [ + { + "bbox": [ + 142, + 641, + 202, + 652 + ], + "score": 1.0, + "content": "levels of NLL.", + "type": "text" + } + ], + "index": 21, + "is_list_end_line": true + }, + { + "bbox": [ + 129, + 659, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 129, + 659, + 505, + 671 + ], + "score": 1.0, + "content": "5. SIO: Sample Importance Order. Similar to NLO, except that we sort all the samples based", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 670, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 141, + 670, + 505, + 682 + ], + "score": 1.0, + "content": "on their sum sample importance over all epochs from low to high. Hence, batches with", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 142, + 681, + 325, + 693 + ], + "spans": [ + { + "bbox": [ + 142, + 681, + 325, + 693 + ], + "score": 1.0, + "content": "small sample importance will be trained first.", + "type": "text" + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 131, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 131, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "6. RSIO Reverse-Sample Importance Order. We construct the batches same as SIO. During", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 141, + 709, + 335, + 723 + ], + "score": 1.0, + "content": "training, we update the batches in reverse order", + "type": "text" + }, + { + "bbox": [ + 335, + 710, + 405, + 721 + ], + "score": 0.92, + "content": "B _ { b } , B _ { b - 1 } , \\ldots , B _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 709, + 505, + 723 + ], + "score": 1.0, + "content": ". Hence, during training,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 142, + 721, + 391, + 733 + ], + "spans": [ + { + "bbox": [ + 142, + 721, + 391, + 733 + ], + "score": 1.0, + "content": "the batches with large sample importance will be trained first.", + "type": "text" + } + ], + "index": 27, + "is_list_end_line": true + } + ], + "index": 18, + "bbox_fs": [ + 129, + 487, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 113, + 86, + 500, + 373 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 113, + 86, + 500, + 373 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 86, + 500, + 373 + ], + "spans": [ + { + "bbox": [ + 113, + 86, + 500, + 373 + ], + "score": 0.977, + "type": "image", + "image_path": "06ecd2bfd33d18b39d48776d6ab4984ee42b58766a17f2e0d0d3d92cd9424928.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 113, + 86, + 500, + 181.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 113, + 181.66666666666669, + 500, + 277.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 113, + 277.33333333333337, + 500, + 373.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 397, + 505, + 463 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "score": 1.0, + "content": "Figure 6: When and where does a CIFAR-10 sample make the biggest impact? For “easy” sam-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 407, + 504, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 504, + 420 + ], + "score": 1.0, + "content": "ples, their biggest impact is on the first layer during the early training stage. As samples’s difficulty", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 418, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 104, + 418, + 505, + 433 + ], + "score": 1.0, + "content": "increases (medium and hard), the biggest impact moves to lower layers and to late training stage.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 430, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 505, + 442 + ], + "score": 1.0, + "content": "Each row is a sample cluster. In each row, from left to right: example images in the cluster; aver-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 441, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 506, + 455 + ], + "score": 1.0, + "content": "age sample importance and layer-wise decomposition across epochs; A boxplot of average training", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 452, + 260, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 260, + 464 + ], + "score": 1.0, + "content": "negative log likelihood across epochs.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 129, + 484, + 504, + 506 + ], + "lines": [ + { + "bbox": [ + 130, + 484, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 130, + 484, + 505, + 496 + ], + "score": 1.0, + "content": "7. SIM Sample Important Mixed. Similar to NLM, but we sort the samples based on overall", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 494, + 474, + 508 + ], + "spans": [ + { + "bbox": [ + 141, + 494, + 474, + 508 + ], + "score": 1.0, + "content": "sample importance. Thus, batches contain samples with divers sample importance.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 516, + 505, + 604 + ], + "lines": [ + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "score": 1.0, + "content": "We performed five different runs (with different random initializations) on MNIST and CIFAR-10.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "score": 1.0, + "content": "The result is shown in Figure 7. From the result, we found that: 1) In both MNIST and CIFAR-10,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 538, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 550 + ], + "score": 1.0, + "content": "Rand, SIS, and NLS have the lowest test error compared to all other methods. This indicates that", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 549, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 561 + ], + "score": 1.0, + "content": "diverse batches are helpful for training. 2) NLO and SIO got the worst performance in CIFAR-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 560, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 506, + 573 + ], + "score": 1.0, + "content": "10. Their training error even goes up after the early stage. RNLO and RSIO have same batch", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 570, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 506, + 584 + ], + "score": 1.0, + "content": "constructions as NLO and SIO, but their performances are drastically different. This indicates that", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 581, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 506, + 596 + ], + "score": 1.0, + "content": "the order of batches during training is important. Further, training on easy samples first and hard", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 593, + 256, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 256, + 605 + ], + "score": 1.0, + "content": "later seems to be counter-productive.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 610, + 504, + 654 + ], + "lines": [ + { + "bbox": [ + 105, + 609, + 504, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 504, + 622 + ], + "score": 1.0, + "content": "To better understand the impact of different batch construction, we performed the principle compo-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 621, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 633 + ], + "score": 1.0, + "content": "nent analysis on the learned parameters in each epoch (Figure 8). In MNIST, the impact of batch", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 632, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 643 + ], + "score": 1.0, + "content": "construction is not very significant. In CIFAR-10, batch construction and even the order of batch", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 643, + 295, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 295, + 656 + ], + "score": 1.0, + "content": "training do have a large impact on the training.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 660, + 504, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 659, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 505, + 673 + ], + "score": 1.0, + "content": "Our experiment result shows a different conclusion to Curriculum Learning and Self-paced learning,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "score": 1.0, + "content": "where easy samples are trained on before introducing hard samples. We found that constructing and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 681, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 505, + 695 + ], + "score": 1.0, + "content": "ordering the batches – hard to easy and easy to hard – seems to hinder the performance of learning.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 693, + 435, + 706 + ], + "spans": [ + { + "bbox": [ + 105, + 693, + 435, + 706 + ], + "score": 1.0, + "content": "Having hard samples mixed in with the easy ones in each batch helps the training.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Also, the results show that we want to learn from the hard samples in early epochs and “see” hard", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "samples more frequently, even if their major impact on parameters is during the late stage. As hard", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2017", + "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": [ + 113, + 86, + 500, + 373 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 113, + 86, + 500, + 373 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 86, + 500, + 373 + ], + "spans": [ + { + "bbox": [ + 113, + 86, + 500, + 373 + ], + "score": 0.977, + "type": "image", + "image_path": "06ecd2bfd33d18b39d48776d6ab4984ee42b58766a17f2e0d0d3d92cd9424928.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 113, + 86, + 500, + 181.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 113, + 181.66666666666669, + 500, + 277.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 113, + 277.33333333333337, + 500, + 373.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 397, + 505, + 463 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "score": 1.0, + "content": "Figure 6: When and where does a CIFAR-10 sample make the biggest impact? For “easy” sam-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 407, + 504, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 504, + 420 + ], + "score": 1.0, + "content": "ples, their biggest impact is on the first layer during the early training stage. As samples’s difficulty", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 418, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 104, + 418, + 505, + 433 + ], + "score": 1.0, + "content": "increases (medium and hard), the biggest impact moves to lower layers and to late training stage.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 430, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 505, + 442 + ], + "score": 1.0, + "content": "Each row is a sample cluster. In each row, from left to right: example images in the cluster; aver-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 441, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 506, + 455 + ], + "score": 1.0, + "content": "age sample importance and layer-wise decomposition across epochs; A boxplot of average training", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 452, + 260, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 260, + 464 + ], + "score": 1.0, + "content": "negative log likelihood across epochs.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 129, + 484, + 504, + 506 + ], + "lines": [ + { + "bbox": [ + 130, + 484, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 130, + 484, + 505, + 496 + ], + "score": 1.0, + "content": "7. SIM Sample Important Mixed. Similar to NLM, but we sort the samples based on overall", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 494, + 474, + 508 + ], + "spans": [ + { + "bbox": [ + 141, + 494, + 474, + 508 + ], + "score": 1.0, + "content": "sample importance. Thus, batches contain samples with divers sample importance.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 130, + 484, + 505, + 508 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 516, + 505, + 604 + ], + "lines": [ + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "score": 1.0, + "content": "We performed five different runs (with different random initializations) on MNIST and CIFAR-10.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "score": 1.0, + "content": "The result is shown in Figure 7. From the result, we found that: 1) In both MNIST and CIFAR-10,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 538, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 550 + ], + "score": 1.0, + "content": "Rand, SIS, and NLS have the lowest test error compared to all other methods. This indicates that", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 549, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 561 + ], + "score": 1.0, + "content": "diverse batches are helpful for training. 2) NLO and SIO got the worst performance in CIFAR-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 560, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 506, + 573 + ], + "score": 1.0, + "content": "10. Their training error even goes up after the early stage. RNLO and RSIO have same batch", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 570, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 506, + 584 + ], + "score": 1.0, + "content": "constructions as NLO and SIO, but their performances are drastically different. This indicates that", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 581, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 506, + 596 + ], + "score": 1.0, + "content": "the order of batches during training is important. Further, training on easy samples first and hard", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 593, + 256, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 256, + 605 + ], + "score": 1.0, + "content": "later seems to be counter-productive.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 516, + 506, + 605 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 610, + 504, + 654 + ], + "lines": [ + { + "bbox": [ + 105, + 609, + 504, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 504, + 622 + ], + "score": 1.0, + "content": "To better understand the impact of different batch construction, we performed the principle compo-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 621, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 633 + ], + "score": 1.0, + "content": "nent analysis on the learned parameters in each epoch (Figure 8). In MNIST, the impact of batch", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 632, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 643 + ], + "score": 1.0, + "content": "construction is not very significant. In CIFAR-10, batch construction and even the order of batch", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 643, + 295, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 295, + 656 + ], + "score": 1.0, + "content": "training do have a large impact on the training.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 609, + 506, + 656 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 660, + 504, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 659, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 505, + 673 + ], + "score": 1.0, + "content": "Our experiment result shows a different conclusion to Curriculum Learning and Self-paced learning,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "score": 1.0, + "content": "where easy samples are trained on before introducing hard samples. We found that constructing and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 681, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 505, + 695 + ], + "score": 1.0, + "content": "ordering the batches – hard to easy and easy to hard – seems to hinder the performance of learning.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 693, + 435, + 706 + ], + "spans": [ + { + "bbox": [ + 105, + 693, + 435, + 706 + ], + "score": 1.0, + "content": "Having hard samples mixed in with the easy ones in each batch helps the training.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 659, + 506, + 706 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Also, the results show that we want to learn from the hard samples in early epochs and “see” hard", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "samples more frequently, even if their major impact on parameters is during the late stage. As hard", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 549, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 562 + ], + "score": 1.0, + "content": "examples are few compared to easy samples and hard examples need a longer time to train, we do", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "want to mix the hard samples into each batch to start learning from those samples early and learn", + "type": "text", + "cross_page": true + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 570, + 138, + 586 + ], + "spans": [ + { + "bbox": [ + 104, + 570, + 138, + 586 + ], + "score": 1.0, + "content": "longer.", + "type": "text", + "cross_page": true + } + ], + "index": 19 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 137, + 81, + 473, + 214 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 137, + 81, + 473, + 214 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 137, + 81, + 473, + 214 + ], + "spans": [ + { + "bbox": [ + 137, + 81, + 473, + 214 + ], + "score": 0.971, + "type": "image", + "image_path": "42716aa645f0c758ca13ad616d456e30f3c7f969dca4da6b441665f267b2d69c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 137, + 81, + 473, + 125.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 137, + 125.33333333333334, + 473, + 169.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 137, + 169.66666666666669, + 473, + 214.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 233, + 505, + 278 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 233, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 506, + 246 + ], + "score": 1.0, + "content": "Figure 7: Does organizing batches by “easiness” affect training? When batches are constructed", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 244, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 505, + 256 + ], + "score": 1.0, + "content": "with homogeneous easiness, the training performance become worse. Batches with mixed easiness", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 255, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 505, + 268 + ], + "score": 1.0, + "content": "have lower test error. The solid color line represents the mean over 5 runs. The error bar indicates", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 267, + 228, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 228, + 278 + ], + "score": 1.0, + "content": "the standard error over 5 runs.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "image", + "bbox": [ + 136, + 294, + 474, + 425 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 136, + 294, + 474, + 425 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 136, + 294, + 474, + 425 + ], + "spans": [ + { + "bbox": [ + 136, + 294, + 474, + 425 + ], + "score": 0.967, + "type": "image", + "image_path": "2356039eb64f765e3572f2159baff9807ba4501ba29d7c5578292085327cf2f9.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 136, + 294, + 474, + 337.6666666666667 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 136, + 337.6666666666667, + 474, + 381.33333333333337 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 136, + 381.33333333333337, + 474, + 425.00000000000006 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 444, + 506, + 523 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 445, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 505, + 457 + ], + "score": 1.0, + "content": "Figure 8: Do parameters converge differently under different batch construction? In MNIST,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 456, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 468 + ], + "score": 1.0, + "content": "the converging path for all batch constructions are very similar. In CIFAR-10, batch construction", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 467, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 479 + ], + "score": 1.0, + "content": "with mixed easiness (Rand, NLM, SIM) has a very different converging path with all other methods.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 479, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 505, + 490 + ], + "score": 1.0, + "content": "Notably, we found that even with same batch constructions but just reversed order (NLO vs. RNLO,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "SIO vs. RSIO), the parameters converge to different points. Each circle dotted line shows the path", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 501, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 505, + 512 + ], + "score": 1.0, + "content": "of the first two principle components of all parameters in different epochs. Note that in CIFAR-10,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 511, + 444, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 444, + 524 + ], + "score": 1.0, + "content": "the paths of Rand, NLS and SIS are very similar and they are overlapped in the plot.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 549, + 505, + 583 + ], + "lines": [ + { + "bbox": [ + 105, + 549, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 562 + ], + "score": 1.0, + "content": "examples are few compared to easy samples and hard examples need a longer time to train, we do", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "want to mix the hard samples into each batch to start learning from those samples early and learn", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 570, + 138, + 586 + ], + "spans": [ + { + "bbox": [ + 104, + 570, + 138, + 586 + ], + "score": 1.0, + "content": "longer.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 107, + 606, + 324, + 619 + ], + "lines": [ + { + "bbox": [ + 105, + 606, + 325, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 325, + 622 + ], + "score": 1.0, + "content": "4 EXTENSIONS OF SAMPLE IMPORTANCE", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 635, + 505, + 691 + ], + "lines": [ + { + "bbox": [ + 106, + 634, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 506, + 649 + ], + "score": 1.0, + "content": "We calculated the sample importance in each iteration in Stochastic Gradient Descent. However,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 647, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 106, + 647, + 505, + 659 + ], + "score": 1.0, + "content": "such quantity only reflects the impact on the change in parameters within each iteration. The influ-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 658, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 505, + 670 + ], + "score": 1.0, + "content": "ence of a sample at a particular iteration can be accumulated through updates and impact the final", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 668, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 682 + ], + "score": 1.0, + "content": "model. Here, we are going to derive the exact calculation of the sample’s influence to the model.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 679, + 294, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 679, + 294, + 692 + ], + "score": 1.0, + "content": "We rewrite the Objective (2) in Section 2 here:", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 703, + 376, + 735 + ], + "lines": [ + { + "bbox": [ + 234, + 703, + 376, + 735 + ], + "spans": [ + { + "bbox": [ + 234, + 703, + 376, + 735 + ], + "score": 0.94, + "content": "\\operatorname* { m i n } _ { \\pmb { \\theta } } \\sum _ { i = 1 } ^ { n } v _ { i } L ( y _ { i } , f ( \\mathbf { x } _ { i } , \\pmb { \\theta } ) ) + R ( \\pmb { \\theta } ) ,", + "type": "interline_equation", + "image_path": "8ca9c38e6c5150d63505cc23867c20c4d293b98739219cf5bd6679bd8c8ccc7f.jpg" + } + ] + } + ], + "index": 26.5, + "virtual_lines": [ + { + "bbox": [ + 234, + 703, + 376, + 719.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 234, + 719.0, + 376, + 735.0 + ], + "spans": [], + "index": 27 + } + ] + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 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 2017", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 137, + 81, + 473, + 214 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 137, + 81, + 473, + 214 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 137, + 81, + 473, + 214 + ], + "spans": [ + { + "bbox": [ + 137, + 81, + 473, + 214 + ], + "score": 0.971, + "type": "image", + "image_path": "42716aa645f0c758ca13ad616d456e30f3c7f969dca4da6b441665f267b2d69c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 137, + 81, + 473, + 125.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 137, + 125.33333333333334, + 473, + 169.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 137, + 169.66666666666669, + 473, + 214.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 233, + 505, + 278 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 233, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 506, + 246 + ], + "score": 1.0, + "content": "Figure 7: Does organizing batches by “easiness” affect training? When batches are constructed", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 244, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 505, + 256 + ], + "score": 1.0, + "content": "with homogeneous easiness, the training performance become worse. Batches with mixed easiness", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 255, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 505, + 268 + ], + "score": 1.0, + "content": "have lower test error. The solid color line represents the mean over 5 runs. The error bar indicates", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 267, + 228, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 228, + 278 + ], + "score": 1.0, + "content": "the standard error over 5 runs.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "image", + "bbox": [ + 136, + 294, + 474, + 425 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 136, + 294, + 474, + 425 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 136, + 294, + 474, + 425 + ], + "spans": [ + { + "bbox": [ + 136, + 294, + 474, + 425 + ], + "score": 0.967, + "type": "image", + "image_path": "2356039eb64f765e3572f2159baff9807ba4501ba29d7c5578292085327cf2f9.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 136, + 294, + 474, + 337.6666666666667 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 136, + 337.6666666666667, + 474, + 381.33333333333337 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 136, + 381.33333333333337, + 474, + 425.00000000000006 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 444, + 506, + 523 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 445, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 505, + 457 + ], + "score": 1.0, + "content": "Figure 8: Do parameters converge differently under different batch construction? In MNIST,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 456, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 468 + ], + "score": 1.0, + "content": "the converging path for all batch constructions are very similar. In CIFAR-10, batch construction", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 467, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 479 + ], + "score": 1.0, + "content": "with mixed easiness (Rand, NLM, SIM) has a very different converging path with all other methods.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 479, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 505, + 490 + ], + "score": 1.0, + "content": "Notably, we found that even with same batch constructions but just reversed order (NLO vs. RNLO,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "SIO vs. RSIO), the parameters converge to different points. Each circle dotted line shows the path", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 501, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 505, + 512 + ], + "score": 1.0, + "content": "of the first two principle components of all parameters in different epochs. Note that in CIFAR-10,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 511, + 444, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 444, + 524 + ], + "score": 1.0, + "content": "the paths of Rand, NLS and SIS are very similar and they are overlapped in the plot.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 549, + 505, + 583 + ], + "lines": [], + "index": 18, + "bbox_fs": [ + 104, + 549, + 505, + 586 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 107, + 606, + 324, + 619 + ], + "lines": [ + { + "bbox": [ + 105, + 606, + 325, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 325, + 622 + ], + "score": 1.0, + "content": "4 EXTENSIONS OF SAMPLE IMPORTANCE", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 635, + 505, + 691 + ], + "lines": [ + { + "bbox": [ + 106, + 634, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 506, + 649 + ], + "score": 1.0, + "content": "We calculated the sample importance in each iteration in Stochastic Gradient Descent. However,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 647, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 106, + 647, + 505, + 659 + ], + "score": 1.0, + "content": "such quantity only reflects the impact on the change in parameters within each iteration. The influ-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 658, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 505, + 670 + ], + "score": 1.0, + "content": "ence of a sample at a particular iteration can be accumulated through updates and impact the final", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 668, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 682 + ], + "score": 1.0, + "content": "model. Here, we are going to derive the exact calculation of the sample’s influence to the model.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 679, + 294, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 679, + 294, + 692 + ], + "score": 1.0, + "content": "We rewrite the Objective (2) in Section 2 here:", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 634, + 506, + 692 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 703, + 376, + 735 + ], + "lines": [ + { + "bbox": [ + 234, + 703, + 376, + 735 + ], + "spans": [ + { + "bbox": [ + 234, + 703, + 376, + 735 + ], + "score": 0.94, + "content": "\\operatorname* { m i n } _ { \\pmb { \\theta } } \\sum _ { i = 1 } ^ { n } v _ { i } L ( y _ { i } , f ( \\mathbf { x } _ { i } , \\pmb { \\theta } ) ) + R ( \\pmb { \\theta } ) ,", + "type": "interline_equation", + "image_path": "8ca9c38e6c5150d63505cc23867c20c4d293b98739219cf5bd6679bd8c8ccc7f.jpg" + } + ] + } + ], + "index": 26.5, + "virtual_lines": [ + { + "bbox": [ + 234, + 703, + 376, + 719.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 234, + 719.0, + 376, + 735.0 + ], + "spans": [], + "index": 27 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 249, + 95 + ], + "score": 1.0, + "content": "Here, we deem the sample weight", + "type": "text" + }, + { + "bbox": [ + 249, + 84, + 259, + 93 + ], + "score": 0.84, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "is fixed across all iterations. The update rule for stochastic", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 253, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 253, + 105 + ], + "score": 1.0, + "content": "gradient descent in each iteration is:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 110, + 367, + 138 + ], + "lines": [ + { + "bbox": [ + 244, + 110, + 367, + 138 + ], + "spans": [ + { + "bbox": [ + 244, + 110, + 367, + 138 + ], + "score": 0.94, + "content": "\\pmb { \\theta } ^ { t + 1 } = \\pmb { \\theta } ^ { t } - \\eta \\sum _ { i } v _ { i } \\mathbf { g } _ { i } ^ { t } - \\eta \\mathbf { r } _ { i } ^ { t }", + "type": "interline_equation", + "image_path": "6cc13f76fb0dc2b8abc82ce34dff334fff073e9fe51d4eef1884b1df7628cc5a.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 244, + 110, + 367, + 138 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 144, + 343, + 157 + ], + "lines": [ + { + "bbox": [ + 104, + 140, + 344, + 161 + ], + "spans": [ + { + "bbox": [ + 104, + 140, + 177, + 161 + ], + "score": 1.0, + "content": "The derivative of", + "type": "text" + }, + { + "bbox": [ + 177, + 144, + 197, + 155 + ], + "score": 0.9, + "content": "\\pmb { \\theta } ^ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 140, + 320, + 161 + ], + "score": 1.0, + "content": "with respect to sample weight", + "type": "text" + }, + { + "bbox": [ + 320, + 147, + 329, + 156 + ], + "score": 0.84, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 140, + 344, + 161 + ], + "score": 1.0, + "content": "is:", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 162, + 400, + 215 + ], + "lines": [ + { + "bbox": [ + 212, + 162, + 400, + 215 + ], + "spans": [ + { + "bbox": [ + 212, + 162, + 400, + 215 + ], + "score": 0.93, + "content": "\\begin{array} { r c l } { { \\displaystyle \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { t + 1 } } } & { { = } } & { { \\displaystyle \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { t } - \\eta \\mathbf { g } _ { i } ^ { t } - \\eta H ( \\pmb { \\theta } ^ { t } ) \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { t } } } \\\\ { { \\displaystyle \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { 1 } } } & { { = } } & { { \\displaystyle - \\eta \\mathbf { g } _ { i } ^ { 0 } , } } \\end{array}", + "type": "interline_equation", + "image_path": "55051f6288701aec5bc042041645cddaf7911962d699ba048cc340f009ad8f71.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 212, + 162, + 400, + 179.66666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 212, + 179.66666666666666, + 400, + 197.33333333333331 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 212, + 197.33333333333331, + 400, + 214.99999999999997 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 228, + 505, + 264 + ], + "lines": [ + { + "bbox": [ + 105, + 227, + 505, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 133, + 242 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 227, + 160, + 241 + ], + "score": 0.93, + "content": "H ( \\pmb \\theta ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 227, + 496, + 242 + ], + "score": 1.0, + "content": "is the Hessian matrix of the objective in (2) with regard to all parameters in iteration", + "type": "text" + }, + { + "bbox": [ + 497, + 230, + 501, + 239 + ], + "score": 0.73, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 227, + 505, + 242 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 239, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 104, + 239, + 377, + 253 + ], + "score": 1.0, + "content": "If we iterate the updates until convergence, then we can assume that", + "type": "text" + }, + { + "bbox": [ + 377, + 240, + 390, + 251 + ], + "score": 0.9, + "content": "\\theta ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 239, + 446, + 253 + ], + "score": 1.0, + "content": "is a fix-point,", + "type": "text" + }, + { + "bbox": [ + 446, + 240, + 505, + 252 + ], + "score": 0.9, + "content": "\\pmb { \\theta } ^ { \\ast } = \\pmb { \\theta } ^ { T + 1 } =", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 250, + 185, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 252, + 119, + 264 + ], + "score": 0.85, + "content": "\\theta ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 250, + 185, + 267 + ], + "score": 1.0, + "content": ", and we obtain:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 270, + 407, + 297 + ], + "lines": [ + { + "bbox": [ + 203, + 270, + 407, + 297 + ], + "spans": [ + { + "bbox": [ + 203, + 270, + 407, + 297 + ], + "score": 0.91, + "content": "\\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { T + 1 } - \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { T } = - \\eta \\mathbf { g } _ { i } ^ { t } - \\eta H ( \\pmb { \\theta } ^ { * } ) \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { * }", + "type": "interline_equation", + "image_path": "8ccd2bd9ca63663dc86b7ef0562ad15de38ed0ccf52a47be5041531fd09326a6.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 203, + 270, + 407, + 297 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 103, + 309, + 460, + 322 + ], + "lines": [ + { + "bbox": [ + 104, + 308, + 460, + 324 + ], + "spans": [ + { + "bbox": [ + 104, + 308, + 460, + 324 + ], + "score": 1.0, + "content": "Hence, the derivative of parameters in the final model with regard to a sample weight is:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 255, + 327, + 356, + 353 + ], + "lines": [ + { + "bbox": [ + 255, + 327, + 356, + 353 + ], + "spans": [ + { + "bbox": [ + 255, + 327, + 356, + 353 + ], + "score": 0.94, + "content": "\\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { * } = - H ( \\pmb { \\theta } ^ { * } ) ^ { - 1 } \\mathbf { g } _ { i } ^ { T }", + "type": "interline_equation", + "image_path": "d30cb4417f117e660ccdc2a6eee39501c9d3a39ed7f1bff4e22e84cfa00b7d0f.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 255, + 327, + 356, + 353 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 364, + 505, + 398 + ], + "lines": [ + { + "bbox": [ + 105, + 364, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 505, + 378 + ], + "score": 1.0, + "content": "Equation (4) indicates that we can calculate the sample specific impact on final trained model by", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 376, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 505, + 388 + ], + "score": 1.0, + "content": "using the parameters learned at the convergence point. In deep learning methods, due to early", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 387, + 448, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 448, + 400 + ], + "score": 1.0, + "content": "stopping, fix point might not be achieved, and Equation (4) might not be an accurate.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 403, + 504, + 426 + ], + "lines": [ + { + "bbox": [ + 106, + 403, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 201, + 416 + ], + "score": 1.0, + "content": "For any target quantity", + "type": "text" + }, + { + "bbox": [ + 201, + 403, + 228, + 416 + ], + "score": 0.93, + "content": "\\boldsymbol { \\mathcal { T } } ( \\boldsymbol { \\theta } ^ { * } )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 403, + 405, + 416 + ], + "score": 1.0, + "content": "that depends on the final trained parameter", + "type": "text" + }, + { + "bbox": [ + 405, + 403, + 416, + 414 + ], + "score": 0.87, + "content": "\\pmb { \\theta } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 403, + 505, + 416 + ], + "score": 1.0, + "content": ", we can calculate the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 415, + 293, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 293, + 426 + ], + "score": 1.0, + "content": "impact of a particular sample on that target as:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "interline_equation", + "bbox": [ + 241, + 431, + 370, + 457 + ], + "lines": [ + { + "bbox": [ + 241, + 431, + 370, + 457 + ], + "spans": [ + { + "bbox": [ + 241, + 431, + 370, + 457 + ], + "score": 0.94, + "content": "\\frac { \\partial } { \\partial v _ { i } } T ( \\pmb { \\theta } ^ { * } ) = \\frac { \\partial } { \\partial \\pmb { \\theta } ^ { * } } T ( \\pmb { \\theta } ^ { * } ) \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { * }", + "type": "interline_equation", + "image_path": "99669177b9d03a381895ef1d3e8c83623a18afe29a5d5ceb5234ccb87dc95e73.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 241, + 431, + 370, + 457 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 469, + 505, + 494 + ], + "lines": [ + { + "bbox": [ + 105, + 468, + 504, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 461, + 483 + ], + "score": 1.0, + "content": "For example, if we are interested in the sum of predictions on a set of samples", + "type": "text" + }, + { + "bbox": [ + 461, + 469, + 504, + 482 + ], + "score": 0.9, + "content": "{ \\mathcal { T } } ( \\theta ^ { * } ) ~ =", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 107, + 480, + 385, + 497 + ], + "spans": [ + { + "bbox": [ + 107, + 481, + 174, + 496 + ], + "score": 0.93, + "content": "\\textstyle \\sum _ { i \\in { \\mathcal { S } } _ { c } } f ( \\mathbf { x } _ { i } , { \\pmb \\theta } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 480, + 385, + 497 + ], + "score": 1.0, + "content": ", we can use Equation (5) to calculate the derivative:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 500, + 392, + 532 + ], + "lines": [ + { + "bbox": [ + 218, + 500, + 392, + 532 + ], + "spans": [ + { + "bbox": [ + 218, + 500, + 392, + 532 + ], + "score": 0.93, + "content": "\\begin{array} { r c l } { \\displaystyle \\frac { \\partial } { \\partial v _ { i } } \\mathcal { T } ( \\pmb { \\theta } ^ { * } ) } & { = } & { \\displaystyle \\sum _ { i \\in \\mathcal { S } _ { c } } \\frac { \\partial } { \\partial \\pmb { \\theta } ^ { * } } f ( \\mathbf { x } _ { i } , \\pmb { \\theta } ^ { t } ) \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { * } } \\end{array}", + "type": "interline_equation", + "image_path": "8e4ed9df320fa4f39c893488bb13c88063209723ed58f1f12dd7b772e9e01530.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 218, + 500, + 392, + 516.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 218, + 516.0, + 392, + 532.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 550, + 504, + 574 + ], + "lines": [ + { + "bbox": [ + 105, + 549, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 565 + ], + "score": 1.0, + "content": "We note evaluating the exact impact of a sample, as shown above, is computationally cumbersome", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 561, + 232, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 232, + 574 + ], + "score": 1.0, + "content": "for all but the simplest models.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "title", + "bbox": [ + 107, + 590, + 191, + 603 + ], + "lines": [ + { + "bbox": [ + 105, + 590, + 191, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 191, + 605 + ], + "score": 1.0, + "content": "5 DISCUSSION", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 615, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "score": 1.0, + "content": "Samples’ impact on the deep network’s parameters vary across stages of training and network’s", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "layers. In our work, we found that easy samples predominantly shape parameters the top layers", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 639, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 505, + 650 + ], + "score": 1.0, + "content": "at the early training stages, while hard samples predominantly shape the parameters of the bottom", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "layers at the late training stage. Our experiments show that it is important to mix hard samples into", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 659, + 499, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 499, + 673 + ], + "score": 1.0, + "content": "different batches rather than keep them together in the same batch and away from other examples.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "There are many future extensions to the current work. Firstly, we want to expand our sample impor-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "tance analysis to different deep learning structures, like Convolution Neural Network and Recurrent", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "Neural Networks. Secondly, we want to use the sample importance as a guidance to extract a mini-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "mal subset of samples that are sufficient to achieve performance comparable to a network trained on", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 720, + 170, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 170, + 732 + ], + "score": 1.0, + "content": "the full dataset.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 308, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 249, + 95 + ], + "score": 1.0, + "content": "Here, we deem the sample weight", + "type": "text" + }, + { + "bbox": [ + 249, + 84, + 259, + 93 + ], + "score": 0.84, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "is fixed across all iterations. The update rule for stochastic", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 253, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 253, + 105 + ], + "score": 1.0, + "content": "gradient descent in each iteration is:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 105 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 110, + 367, + 138 + ], + "lines": [ + { + "bbox": [ + 244, + 110, + 367, + 138 + ], + "spans": [ + { + "bbox": [ + 244, + 110, + 367, + 138 + ], + "score": 0.94, + "content": "\\pmb { \\theta } ^ { t + 1 } = \\pmb { \\theta } ^ { t } - \\eta \\sum _ { i } v _ { i } \\mathbf { g } _ { i } ^ { t } - \\eta \\mathbf { r } _ { i } ^ { t }", + "type": "interline_equation", + "image_path": "6cc13f76fb0dc2b8abc82ce34dff334fff073e9fe51d4eef1884b1df7628cc5a.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 244, + 110, + 367, + 138 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 144, + 343, + 157 + ], + "lines": [ + { + "bbox": [ + 104, + 140, + 344, + 161 + ], + "spans": [ + { + "bbox": [ + 104, + 140, + 177, + 161 + ], + "score": 1.0, + "content": "The derivative of", + "type": "text" + }, + { + "bbox": [ + 177, + 144, + 197, + 155 + ], + "score": 0.9, + "content": "\\pmb { \\theta } ^ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 140, + 320, + 161 + ], + "score": 1.0, + "content": "with respect to sample weight", + "type": "text" + }, + { + "bbox": [ + 320, + 147, + 329, + 156 + ], + "score": 0.84, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 140, + 344, + 161 + ], + "score": 1.0, + "content": "is:", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 104, + 140, + 344, + 161 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 162, + 400, + 215 + ], + "lines": [ + { + "bbox": [ + 212, + 162, + 400, + 215 + ], + "spans": [ + { + "bbox": [ + 212, + 162, + 400, + 215 + ], + "score": 0.93, + "content": "\\begin{array} { r c l } { { \\displaystyle \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { t + 1 } } } & { { = } } & { { \\displaystyle \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { t } - \\eta \\mathbf { g } _ { i } ^ { t } - \\eta H ( \\pmb { \\theta } ^ { t } ) \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { t } } } \\\\ { { \\displaystyle \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { 1 } } } & { { = } } & { { \\displaystyle - \\eta \\mathbf { g } _ { i } ^ { 0 } , } } \\end{array}", + "type": "interline_equation", + "image_path": "55051f6288701aec5bc042041645cddaf7911962d699ba048cc340f009ad8f71.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 212, + 162, + 400, + 179.66666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 212, + 179.66666666666666, + 400, + 197.33333333333331 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 212, + 197.33333333333331, + 400, + 214.99999999999997 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 228, + 505, + 264 + ], + "lines": [ + { + "bbox": [ + 105, + 227, + 505, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 133, + 242 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 227, + 160, + 241 + ], + "score": 0.93, + "content": "H ( \\pmb \\theta ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 227, + 496, + 242 + ], + "score": 1.0, + "content": "is the Hessian matrix of the objective in (2) with regard to all parameters in iteration", + "type": "text" + }, + { + "bbox": [ + 497, + 230, + 501, + 239 + ], + "score": 0.73, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 227, + 505, + 242 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 239, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 104, + 239, + 377, + 253 + ], + "score": 1.0, + "content": "If we iterate the updates until convergence, then we can assume that", + "type": "text" + }, + { + "bbox": [ + 377, + 240, + 390, + 251 + ], + "score": 0.9, + "content": "\\theta ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 239, + 446, + 253 + ], + "score": 1.0, + "content": "is a fix-point,", + "type": "text" + }, + { + "bbox": [ + 446, + 240, + 505, + 252 + ], + "score": 0.9, + "content": "\\pmb { \\theta } ^ { \\ast } = \\pmb { \\theta } ^ { T + 1 } =", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 250, + 185, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 252, + 119, + 264 + ], + "score": 0.85, + "content": "\\theta ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 250, + 185, + 267 + ], + "score": 1.0, + "content": ", and we obtain:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 104, + 227, + 505, + 267 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 270, + 407, + 297 + ], + "lines": [ + { + "bbox": [ + 203, + 270, + 407, + 297 + ], + "spans": [ + { + "bbox": [ + 203, + 270, + 407, + 297 + ], + "score": 0.91, + "content": "\\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { T + 1 } - \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { T } = - \\eta \\mathbf { g } _ { i } ^ { t } - \\eta H ( \\pmb { \\theta } ^ { * } ) \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { * }", + "type": "interline_equation", + "image_path": "8ccd2bd9ca63663dc86b7ef0562ad15de38ed0ccf52a47be5041531fd09326a6.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 203, + 270, + 407, + 297 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 103, + 309, + 460, + 322 + ], + "lines": [ + { + "bbox": [ + 104, + 308, + 460, + 324 + ], + "spans": [ + { + "bbox": [ + 104, + 308, + 460, + 324 + ], + "score": 1.0, + "content": "Hence, the derivative of parameters in the final model with regard to a sample weight is:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 104, + 308, + 460, + 324 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 255, + 327, + 356, + 353 + ], + "lines": [ + { + "bbox": [ + 255, + 327, + 356, + 353 + ], + "spans": [ + { + "bbox": [ + 255, + 327, + 356, + 353 + ], + "score": 0.94, + "content": "\\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { * } = - H ( \\pmb { \\theta } ^ { * } ) ^ { - 1 } \\mathbf { g } _ { i } ^ { T }", + "type": "interline_equation", + "image_path": "d30cb4417f117e660ccdc2a6eee39501c9d3a39ed7f1bff4e22e84cfa00b7d0f.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 255, + 327, + 356, + 353 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 364, + 505, + 398 + ], + "lines": [ + { + "bbox": [ + 105, + 364, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 505, + 378 + ], + "score": 1.0, + "content": "Equation (4) indicates that we can calculate the sample specific impact on final trained model by", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 376, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 505, + 388 + ], + "score": 1.0, + "content": "using the parameters learned at the convergence point. In deep learning methods, due to early", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 387, + 448, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 448, + 400 + ], + "score": 1.0, + "content": "stopping, fix point might not be achieved, and Equation (4) might not be an accurate.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 364, + 505, + 400 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 403, + 504, + 426 + ], + "lines": [ + { + "bbox": [ + 106, + 403, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 201, + 416 + ], + "score": 1.0, + "content": "For any target quantity", + "type": "text" + }, + { + "bbox": [ + 201, + 403, + 228, + 416 + ], + "score": 0.93, + "content": "\\boldsymbol { \\mathcal { T } } ( \\boldsymbol { \\theta } ^ { * } )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 403, + 405, + 416 + ], + "score": 1.0, + "content": "that depends on the final trained parameter", + "type": "text" + }, + { + "bbox": [ + 405, + 403, + 416, + 414 + ], + "score": 0.87, + "content": "\\pmb { \\theta } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 403, + 505, + 416 + ], + "score": 1.0, + "content": ", we can calculate the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 415, + 293, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 293, + 426 + ], + "score": 1.0, + "content": "impact of a particular sample on that target as:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 106, + 403, + 505, + 426 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 241, + 431, + 370, + 457 + ], + "lines": [ + { + "bbox": [ + 241, + 431, + 370, + 457 + ], + "spans": [ + { + "bbox": [ + 241, + 431, + 370, + 457 + ], + "score": 0.94, + "content": "\\frac { \\partial } { \\partial v _ { i } } T ( \\pmb { \\theta } ^ { * } ) = \\frac { \\partial } { \\partial \\pmb { \\theta } ^ { * } } T ( \\pmb { \\theta } ^ { * } ) \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { * }", + "type": "interline_equation", + "image_path": "99669177b9d03a381895ef1d3e8c83623a18afe29a5d5ceb5234ccb87dc95e73.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 241, + 431, + 370, + 457 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 469, + 505, + 494 + ], + "lines": [ + { + "bbox": [ + 105, + 468, + 504, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 461, + 483 + ], + "score": 1.0, + "content": "For example, if we are interested in the sum of predictions on a set of samples", + "type": "text" + }, + { + "bbox": [ + 461, + 469, + 504, + 482 + ], + "score": 0.9, + "content": "{ \\mathcal { T } } ( \\theta ^ { * } ) ~ =", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 107, + 480, + 385, + 497 + ], + "spans": [ + { + "bbox": [ + 107, + 481, + 174, + 496 + ], + "score": 0.93, + "content": "\\textstyle \\sum _ { i \\in { \\mathcal { S } } _ { c } } f ( \\mathbf { x } _ { i } , { \\pmb \\theta } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 480, + 385, + 497 + ], + "score": 1.0, + "content": ", we can use Equation (5) to calculate the derivative:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 468, + 504, + 497 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 500, + 392, + 532 + ], + "lines": [ + { + "bbox": [ + 218, + 500, + 392, + 532 + ], + "spans": [ + { + "bbox": [ + 218, + 500, + 392, + 532 + ], + "score": 0.93, + "content": "\\begin{array} { r c l } { \\displaystyle \\frac { \\partial } { \\partial v _ { i } } \\mathcal { T } ( \\pmb { \\theta } ^ { * } ) } & { = } & { \\displaystyle \\sum _ { i \\in \\mathcal { S } _ { c } } \\frac { \\partial } { \\partial \\pmb { \\theta } ^ { * } } f ( \\mathbf { x } _ { i } , \\pmb { \\theta } ^ { t } ) \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { * } } \\end{array}", + "type": "interline_equation", + "image_path": "8e4ed9df320fa4f39c893488bb13c88063209723ed58f1f12dd7b772e9e01530.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 218, + 500, + 392, + 516.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 218, + 516.0, + 392, + 532.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 550, + 504, + 574 + ], + "lines": [ + { + "bbox": [ + 105, + 549, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 565 + ], + "score": 1.0, + "content": "We note evaluating the exact impact of a sample, as shown above, is computationally cumbersome", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 561, + 232, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 232, + 574 + ], + "score": 1.0, + "content": "for all but the simplest models.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 549, + 505, + 574 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 590, + 191, + 603 + ], + "lines": [ + { + "bbox": [ + 105, + 590, + 191, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 191, + 605 + ], + "score": 1.0, + "content": "5 DISCUSSION", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 615, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "score": 1.0, + "content": "Samples’ impact on the deep network’s parameters vary across stages of training and network’s", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "layers. In our work, we found that easy samples predominantly shape parameters the top layers", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 639, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 505, + 650 + ], + "score": 1.0, + "content": "at the early training stages, while hard samples predominantly shape the parameters of the bottom", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "layers at the late training stage. Our experiments show that it is important to mix hard samples into", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 659, + 499, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 499, + 673 + ], + "score": 1.0, + "content": "different batches rather than keep them together in the same batch and away from other examples.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 615, + 506, + 673 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "There are many future extensions to the current work. Firstly, we want to expand our sample impor-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "tance analysis to different deep learning structures, like Convolution Neural Network and Recurrent", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "Neural Networks. Secondly, we want to use the sample importance as a guidance to extract a mini-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "mal subset of samples that are sufficient to achieve performance comparable to a network trained on", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 720, + 170, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 170, + 732 + ], + "score": 1.0, + "content": "the full dataset.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 676, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 176, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 100, + 505, + 133 + ], + "lines": [ + { + "bbox": [ + 105, + 100, + 505, + 112 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 505, + 112 + ], + "score": 1.0, + "content": "Fred´ eric Bastien, Pascal Lamblin, Razvan Pascanu, James Bergstra, Ian J. Goodfellow, Arnaud ´", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 111, + 504, + 123 + ], + "spans": [ + { + "bbox": [ + 116, + 111, + 504, + 123 + ], + "score": 1.0, + "content": "Bergeron, Nicolas Bouchard, and Yoshua Bengio. Theano: new features and speed improvements.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 441, + 135 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 441, + 135 + ], + "score": 1.0, + "content": "Deep Learning and Unsupervised Feature Learning NIPS 2012 Workshop, 2012.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 109, + 141, + 503, + 174 + ], + "lines": [ + { + "bbox": [ + 107, + 141, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 107, + 141, + 505, + 153 + ], + "score": 1.0, + "content": "Yoshua Bengio, Jer´ ome Louradour, Ronan Collobert, and Jason Weston. Curriculum learning. In ˆ", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 152, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 115, + 152, + 505, + 164 + ], + "score": 1.0, + "content": "Proceedings of the 26th annual international conference on machine learning, pp. 41–48. ACM,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 161, + 143, + 176 + ], + "spans": [ + { + "bbox": [ + 115, + 161, + 143, + 176 + ], + "score": 1.0, + "content": "2009.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 181, + 505, + 226 + ], + "lines": [ + { + "bbox": [ + 105, + 182, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 194 + ], + "score": 1.0, + "content": "James Bergstra, Olivier Breuleux, Fred´ eric Bastien, Pascal Lamblin, Razvan Pascanu, Guillaume ´", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 193, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 115, + 193, + 505, + 205 + ], + "score": 1.0, + "content": "Desjardins, Joseph Turian, David Warde-Farley, and Yoshua Bengio. Theano: a CPU and GPU", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 204, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 115, + 204, + 505, + 217 + ], + "score": 1.0, + "content": "math expression compiler. In Proceedings of the Python for Scientific Computing Conference", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 117, + 215, + 272, + 227 + ], + "spans": [ + { + "bbox": [ + 117, + 215, + 272, + 227 + ], + "score": 1.0, + "content": "(SciPy), June 2010. Oral Presentation.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 233, + 504, + 256 + ], + "lines": [ + { + "bbox": [ + 106, + 233, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 233, + 505, + 246 + ], + "score": 1.0, + "content": "Xavier Glorot and Yoshua Bengio. Understanding the difficulty of training deep feedforward neural", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 244, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 116, + 244, + 505, + 257 + ], + "score": 1.0, + "content": "networks. In International Conference on Artificial Intelligence and Statistics, pp. 249–256, 2010.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 263, + 505, + 297 + ], + "lines": [ + { + "bbox": [ + 105, + 263, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 505, + 276 + ], + "score": 1.0, + "content": "Lu Jiang, Deyu Meng, Shoou-I Yu, Zhenzhong Lan, Shiguang Shan, and Alexander Hauptmann.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 273, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 115, + 273, + 505, + 288 + ], + "score": 1.0, + "content": "Self-paced learning with diversity. In Advances in Neural Information Processing Systems, pp.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 285, + 192, + 297 + ], + "spans": [ + { + "bbox": [ + 116, + 285, + 192, + 297 + ], + "score": 1.0, + "content": "2078–2086, 2014.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 304, + 503, + 316 + ], + "lines": [ + { + "bbox": [ + 106, + 304, + 504, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 504, + 318 + ], + "score": 1.0, + "content": "Alex Krizhevsky and Geoffrey Hinton. Learning multiple layers of features from tiny images, 2009.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 322, + 503, + 346 + ], + "lines": [ + { + "bbox": [ + 106, + 323, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 505, + 336 + ], + "score": 1.0, + "content": "M Pawan Kumar, Benjamin Packer, and Daphne Koller. Self-paced learning for latent variable", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 333, + 466, + 347 + ], + "spans": [ + { + "bbox": [ + 115, + 333, + 466, + 347 + ], + "score": 1.0, + "content": "models. In Advances in Neural Information Processing Systems, pp. 1189–1197, 2010.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 108, + 352, + 503, + 376 + ], + "lines": [ + { + "bbox": [ + 106, + 351, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 505, + 366 + ], + "score": 1.0, + "content": "Yann LeCun, Corinna Cortes, and Christopher JC Burges. The MNIST database of handwritten", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 363, + 169, + 376 + ], + "spans": [ + { + "bbox": [ + 115, + 363, + 169, + 376 + ], + "score": 1.0, + "content": "digits, 1998.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 382, + 503, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 396 + ], + "score": 1.0, + "content": "Yann LeCun, Yoshua Bengio, and Geoffrey Hinton. Deep learning. Nature, 521(7553):436–444,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 114, + 393, + 143, + 406 + ], + "spans": [ + { + "bbox": [ + 114, + 393, + 143, + 406 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 412, + 505, + 446 + ], + "lines": [ + { + "bbox": [ + 105, + 412, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 505, + 426 + ], + "score": 1.0, + "content": "Honglak Lee, Roger Grosse, Rajesh Ranganath, and A. Y. Ng. Unsupervised learning of hierarchical", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 114, + 423, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 114, + 423, + 505, + 437 + ], + "score": 1.0, + "content": "representations with convolutional deep belief networks. Communications of the ACM, 54(10):", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 435, + 177, + 447 + ], + "spans": [ + { + "bbox": [ + 116, + 435, + 177, + 447 + ], + "score": 1.0, + "content": "95–103, 2011.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 453, + 505, + 488 + ], + "lines": [ + { + "bbox": [ + 105, + 452, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 505, + 467 + ], + "score": 1.0, + "content": "Andrew Saxe, Pang W Koh, Zhenghao Chen, Maneesh Bhand, Bipin Suresh, and Andrew Y Ng.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 117, + 466, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 117, + 466, + 505, + 477 + ], + "score": 1.0, + "content": "On random weights and unsupervised feature learning. In Proceedings of the 28th international", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 477, + 386, + 488 + ], + "spans": [ + { + "bbox": [ + 116, + 477, + 386, + 488 + ], + "score": 1.0, + "content": "conference on machine learning (ICML-11), pp. 1089–1096, 2011.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 495, + 504, + 517 + ], + "lines": [ + { + "bbox": [ + 106, + 495, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 505, + 507 + ], + "score": 1.0, + "content": "Roy T St Laurent and R Dennis Cook. Leverage and superleverage in nonlinear regression. Journal", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 506, + 375, + 517 + ], + "spans": [ + { + "bbox": [ + 116, + 506, + 375, + 517 + ], + "score": 1.0, + "content": "of the American Statistical Association, 87(420):985–990, 1992.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2017", + "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": "title", + "bbox": [ + 108, + 81, + 176, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 100, + 505, + 133 + ], + "lines": [ + { + "bbox": [ + 105, + 100, + 505, + 112 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 505, + 112 + ], + "score": 1.0, + "content": "Fred´ eric Bastien, Pascal Lamblin, Razvan Pascanu, James Bergstra, Ian J. Goodfellow, Arnaud ´", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 111, + 504, + 123 + ], + "spans": [ + { + "bbox": [ + 116, + 111, + 504, + 123 + ], + "score": 1.0, + "content": "Bergeron, Nicolas Bouchard, and Yoshua Bengio. Theano: new features and speed improvements.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 441, + 135 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 441, + 135 + ], + "score": 1.0, + "content": "Deep Learning and Unsupervised Feature Learning NIPS 2012 Workshop, 2012.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 100, + 505, + 135 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 141, + 503, + 174 + ], + "lines": [ + { + "bbox": [ + 107, + 141, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 107, + 141, + 505, + 153 + ], + "score": 1.0, + "content": "Yoshua Bengio, Jer´ ome Louradour, Ronan Collobert, and Jason Weston. Curriculum learning. In ˆ", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 152, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 115, + 152, + 505, + 164 + ], + "score": 1.0, + "content": "Proceedings of the 26th annual international conference on machine learning, pp. 41–48. ACM,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 161, + 143, + 176 + ], + "spans": [ + { + "bbox": [ + 115, + 161, + 143, + 176 + ], + "score": 1.0, + "content": "2009.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 107, + 141, + 505, + 176 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 181, + 505, + 226 + ], + "lines": [ + { + "bbox": [ + 105, + 182, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 194 + ], + "score": 1.0, + "content": "James Bergstra, Olivier Breuleux, Fred´ eric Bastien, Pascal Lamblin, Razvan Pascanu, Guillaume ´", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 193, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 115, + 193, + 505, + 205 + ], + "score": 1.0, + "content": "Desjardins, Joseph Turian, David Warde-Farley, and Yoshua Bengio. Theano: a CPU and GPU", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 204, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 115, + 204, + 505, + 217 + ], + "score": 1.0, + "content": "math expression compiler. In Proceedings of the Python for Scientific Computing Conference", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 117, + 215, + 272, + 227 + ], + "spans": [ + { + "bbox": [ + 117, + 215, + 272, + 227 + ], + "score": 1.0, + "content": "(SciPy), June 2010. Oral Presentation.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 182, + 505, + 227 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 233, + 504, + 256 + ], + "lines": [ + { + "bbox": [ + 106, + 233, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 233, + 505, + 246 + ], + "score": 1.0, + "content": "Xavier Glorot and Yoshua Bengio. Understanding the difficulty of training deep feedforward neural", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 244, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 116, + 244, + 505, + 257 + ], + "score": 1.0, + "content": "networks. In International Conference on Artificial Intelligence and Statistics, pp. 249–256, 2010.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 106, + 233, + 505, + 257 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 263, + 505, + 297 + ], + "lines": [ + { + "bbox": [ + 105, + 263, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 505, + 276 + ], + "score": 1.0, + "content": "Lu Jiang, Deyu Meng, Shoou-I Yu, Zhenzhong Lan, Shiguang Shan, and Alexander Hauptmann.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 273, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 115, + 273, + 505, + 288 + ], + "score": 1.0, + "content": "Self-paced learning with diversity. In Advances in Neural Information Processing Systems, pp.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 285, + 192, + 297 + ], + "spans": [ + { + "bbox": [ + 116, + 285, + 192, + 297 + ], + "score": 1.0, + "content": "2078–2086, 2014.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 263, + 505, + 297 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 304, + 503, + 316 + ], + "lines": [ + { + "bbox": [ + 106, + 304, + 504, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 504, + 318 + ], + "score": 1.0, + "content": "Alex Krizhevsky and Geoffrey Hinton. Learning multiple layers of features from tiny images, 2009.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16, + "bbox_fs": [ + 106, + 304, + 504, + 318 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 322, + 503, + 346 + ], + "lines": [ + { + "bbox": [ + 106, + 323, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 505, + 336 + ], + "score": 1.0, + "content": "M Pawan Kumar, Benjamin Packer, and Daphne Koller. Self-paced learning for latent variable", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 333, + 466, + 347 + ], + "spans": [ + { + "bbox": [ + 115, + 333, + 466, + 347 + ], + "score": 1.0, + "content": "models. In Advances in Neural Information Processing Systems, pp. 1189–1197, 2010.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 106, + 323, + 505, + 347 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 352, + 503, + 376 + ], + "lines": [ + { + "bbox": [ + 106, + 351, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 505, + 366 + ], + "score": 1.0, + "content": "Yann LeCun, Corinna Cortes, and Christopher JC Burges. The MNIST database of handwritten", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 363, + 169, + 376 + ], + "spans": [ + { + "bbox": [ + 115, + 363, + 169, + 376 + ], + "score": 1.0, + "content": "digits, 1998.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 106, + 351, + 505, + 376 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 382, + 503, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 396 + ], + "score": 1.0, + "content": "Yann LeCun, Yoshua Bengio, and Geoffrey Hinton. Deep learning. Nature, 521(7553):436–444,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 114, + 393, + 143, + 406 + ], + "spans": [ + { + "bbox": [ + 114, + 393, + 143, + 406 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 381, + 505, + 406 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 412, + 505, + 446 + ], + "lines": [ + { + "bbox": [ + 105, + 412, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 505, + 426 + ], + "score": 1.0, + "content": "Honglak Lee, Roger Grosse, Rajesh Ranganath, and A. Y. Ng. Unsupervised learning of hierarchical", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 114, + 423, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 114, + 423, + 505, + 437 + ], + "score": 1.0, + "content": "representations with convolutional deep belief networks. Communications of the ACM, 54(10):", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 435, + 177, + 447 + ], + "spans": [ + { + "bbox": [ + 116, + 435, + 177, + 447 + ], + "score": 1.0, + "content": "95–103, 2011.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 412, + 505, + 447 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 453, + 505, + 488 + ], + "lines": [ + { + "bbox": [ + 105, + 452, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 505, + 467 + ], + "score": 1.0, + "content": "Andrew Saxe, Pang W Koh, Zhenghao Chen, Maneesh Bhand, Bipin Suresh, and Andrew Y Ng.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 117, + 466, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 117, + 466, + 505, + 477 + ], + "score": 1.0, + "content": "On random weights and unsupervised feature learning. In Proceedings of the 28th international", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 477, + 386, + 488 + ], + "spans": [ + { + "bbox": [ + 116, + 477, + 386, + 488 + ], + "score": 1.0, + "content": "conference on machine learning (ICML-11), pp. 1089–1096, 2011.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 452, + 505, + 488 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 495, + 504, + 517 + ], + "lines": [ + { + "bbox": [ + 106, + 495, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 505, + 507 + ], + "score": 1.0, + "content": "Roy T St Laurent and R Dennis Cook. Leverage and superleverage in nonlinear regression. Journal", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 506, + 375, + 517 + ], + "spans": [ + { + "bbox": [ + 116, + 506, + 375, + 517 + ], + "score": 1.0, + "content": "of the American Statistical Association, 87(420):985–990, 1992.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 495, + 505, + 517 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 161, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 163, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 163, + 95 + ], + "score": 1.0, + "content": "APPENDIX", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "image", + "bbox": [ + 136, + 111, + 474, + 382 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 136, + 111, + 474, + 382 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 136, + 111, + 474, + 382 + ], + "spans": [ + { + "bbox": [ + 136, + 111, + 474, + 382 + ], + "score": 0.975, + "type": "image", + "image_path": "b50b1bc5189d4cb3fa5ad2950a2e80b6a0c2b3a70f01fab8b5c6bf2838fbfbfa.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 136, + 111, + 474, + 201.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 136, + 201.33333333333331, + 474, + 291.66666666666663 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 136, + 291.66666666666663, + 474, + 381.99999999999994 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 400, + 505, + 424 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "Figure 9: The training and test error on MNIST (first row) and CIFAR-10 (second row). The left", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 412, + 371, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 371, + 425 + ], + "score": 1.0, + "content": "column showed the average class-specific negative log likelihood.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + } + ], + "index": 3.25 + }, + { + "type": "image", + "bbox": [ + 170, + 445, + 439, + 577 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 170, + 445, + 439, + 577 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 170, + 445, + 439, + 577 + ], + "spans": [ + { + "bbox": [ + 170, + 445, + 439, + 577 + ], + "score": 0.964, + "type": "image", + "image_path": "f8db2eb88900f5393079c3638df2a7dc58b9a63367a73c5ed63a70e9013e6e1f.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 170, + 445, + 439, + 489.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 170, + 489.0, + 439, + 533.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 170, + 533.0, + 439, + 577.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 204, + 600, + 405, + 612 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 204, + 598, + 406, + 614 + ], + "spans": [ + { + "bbox": [ + 204, + 598, + 406, + 614 + ], + "score": 1.0, + "content": "Figure 10: Histogram of total sample importance.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + } + ], + "index": 8.0 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 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 2017", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 161, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 163, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 163, + 95 + ], + "score": 1.0, + "content": "APPENDIX", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "image", + "bbox": [ + 136, + 111, + 474, + 382 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 136, + 111, + 474, + 382 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 136, + 111, + 474, + 382 + ], + "spans": [ + { + "bbox": [ + 136, + 111, + 474, + 382 + ], + "score": 0.975, + "type": "image", + "image_path": "b50b1bc5189d4cb3fa5ad2950a2e80b6a0c2b3a70f01fab8b5c6bf2838fbfbfa.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 136, + 111, + 474, + 201.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 136, + 201.33333333333331, + 474, + 291.66666666666663 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 136, + 291.66666666666663, + 474, + 381.99999999999994 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 400, + 505, + 424 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "Figure 9: The training and test error on MNIST (first row) and CIFAR-10 (second row). The left", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 412, + 371, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 371, + 425 + ], + "score": 1.0, + "content": "column showed the average class-specific negative log likelihood.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + } + ], + "index": 3.25 + }, + { + "type": "image", + "bbox": [ + 170, + 445, + 439, + 577 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 170, + 445, + 439, + 577 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 170, + 445, + 439, + 577 + ], + "spans": [ + { + "bbox": [ + 170, + 445, + 439, + 577 + ], + "score": 0.964, + "type": "image", + "image_path": "f8db2eb88900f5393079c3638df2a7dc58b9a63367a73c5ed63a70e9013e6e1f.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 170, + 445, + 439, + 489.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 170, + 489.0, + 439, + 533.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 170, + 533.0, + 439, + 577.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 204, + 600, + 405, + 612 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 204, + 598, + 406, + 614 + ], + "spans": [ + { + "bbox": [ + 204, + 598, + 406, + 614 + ], + "score": 1.0, + "content": "Figure 10: Histogram of total sample importance.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + } + ], + "index": 8.0 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/r1IRctqxg/r1IRctqxg_model.json b/parse/train/r1IRctqxg/r1IRctqxg_model.json new file mode 100644 index 0000000000000000000000000000000000000000..116b52586521b01aa2d55e56b5e37ca030ac5478 --- /dev/null +++ b/parse/train/r1IRctqxg/r1IRctqxg_model.json @@ -0,0 +1,21774 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 1286, + 1403, + 1286, + 1403, + 1683, + 299, + 1683 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 398, + 698, + 1302, + 698, + 1302, + 1095, + 398, + 1095 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1698, + 1404, + 1698, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 314, + 376, + 800, + 376, + 800, + 531, + 314, + 531 + ], + "score": 0.963 + }, + { + "category_id": 0, + "poly": [ + 300, + 219, + 1401, + 219, + 1401, + 322, + 300, + 322 + ], + "score": 0.96 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.881 + }, + { + "category_id": 0, + "poly": [ + 302, + 1199, + 573, + 1199, + 573, + 1234, + 302, + 1234 + ], + "score": 0.866 + }, + { + "category_id": 0, + "poly": [ + 773, + 611, + 927, + 611, + 927, + 644, + 773, + 644 + ], + "score": 0.847 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 857, + 2088, + 857, + 2112, + 842, + 2112 + ], + "score": 0.646 + }, + { + "category_id": 15, + "poly": [ + 294.0, + 216.0, + 1405.0, + 216.0, + 1405.0, + 274.0, + 294.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 274.0, + 542.0, + 274.0, + 542.0, + 328.0, + 293.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1196.0, + 579.0, + 1196.0, + 579.0, + 1243.0, + 294.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 607.0, + 934.0, + 607.0, + 934.0, + 650.0, + 768.0, + 650.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": [ + 295.0, + 1286.0, + 1405.0, + 1286.0, + 1405.0, + 1323.0, + 295.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1316.0, + 1407.0, + 1316.0, + 1407.0, + 1351.0, + 294.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1345.0, + 1407.0, + 1345.0, + 1407.0, + 1386.0, + 293.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1376.0, + 1407.0, + 1376.0, + 1407.0, + 1416.0, + 294.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1408.0, + 1405.0, + 1408.0, + 1405.0, + 1444.0, + 295.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1439.0, + 1405.0, + 1439.0, + 1405.0, + 1473.0, + 294.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1468.0, + 1405.0, + 1468.0, + 1405.0, + 1505.0, + 293.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1499.0, + 1405.0, + 1499.0, + 1405.0, + 1535.0, + 294.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1530.0, + 1405.0, + 1530.0, + 1405.0, + 1566.0, + 294.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1560.0, + 1405.0, + 1560.0, + 1405.0, + 1597.0, + 293.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1592.0, + 1404.0, + 1592.0, + 1404.0, + 1624.0, + 295.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1618.0, + 1407.0, + 1618.0, + 1407.0, + 1658.0, + 292.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1653.0, + 890.0, + 1653.0, + 890.0, + 1685.0, + 295.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 698.0, + 1303.0, + 698.0, + 1303.0, + 733.0, + 395.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 728.0, + 1306.0, + 728.0, + 1306.0, + 765.0, + 394.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 759.0, + 1306.0, + 759.0, + 1306.0, + 794.0, + 393.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 791.0, + 1305.0, + 791.0, + 1305.0, + 823.0, + 394.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 822.0, + 1304.0, + 822.0, + 1304.0, + 854.0, + 394.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 850.0, + 1308.0, + 850.0, + 1308.0, + 888.0, + 393.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 881.0, + 1306.0, + 881.0, + 1306.0, + 915.0, + 394.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 910.0, + 1308.0, + 910.0, + 1308.0, + 949.0, + 393.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 943.0, + 1306.0, + 943.0, + 1306.0, + 978.0, + 394.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 972.0, + 1306.0, + 972.0, + 1306.0, + 1007.0, + 394.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1001.0, + 1306.0, + 1001.0, + 1306.0, + 1039.0, + 393.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1031.0, + 1306.0, + 1031.0, + 1306.0, + 1070.0, + 393.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1063.0, + 1189.0, + 1063.0, + 1189.0, + 1101.0, + 392.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1699.0, + 1402.0, + 1699.0, + 1402.0, + 1733.0, + 294.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1727.0, + 1404.0, + 1727.0, + 1404.0, + 1763.0, + 293.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1759.0, + 1405.0, + 1759.0, + 1405.0, + 1794.0, + 294.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1790.0, + 1402.0, + 1790.0, + 1402.0, + 1825.0, + 293.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1819.0, + 1405.0, + 1819.0, + 1405.0, + 1857.0, + 293.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1851.0, + 1405.0, + 1851.0, + 1405.0, + 1886.0, + 293.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1882.0, + 1404.0, + 1882.0, + 1404.0, + 1917.0, + 293.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1911.0, + 1404.0, + 1911.0, + 1404.0, + 1947.0, + 292.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1943.0, + 1404.0, + 1943.0, + 1404.0, + 1977.0, + 293.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2008.0, + 292.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2001.0, + 523.0, + 2001.0, + 523.0, + 2040.0, + 294.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 377.0, + 681.0, + 377.0, + 681.0, + 412.0, + 313.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 408.0, + 691.0, + 408.0, + 691.0, + 440.0, + 313.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 437.0, + 801.0, + 437.0, + 801.0, + 470.0, + 312.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 468.0, + 662.0, + 468.0, + 662.0, + 500.0, + 313.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 497.0, + 714.0, + 497.0, + 714.0, + 535.0, + 313.0, + 535.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1203, + 1404, + 1203, + 1404, + 1297, + 298, + 1297 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1859, + 1405, + 1859, + 1405, + 1957, + 298, + 1957 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1489, + 1405, + 1489, + 1405, + 1582, + 297, + 1582 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 298, + 661, + 1404, + 661, + 1404, + 755, + 298, + 755 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 299, + 1024, + 1405, + 1024, + 1405, + 1114, + 299, + 1114 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 673, + 1600, + 1026, + 1600, + 1026, + 1685, + 673, + 1685 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1400, + 229, + 1400, + 323, + 299, + 323 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 297, + 1411, + 1402, + 1411, + 1402, + 1475, + 297, + 1475 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 712, + 1972, + 985, + 1972, + 985, + 2043, + 712, + 2043 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 296, + 867, + 1402, + 867, + 1402, + 932, + 296, + 932 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 689, + 1113, + 1009, + 1113, + 1009, + 1196, + 689, + 1196 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 298, + 1700, + 1403, + 1700, + 1403, + 1765, + 298, + 1765 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 678, + 1313, + 1020, + 1313, + 1020, + 1398, + 678, + 1398 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 298, + 522, + 1405, + 522, + 1405, + 647, + 298, + 647 + ], + "score": 0.936 + }, + { + "category_id": 0, + "poly": [ + 299, + 1802, + 630, + 1802, + 630, + 1835, + 299, + 1835 + ], + "score": 0.927 + }, + { + "category_id": 0, + "poly": [ + 298, + 967, + 574, + 967, + 574, + 1000, + 298, + 1000 + ], + "score": 0.919 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 856, + 75, + 856, + 105, + 298, + 105 + ], + "score": 0.914 + }, + { + "category_id": 0, + "poly": [ + 299, + 799, + 665, + 799, + 665, + 835, + 299, + 835 + ], + "score": 0.908 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1135, + 1400, + 1135, + 1400, + 1166, + 1366, + 1166 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1338, + 1400, + 1338, + 1400, + 1368, + 1366, + 1368 + ], + "score": 0.888 + }, + { + "category_id": 1, + "poly": [ + 292, + 445, + 1400, + 445, + 1400, + 509, + 292, + 509 + ], + "score": 0.874 + }, + { + "category_id": 1, + "poly": [ + 299, + 337, + 1399, + 337, + 1399, + 432, + 299, + 432 + ], + "score": 0.87 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.752 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.21 + }, + { + "category_id": 14, + "poly": [ + 673, + 1594, + 1023, + 1594, + 1023, + 1686, + 673, + 1686 + ], + "score": 0.95, + "latex": "\\pmb { \\theta } ^ { t + 1 } = \\pmb { \\theta } ^ { t } - \\eta \\sum _ { i = 1 } ^ { n } v _ { i } ^ { t } \\mathbf { g } _ { i } ^ { t } - \\eta \\mathbf { r } ^ { t } ," + }, + { + "category_id": 14, + "poly": [ + 712, + 1970, + 987, + 1970, + 987, + 2044, + 712, + 2044 + ], + "score": 0.95, + "latex": "{ \\boldsymbol { \\phi } } _ { i } ^ { t } = { \\frac { \\partial } { \\partial v _ { i } ^ { t } } } \\Delta { \\pmb { \\theta } } ^ { t } = - \\eta \\mathbf { g } _ { i } ^ { t } ." + }, + { + "category_id": 14, + "poly": [ + 685, + 1106, + 1009, + 1106, + 1009, + 1198, + 685, + 1198 + ], + "score": 0.95, + "latex": "\\sum _ { i = 1 } ^ { n } L ( y _ { i } , f ( \\mathbf { x } _ { i } , \\pmb { \\theta } ) ) + R ( \\pmb { \\theta } ) ," + }, + { + "category_id": 14, + "poly": [ + 674, + 1309, + 1020, + 1309, + 1020, + 1401, + 674, + 1401 + ], + "score": 0.94, + "latex": "\\sum _ { i = 1 } ^ { n } v _ { i } L ( y _ { i } , f ( \\mathbf { x } _ { i } , \\pmb { \\theta } ) ) + R ( \\pmb { \\theta } ) ," + }, + { + "category_id": 13, + "poly": [ + 501, + 1920, + 704, + 1920, + 704, + 1954, + 501, + 1954 + ], + "score": 0.93, + "latex": "\\Delta \\pmb { \\theta } ^ { t } = \\pmb { \\theta } ^ { t + 1 } - \\pmb { \\theta } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 538, + 1056, + 633, + 1056, + 633, + 1089, + 538, + 1089 + ], + "score": 0.93, + "latex": "f ( \\mathbf { x } _ { i } , \\pmb { \\theta } )" + }, + { + "category_id": 13, + "poly": [ + 395, + 1056, + 478, + 1056, + 478, + 1089, + 395, + 1089 + ], + "score": 0.92, + "latex": "\\left( \\mathbf { x } _ { i } , y _ { i } \\right)" + }, + { + "category_id": 13, + "poly": [ + 373, + 1204, + 542, + 1204, + 542, + 1238, + 373, + 1238 + ], + "score": 0.92, + "latex": "L ( y _ { i } , f ( \\mathbf { x } _ { i } , \\pmb { \\theta } ) )" + }, + { + "category_id": 13, + "poly": [ + 862, + 1204, + 924, + 1204, + 924, + 1238, + 862, + 1238 + ], + "score": 0.92, + "latex": "R ( \\pmb \\theta )" + }, + { + "category_id": 13, + "poly": [ + 1286, + 1234, + 1400, + 1234, + 1400, + 1268, + 1286, + 1268 + ], + "score": 0.92, + "latex": "v _ { i } \\in [ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 1346, + 1702, + 1374, + 1702, + 1374, + 1737, + 1346, + 1737 + ], + "score": 0.89, + "latex": "\\boldsymbol { v } _ { i } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 1037, + 1925, + 1063, + 1925, + 1063, + 1958, + 1037, + 1958 + ], + "score": 0.88, + "latex": "\\boldsymbol { v } _ { i } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 373, + 1701, + 402, + 1701, + 402, + 1731, + 373, + 1731 + ], + "score": 0.87, + "latex": "\\theta ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 1120, + 1418, + 1146, + 1418, + 1146, + 1443, + 1120, + 1443 + ], + "score": 0.84, + "latex": "v _ { i }" + }, + { + "category_id": 13, + "poly": [ + 797, + 1698, + 1287, + 1698, + 1287, + 1740, + 797, + 1740 + ], + "score": 0.84, + "latex": "\\begin{array} { r } { \\mathbf { g } _ { i } ^ { t } = \\frac { \\partial } { \\partial \\pmb { \\theta } ^ { t } } L _ { i } ( y _ { i } , f ( \\mathbf { x } _ { i } , \\pmb { \\theta } ^ { t } ) ) , \\mathbf { r } ^ { t } = \\frac { \\partial } { \\partial \\pmb { \\theta } ^ { t } } R ( \\pmb { \\theta } ^ { t } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 552, + 1417, + 579, + 1417, + 579, + 1443, + 552, + 1443 + ], + "score": 0.83, + "latex": "v _ { i }" + }, + { + "category_id": 13, + "poly": [ + 700, + 1737, + 712, + 1737, + 712, + 1761, + 700, + 1761 + ], + "score": 0.77, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 976, + 1491, + 996, + 1491, + 996, + 1517, + 976, + 1517 + ], + "score": 0.77, + "latex": "\\pmb \\theta" + }, + { + "category_id": 13, + "poly": [ + 789, + 1207, + 802, + 1207, + 802, + 1233, + 789, + 1233 + ], + "score": 0.77, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 297, + 1527, + 316, + 1527, + 316, + 1552, + 297, + 1552 + ], + "score": 0.76, + "latex": "\\eta" + }, + { + "category_id": 13, + "poly": [ + 713, + 1864, + 727, + 1864, + 727, + 1888, + 713, + 1888 + ], + "score": 0.75, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 1075, + 1057, + 1093, + 1057, + 1093, + 1083, + 1075, + 1083 + ], + "score": 0.74, + "latex": "\\pmb { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 859, + 1864, + 872, + 1864, + 872, + 1888, + 859, + 1888 + ], + "score": 0.72, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 773, + 1706, + 786, + 1706, + 786, + 1732, + 773, + 1732 + ], + "score": 0.64, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1108, + 1699, + 1286, + 1699, + 1286, + 1740, + 1108, + 1740 + ], + "score": 0.45, + "latex": "\\begin{array} { r } { \\mathbf { r } ^ { t } = \\frac { \\partial } { \\partial \\pmb { \\theta } ^ { t } } R ( \\pmb { \\theta } ^ { t } ) } \\end{array}" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1801.0, + 632.0, + 1801.0, + 632.0, + 1837.0, + 295.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 966.0, + 577.0, + 966.0, + 577.0, + 1002.0, + 295.0, + 1002.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": [ + 292.0, + 795.0, + 668.0, + 795.0, + 668.0, + 840.0, + 292.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1204.0, + 372.0, + 1204.0, + 372.0, + 1238.0, + 296.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 1204.0, + 788.0, + 1204.0, + 788.0, + 1238.0, + 543.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 1204.0, + 861.0, + 1204.0, + 861.0, + 1238.0, + 803.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 1204.0, + 1404.0, + 1204.0, + 1404.0, + 1238.0, + 925.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1233.0, + 1285.0, + 1233.0, + 1285.0, + 1271.0, + 293.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1233.0, + 1406.0, + 1233.0, + 1406.0, + 1271.0, + 1401.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1265.0, + 1331.0, + 1265.0, + 1331.0, + 1299.0, + 296.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1857.0, + 712.0, + 1857.0, + 712.0, + 1897.0, + 293.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 1857.0, + 858.0, + 1857.0, + 858.0, + 1897.0, + 728.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1857.0, + 1405.0, + 1857.0, + 1405.0, + 1897.0, + 873.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1889.0, + 1406.0, + 1889.0, + 1406.0, + 1928.0, + 295.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1915.0, + 500.0, + 1915.0, + 500.0, + 1965.0, + 289.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 1915.0, + 1036.0, + 1915.0, + 1036.0, + 1965.0, + 705.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1915.0, + 1080.0, + 1915.0, + 1080.0, + 1965.0, + 1064.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1486.0, + 975.0, + 1486.0, + 975.0, + 1526.0, + 291.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 1486.0, + 1405.0, + 1486.0, + 1405.0, + 1526.0, + 997.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1520.0, + 296.0, + 1520.0, + 296.0, + 1556.0, + 292.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1520.0, + 1405.0, + 1520.0, + 1405.0, + 1556.0, + 317.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1549.0, + 891.0, + 1549.0, + 891.0, + 1585.0, + 295.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 662.0, + 1404.0, + 662.0, + 1404.0, + 696.0, + 294.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 692.0, + 1404.0, + 692.0, + 1404.0, + 725.0, + 294.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 725.0, + 960.0, + 725.0, + 960.0, + 755.0, + 297.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1023.0, + 1405.0, + 1023.0, + 1405.0, + 1062.0, + 293.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1055.0, + 394.0, + 1055.0, + 394.0, + 1092.0, + 294.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 1055.0, + 537.0, + 1055.0, + 537.0, + 1092.0, + 479.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 1055.0, + 1074.0, + 1055.0, + 1074.0, + 1092.0, + 634.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 1055.0, + 1405.0, + 1055.0, + 1405.0, + 1092.0, + 1094.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1083.0, + 454.0, + 1083.0, + 454.0, + 1122.0, + 295.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 230.0, + 1404.0, + 230.0, + 1404.0, + 264.0, + 295.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 260.0, + 1404.0, + 260.0, + 1404.0, + 297.0, + 293.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 291.0, + 561.0, + 291.0, + 561.0, + 327.0, + 293.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1408.0, + 551.0, + 1408.0, + 551.0, + 1447.0, + 295.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 1408.0, + 1119.0, + 1408.0, + 1119.0, + 1447.0, + 580.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 1408.0, + 1404.0, + 1408.0, + 1404.0, + 1447.0, + 1147.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1443.0, + 823.0, + 1443.0, + 823.0, + 1475.0, + 297.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 866.0, + 1404.0, + 866.0, + 1404.0, + 905.0, + 293.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 901.0, + 818.0, + 901.0, + 818.0, + 933.0, + 296.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1694.0, + 372.0, + 1694.0, + 372.0, + 1747.0, + 291.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 1694.0, + 772.0, + 1694.0, + 772.0, + 1747.0, + 403.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 1694.0, + 796.0, + 1694.0, + 796.0, + 1747.0, + 787.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 1694.0, + 1345.0, + 1694.0, + 1345.0, + 1747.0, + 1288.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 1694.0, + 1409.0, + 1694.0, + 1409.0, + 1747.0, + 1375.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1731.0, + 699.0, + 1731.0, + 699.0, + 1767.0, + 296.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 1731.0, + 726.0, + 1731.0, + 726.0, + 1767.0, + 713.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 524.0, + 1403.0, + 524.0, + 1403.0, + 556.0, + 295.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 555.0, + 1403.0, + 555.0, + 1403.0, + 588.0, + 295.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 586.0, + 1405.0, + 586.0, + 1405.0, + 618.0, + 295.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 613.0, + 399.0, + 613.0, + 399.0, + 655.0, + 292.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 445.0, + 1405.0, + 445.0, + 1405.0, + 481.0, + 295.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 476.0, + 1338.0, + 476.0, + 1338.0, + 512.0, + 294.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 337.0, + 1404.0, + 337.0, + 1404.0, + 375.0, + 294.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 370.0, + 1404.0, + 370.0, + 1404.0, + 404.0, + 295.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 397.0, + 913.0, + 397.0, + 913.0, + 438.0, + 294.0, + 438.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1361, + 1404, + 1361, + 1404, + 1515, + 297, + 1515 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1548, + 1403, + 1548, + 1403, + 1734, + 298, + 1734 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1827, + 1404, + 1827, + 1404, + 1951, + 299, + 1951 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 227, + 1403, + 227, + 1403, + 365, + 298, + 365 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 293, + 916, + 1402, + 916, + 1402, + 985, + 293, + 985 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 299, + 998, + 1401, + 998, + 1401, + 1092, + 299, + 1092 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 298, + 1204, + 1405, + 1204, + 1405, + 1266, + 298, + 1266 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 735, + 456, + 962, + 456, + 962, + 532, + 735, + 532 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 299, + 544, + 1403, + 544, + 1403, + 607, + 299, + 607 + ], + "score": 0.953 + }, + { + "category_id": 2, + "poly": [ + 329, + 1975, + 987, + 1975, + 987, + 2034, + 329, + 2034 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 750, + 621, + 947, + 621, + 947, + 695, + 750, + 695 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 296, + 378, + 1403, + 378, + 1403, + 443, + 296, + 443 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 782, + 815, + 918, + 815, + 918, + 884, + 782, + 884 + ], + "score": 0.946 + }, + { + "category_id": 0, + "poly": [ + 299, + 1304, + 609, + 1304, + 609, + 1337, + 299, + 1337 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 295, + 767, + 1383, + 767, + 1383, + 801, + 295, + 801 + ], + "score": 0.916 + }, + { + "category_id": 1, + "poly": [ + 299, + 713, + 715, + 713, + 715, + 755, + 299, + 755 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 300, + 1137, + 1031, + 1137, + 1031, + 1172, + 300, + 1172 + ], + "score": 0.908 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 856, + 75, + 856, + 105, + 298, + 105 + ], + "score": 0.802 + }, + { + "category_id": 0, + "poly": [ + 293, + 1770, + 1321, + 1770, + 1321, + 1802, + 293, + 1802 + ], + "score": 0.781 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.677 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.39 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 856, + 75, + 856, + 105, + 298, + 105 + ], + "score": 0.114 + }, + { + "category_id": 14, + "poly": [ + 781, + 813, + 919, + 813, + 919, + 887, + 781, + 887 + ], + "score": 0.94, + "latex": "\\tau _ { i } = \\sum _ { t } \\alpha _ { i } ^ { t }" + }, + { + "category_id": 14, + "poly": [ + 736, + 453, + 960, + 453, + 960, + 533, + 736, + 533 + ], + "score": 0.94, + "latex": "\\beta _ { i , d } ^ { t } = \\sum _ { j \\in \\mathcal { Q } _ { d } } ( \\phi _ { i , j } ^ { t } ) ^ { 2 } ," + }, + { + "category_id": 14, + "poly": [ + 752, + 620, + 945, + 620, + 945, + 698, + 752, + 698 + ], + "score": 0.93, + "latex": "\\alpha _ { i } ^ { t } = \\sum _ { j } ( \\phi _ { i , j } ^ { t } ) ^ { 2 } ," + }, + { + "category_id": 13, + "poly": [ + 522, + 713, + 707, + 713, + 707, + 757, + 522, + 757 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\alpha _ { i } ^ { t } = \\sum _ { d = 1 } ^ { D } \\beta _ { i , d } ^ { t } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1030, + 264, + 1079, + 264, + 1079, + 302, + 1030, + 302 + ], + "score": 0.92, + "latex": "\\boldsymbol { \\phi } _ { i , j } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 765, + 918, + 812, + 918, + 812, + 956, + 765, + 956 + ], + "score": 0.92, + "latex": "\\beta _ { i , d } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 866, + 1454, + 956, + 1454, + 956, + 1483, + 866, + 1483 + ], + "score": 0.9, + "latex": "3 2 \\times 3 2" + }, + { + "category_id": 13, + "poly": [ + 386, + 228, + 420, + 228, + 420, + 264, + 386, + 264 + ], + "score": 0.9, + "latex": "\\boldsymbol { \\phi } _ { i } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 663, + 298, + 696, + 298, + 696, + 335, + 663, + 335 + ], + "score": 0.9, + "latex": "\\boldsymbol { \\phi } _ { i } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 1222, + 1394, + 1323, + 1394, + 1323, + 1422, + 1222, + 1422 + ], + "score": 0.89, + "latex": "2 8 \\times 2 8" + }, + { + "category_id": 13, + "poly": [ + 373, + 547, + 411, + 547, + 411, + 576, + 373, + 576 + ], + "score": 0.89, + "latex": "\\mathcal { Q } _ { d }" + }, + { + "category_id": 13, + "poly": [ + 550, + 1919, + 580, + 1919, + 580, + 1953, + 550, + 1953 + ], + "score": 0.89, + "latex": "\\alpha _ { i } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 1041, + 228, + 1074, + 228, + 1074, + 263, + 1041, + 263 + ], + "score": 0.87, + "latex": "\\boldsymbol { \\phi } _ { i } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 626, + 1673, + 705, + 1673, + 705, + 1701, + 626, + 1701 + ], + "score": 0.8, + "latex": "1 e - 5" + }, + { + "category_id": 13, + "poly": [ + 1038, + 547, + 1056, + 547, + 1056, + 573, + 1038, + 573 + ], + "score": 0.78, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 613, + 922, + 626, + 922, + 626, + 946, + 613, + 946 + ], + "score": 0.74, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 335, + 306, + 350, + 306, + 350, + 335, + 335, + 335 + ], + "score": 0.73, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 1016, + 233, + 1029, + 233, + 1029, + 258, + 1016, + 258 + ], + "score": 0.61, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1168, + 412, + 1207, + 412, + 1207, + 438, + 1168, + 438 + ], + "score": 0.27, + "latex": "d \\mathrm { t h }" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1970.0, + 856.0, + 1970.0, + 856.0, + 2007.0, + 330.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1999.0, + 990.0, + 1999.0, + 990.0, + 2037.0, + 329.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1303.0, + 612.0, + 1303.0, + 612.0, + 1339.0, + 294.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1133.0, + 1035.0, + 1133.0, + 1035.0, + 1178.0, + 291.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1771.0, + 1322.0, + 1771.0, + 1322.0, + 1802.0, + 295.0, + 1802.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": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1360.0, + 1405.0, + 1360.0, + 1405.0, + 1397.0, + 294.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1389.0, + 1221.0, + 1389.0, + 1221.0, + 1429.0, + 291.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 1389.0, + 1406.0, + 1389.0, + 1406.0, + 1429.0, + 1324.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1422.0, + 1405.0, + 1422.0, + 1405.0, + 1459.0, + 294.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1449.0, + 865.0, + 1449.0, + 865.0, + 1490.0, + 292.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 1449.0, + 1405.0, + 1449.0, + 1405.0, + 1490.0, + 957.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1480.0, + 1341.0, + 1480.0, + 1341.0, + 1521.0, + 294.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1548.0, + 1403.0, + 1548.0, + 1403.0, + 1580.0, + 296.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1578.0, + 1404.0, + 1578.0, + 1404.0, + 1613.0, + 294.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1612.0, + 1403.0, + 1612.0, + 1403.0, + 1644.0, + 294.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1638.0, + 1407.0, + 1638.0, + 1407.0, + 1678.0, + 293.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1670.0, + 625.0, + 1670.0, + 625.0, + 1706.0, + 292.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 1670.0, + 1406.0, + 1670.0, + 1406.0, + 1706.0, + 706.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1704.0, + 1404.0, + 1704.0, + 1404.0, + 1735.0, + 296.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1825.0, + 1404.0, + 1825.0, + 1404.0, + 1862.0, + 293.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1857.0, + 1404.0, + 1857.0, + 1404.0, + 1891.0, + 295.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1890.0, + 1404.0, + 1890.0, + 1404.0, + 1923.0, + 295.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1919.0, + 549.0, + 1919.0, + 549.0, + 1955.0, + 294.0, + 1955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 1919.0, + 1405.0, + 1919.0, + 1405.0, + 1955.0, + 581.0, + 1955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 228.0, + 385.0, + 228.0, + 385.0, + 266.0, + 296.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 228.0, + 1015.0, + 228.0, + 1015.0, + 266.0, + 421.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 228.0, + 1040.0, + 228.0, + 1040.0, + 266.0, + 1030.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 228.0, + 1403.0, + 228.0, + 1403.0, + 266.0, + 1075.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 261.0, + 1029.0, + 261.0, + 1029.0, + 303.0, + 292.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 261.0, + 1404.0, + 261.0, + 1404.0, + 303.0, + 1080.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 298.0, + 334.0, + 298.0, + 334.0, + 339.0, + 292.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 298.0, + 662.0, + 298.0, + 662.0, + 339.0, + 351.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 298.0, + 1407.0, + 298.0, + 1407.0, + 339.0, + 697.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 332.0, + 401.0, + 332.0, + 401.0, + 369.0, + 293.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 915.0, + 612.0, + 915.0, + 612.0, + 956.0, + 293.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 915.0, + 764.0, + 915.0, + 764.0, + 956.0, + 627.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 915.0, + 1407.0, + 915.0, + 1407.0, + 956.0, + 813.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 952.0, + 859.0, + 952.0, + 859.0, + 985.0, + 296.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 998.0, + 1403.0, + 998.0, + 1403.0, + 1034.0, + 295.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1029.0, + 1403.0, + 1029.0, + 1403.0, + 1064.0, + 294.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1061.0, + 1388.0, + 1061.0, + 1388.0, + 1091.0, + 297.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1202.0, + 1406.0, + 1202.0, + 1406.0, + 1243.0, + 295.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1236.0, + 936.0, + 1236.0, + 936.0, + 1269.0, + 294.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 540.0, + 372.0, + 540.0, + 372.0, + 583.0, + 294.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 540.0, + 1037.0, + 540.0, + 1037.0, + 583.0, + 412.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 540.0, + 1404.0, + 540.0, + 1404.0, + 583.0, + 1057.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 577.0, + 717.0, + 577.0, + 717.0, + 609.0, + 297.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 377.0, + 1406.0, + 377.0, + 1406.0, + 416.0, + 295.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 409.0, + 1167.0, + 409.0, + 1167.0, + 445.0, + 293.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 409.0, + 1340.0, + 409.0, + 1340.0, + 445.0, + 1208.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 766.0, + 1385.0, + 766.0, + 1385.0, + 805.0, + 296.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 703.0, + 521.0, + 703.0, + 521.0, + 766.0, + 290.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 703.0, + 722.0, + 703.0, + 722.0, + 766.0, + 708.0, + 766.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1176, + 1404, + 1176, + 1404, + 1488, + 298, + 1488 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1503, + 1404, + 1503, + 1404, + 1718, + 298, + 1718 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1849, + 1404, + 1849, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.98 + }, + { + "category_id": 3, + "poly": [ + 467, + 416, + 1231, + 416, + 1231, + 789, + 467, + 789 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1404, + 228, + 1404, + 353, + 298, + 353 + ], + "score": 0.96 + }, + { + "category_id": 4, + "poly": [ + 296, + 849, + 1404, + 849, + 1404, + 1003, + 296, + 1003 + ], + "score": 0.957 + }, + { + "category_id": 0, + "poly": [ + 304, + 1110, + 868, + 1110, + 868, + 1140, + 304, + 1140 + ], + "score": 0.871 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 856, + 75, + 856, + 104, + 298, + 104 + ], + "score": 0.87 + }, + { + "category_id": 0, + "poly": [ + 299, + 1784, + 1030, + 1784, + 1030, + 1813, + 299, + 1813 + ], + "score": 0.78 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.753 + }, + { + "category_id": 1, + "poly": [ + 299, + 1784, + 1030, + 1784, + 1030, + 1813, + 299, + 1813 + ], + "score": 0.115 + }, + { + "category_id": 13, + "poly": [ + 627, + 1206, + 803, + 1206, + 803, + 1242, + 627, + 1242 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { A ^ { t } = \\sum _ { i = 1 } ^ { n } \\dot { \\alpha _ { i } ^ { t } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 325, + 1238, + 521, + 1238, + 521, + 1277, + 325, + 1277 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { B _ { d } ^ { t } = \\sum _ { i = 1 } ^ { n } \\beta _ { i , d } ^ { t } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 392, + 1565, + 446, + 1565, + 446, + 1595, + 392, + 1595 + ], + "score": 0.87, + "latex": "10 \\%" + }, + { + "category_id": 13, + "poly": [ + 1084, + 1565, + 1139, + 1565, + 1139, + 1594, + 1084, + 1594 + ], + "score": 0.86, + "latex": "80 \\%" + }, + { + "category_id": 13, + "poly": [ + 1252, + 1596, + 1306, + 1596, + 1306, + 1625, + 1252, + 1625 + ], + "score": 0.86, + "latex": "10 \\%" + }, + { + "category_id": 13, + "poly": [ + 627, + 1565, + 682, + 1565, + 682, + 1594, + 627, + 1594 + ], + "score": 0.84, + "latex": "20 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1657, + 1128, + 1657, + 1128, + 1686, + 1066, + 1686 + ], + "score": 0.83, + "latex": "20 \\%" + }, + { + "category_id": 13, + "poly": [ + 503, + 1565, + 557, + 1565, + 557, + 1595, + 503, + 1595 + ], + "score": 0.74, + "latex": "10 \\%" + }, + { + "category_id": 13, + "poly": [ + 1383, + 1209, + 1402, + 1209, + 1402, + 1235, + 1383, + 1235 + ], + "score": 0.72, + "latex": "d" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 429.0, + 544.0, + 429.0, + 544.0, + 464.0, + 488.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 418.0, + 722.0, + 418.0, + 722.0, + 449.0, + 648.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 430.0, + 927.0, + 430.0, + 927.0, + 463.0, + 874.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 417.0, + 1122.0, + 417.0, + 1122.0, + 450.0, + 1018.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 466.0, + 544.0, + 466.0, + 544.0, + 500.0, + 488.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 472.0, + 927.0, + 472.0, + 927.0, + 505.0, + 874.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 497.0, + 543.0, + 497.0, + 543.0, + 603.0, + 466.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 499.0, + 927.0, + 499.0, + 927.0, + 603.0, + 852.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 540.0, + 541.0, + 540.0, + 541.0, + 572.0, + 489.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 556.0, + 928.0, + 556.0, + 928.0, + 588.0, + 874.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 577.0, + 542.0, + 577.0, + 542.0, + 608.0, + 488.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 853.0, + 588.0, + 886.0, + 588.0, + 886.0, + 694.0, + 853.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 589.0, + 502.0, + 589.0, + 502.0, + 695.0, + 466.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 596.0, + 932.0, + 596.0, + 932.0, + 631.0, + 872.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 613.0, + 542.0, + 613.0, + 542.0, + 645.0, + 488.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 649.0, + 543.0, + 649.0, + 543.0, + 683.0, + 487.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 652.0, + 749.0, + 652.0, + 749.0, + 684.0, + 666.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 640.0, + 931.0, + 640.0, + 931.0, + 671.0, + 874.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 652.0, + 1133.0, + 652.0, + 1133.0, + 684.0, + 1051.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 686.0, + 542.0, + 686.0, + 542.0, + 719.0, + 489.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 674.0, + 751.0, + 674.0, + 751.0, + 736.0, + 665.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 680.0, + 932.0, + 680.0, + 932.0, + 715.0, + 873.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 675.0, + 1135.0, + 675.0, + 1135.0, + 734.0, + 1051.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 721.0, + 544.0, + 721.0, + 544.0, + 755.0, + 488.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 721.0, + 929.0, + 721.0, + 929.0, + 755.0, + 873.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 741.0, + 549.0, + 741.0, + 549.0, + 764.0, + 529.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 738.0, + 616.0, + 738.0, + 616.0, + 767.0, + 579.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 738.0, + 676.0, + 738.0, + 676.0, + 768.0, + 637.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 738.0, + 734.0, + 738.0, + 734.0, + 768.0, + 695.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 738.0, + 791.0, + 738.0, + 791.0, + 767.0, + 754.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 739.0, + 847.0, + 739.0, + 847.0, + 766.0, + 813.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 741.0, + 934.0, + 741.0, + 934.0, + 763.0, + 915.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 738.0, + 1001.0, + 738.0, + 1001.0, + 767.0, + 964.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 738.0, + 1060.0, + 738.0, + 1060.0, + 768.0, + 1022.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 738.0, + 1119.0, + 738.0, + 1119.0, + 768.0, + 1080.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 738.0, + 1176.0, + 738.0, + 1176.0, + 767.0, + 1139.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1198.0, + 739.0, + 1232.0, + 739.0, + 1232.0, + 766.0, + 1198.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 760.0, + 724.0, + 760.0, + 724.0, + 793.0, + 647.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 760.0, + 1109.0, + 760.0, + 1109.0, + 793.0, + 1032.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 848.0, + 1404.0, + 848.0, + 1404.0, + 885.0, + 294.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 880.0, + 1404.0, + 880.0, + 1404.0, + 915.0, + 293.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 913.0, + 1404.0, + 913.0, + 1404.0, + 946.0, + 295.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 939.0, + 1404.0, + 939.0, + 1404.0, + 978.0, + 293.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 974.0, + 771.0, + 974.0, + 771.0, + 1007.0, + 295.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1109.0, + 875.0, + 1109.0, + 875.0, + 1144.0, + 296.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1781.0, + 1032.0, + 1781.0, + 1032.0, + 1817.0, + 295.0, + 1817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1175.0, + 1406.0, + 1175.0, + 1406.0, + 1215.0, + 293.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1192.0, + 626.0, + 1192.0, + 626.0, + 1256.0, + 286.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1192.0, + 1382.0, + 1192.0, + 1382.0, + 1256.0, + 804.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1192.0, + 1416.0, + 1192.0, + 1416.0, + 1256.0, + 1403.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1229.0, + 324.0, + 1229.0, + 324.0, + 1282.0, + 293.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 1229.0, + 1414.0, + 1229.0, + 1414.0, + 1282.0, + 522.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1274.0, + 1404.0, + 1274.0, + 1404.0, + 1310.0, + 294.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1302.0, + 1405.0, + 1302.0, + 1405.0, + 1342.0, + 293.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1335.0, + 1405.0, + 1335.0, + 1405.0, + 1371.0, + 294.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1364.0, + 1405.0, + 1364.0, + 1405.0, + 1399.0, + 293.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1396.0, + 1404.0, + 1396.0, + 1404.0, + 1429.0, + 296.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1425.0, + 1406.0, + 1425.0, + 1406.0, + 1462.0, + 293.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1456.0, + 1266.0, + 1456.0, + 1266.0, + 1493.0, + 293.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1503.0, + 1404.0, + 1503.0, + 1404.0, + 1538.0, + 296.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1535.0, + 1402.0, + 1535.0, + 1402.0, + 1566.0, + 296.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1564.0, + 391.0, + 1564.0, + 391.0, + 1599.0, + 292.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 1564.0, + 502.0, + 1564.0, + 502.0, + 1599.0, + 447.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 1564.0, + 626.0, + 1564.0, + 626.0, + 1599.0, + 558.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 1564.0, + 1083.0, + 1564.0, + 1083.0, + 1599.0, + 683.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 1564.0, + 1405.0, + 1564.0, + 1405.0, + 1599.0, + 1140.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1596.0, + 1251.0, + 1596.0, + 1251.0, + 1630.0, + 294.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 1596.0, + 1404.0, + 1596.0, + 1404.0, + 1630.0, + 1307.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1625.0, + 1405.0, + 1625.0, + 1405.0, + 1660.0, + 294.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1657.0, + 1065.0, + 1657.0, + 1065.0, + 1692.0, + 294.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1657.0, + 1404.0, + 1657.0, + 1404.0, + 1692.0, + 1129.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1687.0, + 880.0, + 1687.0, + 880.0, + 1723.0, + 293.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1851.0, + 1404.0, + 1851.0, + 1404.0, + 1883.0, + 296.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1883.0, + 1404.0, + 1883.0, + 1404.0, + 1915.0, + 294.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1911.0, + 1404.0, + 1911.0, + 1404.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1944.0, + 1402.0, + 1944.0, + 1402.0, + 1976.0, + 296.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1971.0, + 1408.0, + 1971.0, + 1408.0, + 2010.0, + 293.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 1268.0, + 2003.0, + 1268.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 227.0, + 1406.0, + 227.0, + 1406.0, + 265.0, + 293.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 260.0, + 1405.0, + 260.0, + 1405.0, + 296.0, + 293.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 289.0, + 1405.0, + 289.0, + 1405.0, + 327.0, + 292.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 316.0, + 415.0, + 316.0, + 415.0, + 361.0, + 291.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1781.0, + 1032.0, + 1781.0, + 1032.0, + 1817.0, + 295.0, + 1817.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1911, + 1404, + 1911, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 306, + 1124, + 1555, + 1124, + 1555, + 1654, + 306, + 1654 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 300, + 226, + 1479, + 226, + 1479, + 914, + 300, + 914 + ], + "score": 0.966 + }, + { + "category_id": 4, + "poly": [ + 297, + 1700, + 1406, + 1700, + 1406, + 1795, + 297, + 1795 + ], + "score": 0.959 + }, + { + "category_id": 4, + "poly": [ + 296, + 963, + 1408, + 963, + 1408, + 1087, + 296, + 1087 + ], + "score": 0.956 + }, + { + "category_id": 0, + "poly": [ + 309, + 1855, + 1025, + 1855, + 1025, + 1884, + 309, + 1884 + ], + "score": 0.799 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 856, + 76, + 856, + 104, + 298, + 104 + ], + "score": 0.769 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.727 + }, + { + "category_id": 3, + "poly": [ + 300, + 226, + 1479, + 226, + 1479, + 913, + 300, + 913 + ], + "score": 0.355 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 854, + 76, + 854, + 104, + 299, + 104 + ], + "score": 0.333 + }, + { + "category_id": 13, + "poly": [ + 1167, + 1702, + 1222, + 1702, + 1222, + 1731, + 1167, + 1731 + ], + "score": 0.84, + "latex": "20 \\%" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1140.0, + 398.0, + 1140.0, + 398.0, + 1343.0, + 321.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1127.0, + 533.0, + 1127.0, + 533.0, + 1156.0, + 416.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 1140.0, + 669.0, + 1140.0, + 669.0, + 1344.0, + 589.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 1125.0, + 805.0, + 1125.0, + 805.0, + 1157.0, + 686.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1138.0, + 940.0, + 1138.0, + 940.0, + 1346.0, + 862.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 1125.0, + 1078.0, + 1125.0, + 1078.0, + 1157.0, + 957.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1139.0, + 1212.0, + 1139.0, + 1212.0, + 1345.0, + 1131.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 1123.0, + 1358.0, + 1123.0, + 1358.0, + 1160.0, + 1221.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 1165.0, + 399.0, + 1165.0, + 399.0, + 1313.0, + 344.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 1178.0, + 669.0, + 1178.0, + 669.0, + 1303.0, + 617.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 1163.0, + 942.0, + 1163.0, + 942.0, + 1319.0, + 887.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1163.0, + 1213.0, + 1163.0, + 1213.0, + 1317.0, + 1158.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1425.0, + 1154.0, + 1550.0, + 1154.0, + 1550.0, + 1246.0, + 1425.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 1319.0, + 571.0, + 1319.0, + 571.0, + 1354.0, + 381.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 1319.0, + 842.0, + 1319.0, + 842.0, + 1354.0, + 652.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 1317.0, + 1115.0, + 1317.0, + 1115.0, + 1355.0, + 925.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 1319.0, + 1386.0, + 1319.0, + 1386.0, + 1355.0, + 1196.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 1350.0, + 519.0, + 1350.0, + 519.0, + 1383.0, + 433.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1350.0, + 789.0, + 1350.0, + 789.0, + 1383.0, + 704.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 1350.0, + 1061.0, + 1350.0, + 1061.0, + 1383.0, + 975.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 1350.0, + 1331.0, + 1350.0, + 1331.0, + 1382.0, + 1247.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 1395.0, + 551.0, + 1395.0, + 551.0, + 1536.0, + 303.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 1395.0, + 823.0, + 1395.0, + 823.0, + 1613.0, + 582.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 1404.0, + 940.0, + 1404.0, + 940.0, + 1614.0, + 859.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 1393.0, + 1095.0, + 1393.0, + 1095.0, + 1426.0, + 942.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1395.0, + 1375.0, + 1395.0, + 1375.0, + 1613.0, + 1131.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1435.0, + 398.0, + 1435.0, + 398.0, + 1459.0, + 329.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 1434.0, + 671.0, + 1434.0, + 671.0, + 1462.0, + 607.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1434.0, + 1213.0, + 1434.0, + 1213.0, + 1462.0, + 1158.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1426.0, + 1426.0, + 1518.0, + 1426.0, + 1518.0, + 1456.0, + 1426.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1459.0, + 397.0, + 1459.0, + 397.0, + 1483.0, + 330.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 1458.0, + 667.0, + 1458.0, + 667.0, + 1483.0, + 607.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 1445.0, + 940.0, + 1445.0, + 940.0, + 1469.0, + 887.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1458.0, + 1213.0, + 1458.0, + 1213.0, + 1486.0, + 1158.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1426.0, + 1453.0, + 1548.0, + 1453.0, + 1548.0, + 1486.0, + 1426.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 1485.0, + 397.0, + 1485.0, + 397.0, + 1509.0, + 338.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 1485.0, + 668.0, + 1485.0, + 668.0, + 1509.0, + 616.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1479.0, + 940.0, + 1479.0, + 940.0, + 1503.0, + 890.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1482.0, + 1214.0, + 1482.0, + 1214.0, + 1510.0, + 1158.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1427.0, + 1479.0, + 1540.0, + 1479.0, + 1540.0, + 1516.0, + 1427.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 1519.0, + 333.0, + 1519.0, + 333.0, + 1609.0, + 301.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 1509.0, + 397.0, + 1509.0, + 397.0, + 1556.0, + 338.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 1509.0, + 671.0, + 1509.0, + 671.0, + 1560.0, + 616.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1513.0, + 940.0, + 1513.0, + 940.0, + 1537.0, + 890.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1507.0, + 1213.0, + 1507.0, + 1213.0, + 1559.0, + 1158.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 1558.0, + 398.0, + 1558.0, + 398.0, + 1582.0, + 338.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 1554.0, + 670.0, + 1554.0, + 670.0, + 1584.0, + 617.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1549.0, + 939.0, + 1549.0, + 939.0, + 1569.0, + 891.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1555.0, + 1213.0, + 1555.0, + 1213.0, + 1583.0, + 1158.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1586.0, + 572.0, + 1586.0, + 572.0, + 1624.0, + 382.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 654.0, + 1589.0, + 843.0, + 1589.0, + 843.0, + 1624.0, + 654.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 1584.0, + 1115.0, + 1584.0, + 1115.0, + 1624.0, + 923.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 1586.0, + 1386.0, + 1586.0, + 1386.0, + 1624.0, + 1196.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 1615.0, + 519.0, + 1615.0, + 519.0, + 1652.0, + 434.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 1617.0, + 789.0, + 1617.0, + 789.0, + 1649.0, + 706.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 1618.0, + 1061.0, + 1618.0, + 1061.0, + 1651.0, + 977.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 1618.0, + 1331.0, + 1618.0, + 1331.0, + 1651.0, + 1247.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 231.0, + 528.0, + 231.0, + 528.0, + 262.0, + 446.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 229.0, + 893.0, + 229.0, + 893.0, + 262.0, + 810.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 231.0, + 1256.0, + 231.0, + 1256.0, + 262.0, + 1175.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 246.0, + 743.0, + 246.0, + 743.0, + 273.0, + 660.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 246.0, + 1108.0, + 246.0, + 1108.0, + 273.0, + 1025.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 285.0, + 334.0, + 285.0, + 334.0, + 407.0, + 303.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 270.0, + 743.0, + 270.0, + 743.0, + 303.0, + 659.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 266.0, + 855.0, + 266.0, + 855.0, + 307.0, + 780.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 270.0, + 1107.0, + 270.0, + 1107.0, + 302.0, + 1023.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 265.0, + 1396.0, + 265.0, + 1396.0, + 305.0, + 1380.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 297.0, + 742.0, + 297.0, + 742.0, + 475.0, + 634.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 299.0, + 854.0, + 299.0, + 854.0, + 330.0, + 778.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 298.0, + 1107.0, + 298.0, + 1107.0, + 474.0, + 999.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 309.0, + 1394.0, + 309.0, + 1394.0, + 326.0, + 1380.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 327.0, + 742.0, + 327.0, + 742.0, + 359.0, + 656.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 320.0, + 876.0, + 320.0, + 876.0, + 346.0, + 780.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 328.0, + 1106.0, + 328.0, + 1106.0, + 358.0, + 1021.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 331.0, + 1394.0, + 331.0, + 1394.0, + 348.0, + 1380.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 357.0, + 742.0, + 357.0, + 742.0, + 384.0, + 659.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 358.0, + 1107.0, + 358.0, + 1107.0, + 385.0, + 1024.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 352.0, + 1394.0, + 352.0, + 1394.0, + 392.0, + 1380.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 388.0, + 338.0, + 388.0, + 338.0, + 491.0, + 302.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 383.0, + 744.0, + 383.0, + 744.0, + 415.0, + 671.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 384.0, + 1108.0, + 384.0, + 1108.0, + 415.0, + 1035.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1382.0, + 398.0, + 1393.0, + 398.0, + 1393.0, + 413.0, + 1382.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 427.0, + 567.0, + 427.0, + 567.0, + 454.0, + 499.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 413.0, + 743.0, + 413.0, + 743.0, + 442.0, + 669.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 413.0, + 1108.0, + 413.0, + 1108.0, + 444.0, + 1035.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 440.0, + 744.0, + 440.0, + 744.0, + 472.0, + 670.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 440.0, + 1108.0, + 440.0, + 1108.0, + 472.0, + 1035.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 440.0, + 1394.0, + 440.0, + 1394.0, + 458.0, + 1380.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 448.0, + 590.0, + 448.0, + 590.0, + 510.0, + 496.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 467.0, + 744.0, + 467.0, + 744.0, + 499.0, + 671.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 467.0, + 1108.0, + 467.0, + 1108.0, + 499.0, + 1035.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1382.0, + 463.0, + 1393.0, + 463.0, + 1393.0, + 476.0, + 1382.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 514.0, + 389.0, + 514.0, + 389.0, + 537.0, + 367.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 510.0, + 571.0, + 510.0, + 571.0, + 541.0, + 401.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 513.0, + 612.0, + 513.0, + 612.0, + 539.0, + 576.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 508.0, + 980.0, + 508.0, + 980.0, + 543.0, + 764.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 499.0, + 1116.0, + 499.0, + 1116.0, + 537.0, + 1085.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 508.0, + 1345.0, + 508.0, + 1345.0, + 543.0, + 1128.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 534.0, + 528.0, + 534.0, + 528.0, + 567.0, + 447.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 536.0, + 891.0, + 536.0, + 891.0, + 565.0, + 809.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 536.0, + 1256.0, + 536.0, + 1256.0, + 567.0, + 1176.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 586.0, + 379.0, + 586.0, + 379.0, + 623.0, + 330.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 577.0, + 544.0, + 577.0, + 544.0, + 608.0, + 431.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 591.0, + 744.0, + 591.0, + 744.0, + 622.0, + 648.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 577.0, + 908.0, + 577.0, + 908.0, + 608.0, + 795.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 591.0, + 1108.0, + 591.0, + 1108.0, + 622.0, + 1012.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 577.0, + 1272.0, + 577.0, + 1272.0, + 608.0, + 1157.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 629.0, + 378.0, + 629.0, + 378.0, + 834.0, + 301.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 618.0, + 744.0, + 618.0, + 744.0, + 648.0, + 645.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 609.0, + 855.0, + 609.0, + 855.0, + 658.0, + 770.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 618.0, + 1108.0, + 618.0, + 1108.0, + 649.0, + 1012.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 607.0, + 1471.0, + 607.0, + 1471.0, + 653.0, + 1373.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 644.0, + 743.0, + 644.0, + 743.0, + 821.0, + 623.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 648.0, + 854.0, + 648.0, + 854.0, + 671.0, + 780.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 644.0, + 1108.0, + 644.0, + 1108.0, + 819.0, + 987.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 649.0, + 1420.0, + 649.0, + 1420.0, + 678.0, + 1373.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 673.0, + 744.0, + 673.0, + 744.0, + 705.0, + 645.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 663.0, + 876.0, + 663.0, + 876.0, + 693.0, + 780.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 673.0, + 1107.0, + 673.0, + 1107.0, + 704.0, + 1009.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 673.0, + 1413.0, + 673.0, + 1413.0, + 699.0, + 1374.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 693.0, + 1424.0, + 693.0, + 1424.0, + 720.0, + 1373.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 704.0, + 743.0, + 704.0, + 743.0, + 731.0, + 648.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 704.0, + 1105.0, + 704.0, + 1105.0, + 731.0, + 1012.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 713.0, + 1419.0, + 713.0, + 1419.0, + 746.0, + 1374.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 730.0, + 744.0, + 730.0, + 744.0, + 762.0, + 658.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 733.0, + 1107.0, + 733.0, + 1107.0, + 760.0, + 1023.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 735.0, + 1421.0, + 735.0, + 1421.0, + 768.0, + 1373.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 760.0, + 742.0, + 760.0, + 742.0, + 788.0, + 659.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 759.0, + 1108.0, + 759.0, + 1108.0, + 790.0, + 1024.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 757.0, + 1431.0, + 757.0, + 1431.0, + 788.0, + 1374.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 777.0, + 590.0, + 777.0, + 590.0, + 856.0, + 497.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 786.0, + 744.0, + 786.0, + 744.0, + 845.0, + 659.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 783.0, + 1108.0, + 783.0, + 1108.0, + 845.0, + 1022.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 777.0, + 1428.0, + 777.0, + 1428.0, + 830.0, + 1374.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 860.0, + 389.0, + 860.0, + 389.0, + 883.0, + 367.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 856.0, + 528.0, + 856.0, + 528.0, + 887.0, + 402.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 859.0, + 572.0, + 859.0, + 572.0, + 885.0, + 534.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 859.0, + 612.0, + 859.0, + 612.0, + 885.0, + 576.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 857.0, + 979.0, + 857.0, + 979.0, + 887.0, + 766.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 846.0, + 1117.0, + 846.0, + 1117.0, + 883.0, + 1085.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 855.0, + 1344.0, + 855.0, + 1344.0, + 889.0, + 1127.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 881.0, + 528.0, + 881.0, + 528.0, + 913.0, + 447.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 881.0, + 891.0, + 881.0, + 891.0, + 913.0, + 811.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 881.0, + 1256.0, + 881.0, + 1256.0, + 913.0, + 1176.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.75, + 239.0, + 383.75, + 239.0, + 383.75, + 278.5, + 323.75, + 278.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.25, + 304.5, + 384.25, + 304.5, + 384.25, + 338.5, + 325.25, + 338.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.75, + 367.0, + 382.75, + 367.0, + 382.75, + 402.0, + 320.75, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.25, + 429.5, + 382.25, + 429.5, + 382.25, + 464.0, + 321.25, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 491.5, + 384.0, + 491.5, + 384.0, + 529.5, + 320.0, + 529.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 508.0, + 739.0, + 508.0, + 739.0, + 527.0, + 732.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 688.5, + 384.0, + 688.5, + 384.0, + 724.5, + 325.0, + 724.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 739.0, + 381.0, + 739.0, + 381.0, + 773.0, + 320.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 789.0, + 382.0, + 789.0, + 382.0, + 823.0, + 322.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 838.0, + 385.0, + 838.0, + 385.0, + 873.5, + 321.0, + 873.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.25, + 854.5, + 739.25, + 854.5, + 739.25, + 874.0, + 734.25, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1701.0, + 1166.0, + 1701.0, + 1166.0, + 1735.0, + 296.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 1701.0, + 1404.0, + 1701.0, + 1404.0, + 1735.0, + 1223.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1730.0, + 1406.0, + 1730.0, + 1406.0, + 1767.0, + 292.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1763.0, + 966.0, + 1763.0, + 966.0, + 1797.0, + 296.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 962.0, + 1406.0, + 962.0, + 1406.0, + 998.0, + 294.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 993.0, + 1404.0, + 993.0, + 1404.0, + 1029.0, + 294.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1025.0, + 1406.0, + 1025.0, + 1406.0, + 1061.0, + 295.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1055.0, + 1324.0, + 1055.0, + 1324.0, + 1088.0, + 294.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 1851.0, + 1032.0, + 1851.0, + 1032.0, + 1888.0, + 301.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 240.0, + 379.0, + 240.0, + 379.0, + 277.0, + 330.0, + 277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 231.0, + 528.0, + 231.0, + 528.0, + 262.0, + 446.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 246.0, + 743.0, + 246.0, + 743.0, + 273.0, + 660.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 231.0, + 893.0, + 231.0, + 893.0, + 263.0, + 810.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 246.0, + 1108.0, + 246.0, + 1108.0, + 273.0, + 1025.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 231.0, + 1256.0, + 231.0, + 1256.0, + 262.0, + 1175.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 282.0, + 337.0, + 282.0, + 337.0, + 490.0, + 302.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 272.0, + 743.0, + 272.0, + 743.0, + 303.0, + 659.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 266.0, + 855.0, + 266.0, + 855.0, + 307.0, + 780.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 270.0, + 1107.0, + 270.0, + 1107.0, + 302.0, + 1023.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 265.0, + 1396.0, + 265.0, + 1396.0, + 303.0, + 1380.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 303.0, + 379.0, + 303.0, + 379.0, + 339.0, + 331.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 299.0, + 742.0, + 299.0, + 742.0, + 474.0, + 634.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 299.0, + 854.0, + 299.0, + 854.0, + 329.0, + 778.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 299.0, + 1107.0, + 299.0, + 1107.0, + 474.0, + 999.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1382.0, + 310.0, + 1393.0, + 310.0, + 1393.0, + 325.0, + 1382.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 328.0, + 742.0, + 328.0, + 742.0, + 357.0, + 657.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 319.0, + 876.0, + 319.0, + 876.0, + 345.0, + 782.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 328.0, + 1107.0, + 328.0, + 1107.0, + 357.0, + 1021.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1382.0, + 332.0, + 1393.0, + 332.0, + 1393.0, + 347.0, + 1382.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 356.0, + 744.0, + 356.0, + 744.0, + 388.0, + 659.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 356.0, + 1108.0, + 356.0, + 1108.0, + 388.0, + 1023.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 354.0, + 1394.0, + 354.0, + 1394.0, + 392.0, + 1380.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 384.0, + 744.0, + 384.0, + 744.0, + 416.0, + 671.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 384.0, + 1107.0, + 384.0, + 1107.0, + 413.0, + 1033.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 396.0, + 1394.0, + 396.0, + 1394.0, + 414.0, + 1380.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 427.0, + 567.0, + 427.0, + 567.0, + 454.0, + 499.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 412.0, + 744.0, + 412.0, + 744.0, + 444.0, + 671.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 412.0, + 1107.0, + 412.0, + 1107.0, + 444.0, + 1035.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 440.0, + 744.0, + 440.0, + 744.0, + 471.0, + 670.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 440.0, + 1108.0, + 440.0, + 1108.0, + 471.0, + 1035.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 440.0, + 1394.0, + 440.0, + 1394.0, + 457.0, + 1380.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 448.0, + 570.0, + 448.0, + 570.0, + 471.0, + 498.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 466.0, + 590.0, + 466.0, + 590.0, + 511.0, + 496.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 467.0, + 744.0, + 467.0, + 744.0, + 500.0, + 671.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 467.0, + 1108.0, + 467.0, + 1108.0, + 500.0, + 1035.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1382.0, + 463.0, + 1393.0, + 463.0, + 1393.0, + 477.0, + 1382.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 513.0, + 389.0, + 513.0, + 389.0, + 538.0, + 367.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 509.0, + 614.0, + 509.0, + 614.0, + 544.0, + 399.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 511.0, + 979.0, + 511.0, + 979.0, + 541.0, + 766.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 500.0, + 1116.0, + 500.0, + 1116.0, + 537.0, + 1085.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 511.0, + 1344.0, + 511.0, + 1344.0, + 541.0, + 1129.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 535.0, + 527.0, + 535.0, + 527.0, + 567.0, + 449.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 535.0, + 891.0, + 535.0, + 891.0, + 567.0, + 811.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 535.0, + 1256.0, + 535.0, + 1256.0, + 567.0, + 1176.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 589.0, + 378.0, + 589.0, + 378.0, + 621.0, + 325.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 578.0, + 543.0, + 578.0, + 543.0, + 609.0, + 431.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 590.0, + 744.0, + 590.0, + 744.0, + 621.0, + 648.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 575.0, + 909.0, + 575.0, + 909.0, + 610.0, + 794.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 590.0, + 1109.0, + 590.0, + 1109.0, + 621.0, + 1012.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 573.0, + 1275.0, + 573.0, + 1275.0, + 612.0, + 1157.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 627.0, + 378.0, + 627.0, + 378.0, + 837.0, + 296.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 616.0, + 743.0, + 616.0, + 743.0, + 647.0, + 646.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 609.0, + 854.0, + 609.0, + 854.0, + 654.0, + 770.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 617.0, + 1108.0, + 617.0, + 1108.0, + 649.0, + 1012.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 608.0, + 1472.0, + 608.0, + 1472.0, + 654.0, + 1374.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 643.0, + 744.0, + 643.0, + 744.0, + 820.0, + 623.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 649.0, + 852.0, + 649.0, + 852.0, + 672.0, + 780.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 643.0, + 1108.0, + 643.0, + 1108.0, + 820.0, + 987.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 649.0, + 1418.0, + 649.0, + 1418.0, + 679.0, + 1373.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 673.0, + 744.0, + 673.0, + 744.0, + 705.0, + 647.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 663.0, + 876.0, + 663.0, + 876.0, + 693.0, + 779.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 675.0, + 1108.0, + 675.0, + 1108.0, + 706.0, + 1011.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1372.0, + 671.0, + 1414.0, + 671.0, + 1414.0, + 699.0, + 1372.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 702.0, + 744.0, + 702.0, + 744.0, + 733.0, + 647.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 702.0, + 1108.0, + 702.0, + 1108.0, + 733.0, + 1012.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 689.0, + 1424.0, + 689.0, + 1424.0, + 722.0, + 1373.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 732.0, + 742.0, + 732.0, + 742.0, + 759.0, + 658.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 731.0, + 1108.0, + 731.0, + 1108.0, + 762.0, + 1023.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 734.0, + 1421.0, + 734.0, + 1421.0, + 768.0, + 1374.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 758.0, + 743.0, + 758.0, + 743.0, + 789.0, + 658.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 758.0, + 1108.0, + 758.0, + 1108.0, + 789.0, + 1024.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 759.0, + 1430.0, + 759.0, + 1430.0, + 787.0, + 1374.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 777.0, + 590.0, + 777.0, + 590.0, + 857.0, + 496.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 784.0, + 745.0, + 784.0, + 745.0, + 845.0, + 658.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 787.0, + 1108.0, + 787.0, + 1108.0, + 845.0, + 1023.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 776.0, + 1428.0, + 776.0, + 1428.0, + 830.0, + 1374.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 859.0, + 389.0, + 859.0, + 389.0, + 884.0, + 367.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 856.0, + 528.0, + 856.0, + 528.0, + 888.0, + 402.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 859.0, + 572.0, + 859.0, + 572.0, + 885.0, + 534.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 859.0, + 612.0, + 859.0, + 612.0, + 885.0, + 576.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 848.0, + 754.0, + 848.0, + 754.0, + 882.0, + 723.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 856.0, + 979.0, + 856.0, + 979.0, + 886.0, + 766.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 845.0, + 1117.0, + 845.0, + 1117.0, + 884.0, + 1085.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 855.0, + 1344.0, + 855.0, + 1344.0, + 889.0, + 1128.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 881.0, + 528.0, + 881.0, + 528.0, + 914.0, + 449.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 812.0, + 881.0, + 891.0, + 881.0, + 891.0, + 912.0, + 812.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 881.0, + 1256.0, + 881.0, + 1256.0, + 914.0, + 1176.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.25, + 368.0, + 381.25, + 368.0, + 381.25, + 402.0, + 321.25, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 431.0, + 382.0, + 431.0, + 382.0, + 463.5, + 322.0, + 463.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.25, + 491.5, + 383.25, + 491.5, + 383.25, + 529.5, + 320.25, + 529.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.75, + 507.5, + 739.75, + 507.5, + 739.75, + 527.5, + 731.75, + 527.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 686.5, + 384.0, + 686.5, + 384.0, + 723.5, + 327.0, + 723.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 713.5, + 1416.0, + 713.5, + 1416.0, + 744.0, + 1373.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 739.5, + 381.0, + 739.5, + 381.0, + 772.5, + 322.0, + 772.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 789.5, + 382.0, + 789.5, + 382.0, + 823.5, + 322.0, + 823.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.25, + 838.0, + 382.25, + 838.0, + 382.25, + 873.5, + 321.25, + 873.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1910.0, + 1406.0, + 1910.0, + 1406.0, + 1945.0, + 293.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1976.0, + 293.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1974.0, + 1405.0, + 1974.0, + 1405.0, + 2007.0, + 292.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2000.0, + 1323.0, + 2000.0, + 1323.0, + 2040.0, + 292.0, + 2040.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1617, + 1403, + 1617, + 1403, + 1802, + 298, + 1802 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1146, + 1404, + 1146, + 1404, + 1331, + 297, + 1331 + ], + "score": 0.977 + }, + { + "category_id": 3, + "poly": [ + 543, + 232, + 1153, + 232, + 1153, + 849, + 543, + 849 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1366, + 1404, + 1366, + 1404, + 1521, + 298, + 1521 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1816, + 1404, + 1816, + 1404, + 1909, + 298, + 1909 + ], + "score": 0.974 + }, + { + "category_id": 4, + "poly": [ + 297, + 903, + 1405, + 903, + 1405, + 1088, + 297, + 1088 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 298, + 1925, + 1401, + 1925, + 1401, + 1988, + 298, + 1988 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 298, + 2001, + 1091, + 2001, + 1091, + 2035, + 298, + 2035 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 298, + 1561, + 861, + 1561, + 861, + 1591, + 298, + 1591 + ], + "score": 0.868 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.791 + }, + { + "category_id": 2, + "poly": [ + 300, + 77, + 854, + 77, + 854, + 103, + 300, + 103 + ], + "score": 0.753 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 856, + 76, + 856, + 104, + 298, + 104 + ], + "score": 0.109 + }, + { + "category_id": 13, + "poly": [ + 944, + 1817, + 1138, + 1817, + 1138, + 1851, + 944, + 1851 + ], + "score": 0.93, + "latex": "\\{ B _ { 1 } , B _ { 2 } , \\ldots , B _ { b } \\}" + }, + { + "category_id": 13, + "poly": [ + 349, + 1848, + 473, + 1848, + 473, + 1881, + 349, + 1881 + ], + "score": 0.92, + "latex": "| B _ { i } | = 1 0 0" + }, + { + "category_id": 13, + "poly": [ + 1219, + 1926, + 1335, + 1926, + 1335, + 1957, + 1219, + 1957 + ], + "score": 0.91, + "latex": "1 , 2 , \\ldots , b" + }, + { + "category_id": 13, + "poly": [ + 677, + 1817, + 780, + 1817, + 780, + 1847, + 677, + 1847 + ], + "score": 0.9, + "latex": "b = 5 0 0" + }, + { + "category_id": 13, + "poly": [ + 302, + 1489, + 552, + 1489, + 552, + 1520, + 302, + 1520 + ], + "score": 0.89, + "latex": "( 3 0 7 5 \\times 5 1 2 \\approx 1 5 7 4 k )" + }, + { + "category_id": 13, + "poly": [ + 898, + 1490, + 1116, + 1490, + 1116, + 1520, + 898, + 1520 + ], + "score": 0.88, + "latex": "7 8 5 \\times 5 1 2 \\approx 4 0 1 k" + }, + { + "category_id": 13, + "poly": [ + 1011, + 1149, + 1041, + 1149, + 1041, + 1177, + 1011, + 1177 + ], + "score": 0.31, + "latex": "\\cdot 5 ^ { , }" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 243.0, + 606.0, + 243.0, + 606.0, + 271.0, + 572.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 233.0, + 748.0, + 233.0, + 748.0, + 260.0, + 687.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 244.0, + 915.0, + 244.0, + 915.0, + 270.0, + 870.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 235.0, + 1058.0, + 235.0, + 1058.0, + 259.0, + 999.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 274.0, + 607.0, + 274.0, + 607.0, + 301.0, + 573.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 268.0, + 916.0, + 268.0, + 916.0, + 299.0, + 869.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 303.0, + 607.0, + 303.0, + 607.0, + 331.0, + 573.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 296.0, + 916.0, + 296.0, + 916.0, + 325.0, + 870.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 325.0, + 915.0, + 325.0, + 915.0, + 350.0, + 871.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 336.0, + 606.0, + 336.0, + 606.0, + 359.0, + 574.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 338.0, + 566.0, + 338.0, + 566.0, + 421.0, + 542.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 351.0, + 916.0, + 351.0, + 916.0, + 378.0, + 879.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 364.0, + 606.0, + 364.0, + 606.0, + 391.0, + 573.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 369.0, + 870.0, + 369.0, + 870.0, + 390.0, + 849.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 380.0, + 914.0, + 380.0, + 914.0, + 403.0, + 880.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 395.0, + 606.0, + 395.0, + 606.0, + 421.0, + 573.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 405.0, + 916.0, + 405.0, + 916.0, + 431.0, + 879.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 424.0, + 606.0, + 424.0, + 606.0, + 453.0, + 562.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 433.0, + 916.0, + 433.0, + 916.0, + 458.0, + 879.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 453.0, + 606.0, + 453.0, + 606.0, + 482.0, + 562.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 460.0, + 916.0, + 460.0, + 916.0, + 482.0, + 895.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 484.0, + 606.0, + 484.0, + 606.0, + 513.0, + 562.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 487.0, + 915.0, + 487.0, + 915.0, + 511.0, + 869.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 499.0, + 615.0, + 499.0, + 615.0, + 520.0, + 595.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 499.0, + 664.0, + 499.0, + 664.0, + 522.0, + 634.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 499.0, + 711.0, + 499.0, + 711.0, + 522.0, + 682.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 499.0, + 756.0, + 499.0, + 756.0, + 521.0, + 724.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 499.0, + 802.0, + 499.0, + 802.0, + 521.0, + 773.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 498.0, + 846.0, + 498.0, + 846.0, + 521.0, + 819.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 501.0, + 927.0, + 501.0, + 927.0, + 517.0, + 909.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 502.0, + 953.0, + 502.0, + 953.0, + 518.0, + 934.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 502.0, + 981.0, + 502.0, + 981.0, + 518.0, + 963.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 501.0, + 1014.0, + 501.0, + 1014.0, + 519.0, + 987.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 498.0, + 1154.0, + 498.0, + 1154.0, + 522.0, + 1015.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 517.0, + 749.0, + 517.0, + 749.0, + 545.0, + 688.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 517.0, + 1047.0, + 517.0, + 1047.0, + 543.0, + 1010.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 542.0, + 760.0, + 542.0, + 760.0, + 568.0, + 677.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 543.0, + 1069.0, + 543.0, + 1069.0, + 566.0, + 988.0, + 566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 553.0, + 608.0, + 553.0, + 608.0, + 579.0, + 573.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 553.0, + 917.0, + 553.0, + 917.0, + 578.0, + 871.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 582.0, + 607.0, + 582.0, + 607.0, + 609.0, + 573.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 585.0, + 917.0, + 585.0, + 917.0, + 614.0, + 870.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 613.0, + 607.0, + 613.0, + 607.0, + 640.0, + 573.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 622.0, + 916.0, + 622.0, + 916.0, + 647.0, + 871.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 648.0, + 564.0, + 648.0, + 564.0, + 729.0, + 543.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 642.0, + 607.0, + 642.0, + 607.0, + 669.0, + 573.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 656.0, + 915.0, + 656.0, + 915.0, + 681.0, + 870.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 673.0, + 607.0, + 673.0, + 607.0, + 699.0, + 573.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 678.0, + 915.0, + 678.0, + 915.0, + 717.0, + 849.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 688.0, + 1071.0, + 688.0, + 1071.0, + 696.0, + 1060.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 703.0, + 606.0, + 703.0, + 606.0, + 731.0, + 573.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 734.0, + 604.0, + 734.0, + 604.0, + 758.0, + 574.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 725.0, + 916.0, + 725.0, + 916.0, + 750.0, + 879.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 764.0, + 606.0, + 764.0, + 606.0, + 791.0, + 573.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 762.0, + 916.0, + 762.0, + 916.0, + 784.0, + 896.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 792.0, + 606.0, + 792.0, + 606.0, + 821.0, + 562.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 793.0, + 916.0, + 793.0, + 916.0, + 819.0, + 869.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 808.0, + 615.0, + 808.0, + 615.0, + 830.0, + 595.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 807.0, + 663.0, + 807.0, + 663.0, + 831.0, + 634.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 807.0, + 711.0, + 807.0, + 711.0, + 831.0, + 683.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 807.0, + 756.0, + 807.0, + 756.0, + 831.0, + 727.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 809.0, + 801.0, + 809.0, + 801.0, + 829.0, + 774.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 806.0, + 846.0, + 806.0, + 846.0, + 830.0, + 819.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 807.0, + 930.0, + 807.0, + 930.0, + 830.0, + 901.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 810.0, + 957.0, + 810.0, + 957.0, + 828.0, + 938.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 808.0, + 990.0, + 808.0, + 990.0, + 829.0, + 968.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 810.0, + 1021.0, + 810.0, + 1021.0, + 828.0, + 1004.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 809.0, + 1054.0, + 809.0, + 1054.0, + 828.0, + 1037.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 809.0, + 1089.0, + 809.0, + 1089.0, + 829.0, + 1070.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 808.0, + 1155.0, + 808.0, + 1155.0, + 829.0, + 1093.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 826.0, + 748.0, + 826.0, + 748.0, + 853.0, + 688.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 826.0, + 1046.0, + 826.0, + 1046.0, + 851.0, + 1009.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 905.0, + 1402.0, + 905.0, + 1402.0, + 937.0, + 296.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 936.0, + 1403.0, + 936.0, + 1403.0, + 970.0, + 292.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 965.0, + 1405.0, + 965.0, + 1405.0, + 1001.0, + 294.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 995.0, + 1403.0, + 995.0, + 1403.0, + 1031.0, + 294.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1026.0, + 1405.0, + 1026.0, + 1405.0, + 1062.0, + 294.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1057.0, + 617.0, + 1057.0, + 617.0, + 1092.0, + 295.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1560.0, + 865.0, + 1560.0, + 865.0, + 1594.0, + 294.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 70.0, + 859.0, + 70.0, + 859.0, + 109.0, + 295.0, + 109.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": [ + 297.0, + 1619.0, + 1404.0, + 1619.0, + 1404.0, + 1651.0, + 297.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1647.0, + 1405.0, + 1647.0, + 1405.0, + 1683.0, + 294.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1679.0, + 1405.0, + 1679.0, + 1405.0, + 1715.0, + 294.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1707.0, + 1405.0, + 1707.0, + 1405.0, + 1745.0, + 292.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1737.0, + 1405.0, + 1737.0, + 1405.0, + 1774.0, + 292.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1771.0, + 1176.0, + 1771.0, + 1176.0, + 1806.0, + 294.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1144.0, + 1010.0, + 1144.0, + 1010.0, + 1183.0, + 292.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 1144.0, + 1405.0, + 1144.0, + 1405.0, + 1183.0, + 1042.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1179.0, + 1405.0, + 1179.0, + 1405.0, + 1214.0, + 295.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1208.0, + 1406.0, + 1208.0, + 1406.0, + 1244.0, + 294.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1238.0, + 1404.0, + 1238.0, + 1404.0, + 1274.0, + 294.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1268.0, + 1405.0, + 1268.0, + 1405.0, + 1305.0, + 292.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1298.0, + 1270.0, + 1298.0, + 1270.0, + 1337.0, + 294.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1368.0, + 1405.0, + 1368.0, + 1405.0, + 1401.0, + 297.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1396.0, + 1402.0, + 1396.0, + 1402.0, + 1433.0, + 294.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1428.0, + 1404.0, + 1428.0, + 1404.0, + 1465.0, + 294.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1455.0, + 1405.0, + 1455.0, + 1405.0, + 1495.0, + 292.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1487.0, + 301.0, + 1487.0, + 301.0, + 1525.0, + 293.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 1487.0, + 897.0, + 1487.0, + 897.0, + 1525.0, + 553.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 1487.0, + 1131.0, + 1487.0, + 1131.0, + 1525.0, + 1117.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1814.0, + 676.0, + 1814.0, + 676.0, + 1852.0, + 294.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 1814.0, + 943.0, + 1814.0, + 943.0, + 1852.0, + 781.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 1814.0, + 1405.0, + 1814.0, + 1405.0, + 1852.0, + 1139.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1846.0, + 348.0, + 1846.0, + 348.0, + 1882.0, + 295.0, + 1882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 1846.0, + 1405.0, + 1846.0, + 1405.0, + 1882.0, + 474.0, + 1882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1879.0, + 627.0, + 1879.0, + 627.0, + 1910.0, + 297.0, + 1910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1922.0, + 1218.0, + 1922.0, + 1218.0, + 1962.0, + 293.0, + 1962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 1922.0, + 1406.0, + 1922.0, + 1406.0, + 1962.0, + 1336.0, + 1962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1948.0, + 378.0, + 1948.0, + 378.0, + 1997.0, + 291.0, + 1997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1997.0, + 1093.0, + 1997.0, + 1093.0, + 2039.0, + 295.0, + 2039.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 315, + 239, + 1389, + 239, + 1389, + 1037, + 315, + 1037 + ], + "score": 0.978 + }, + { + "category_id": 4, + "poly": [ + 296, + 1103, + 1405, + 1103, + 1405, + 1289, + 296, + 1289 + ], + "score": 0.969 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 854, + 76, + 854, + 104, + 300, + 104 + ], + "score": 0.826 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 858, + 2088, + 858, + 2111, + 842, + 2111 + ], + "score": 0.654 + }, + { + "category_id": 1, + "poly": [ + 356, + 1347, + 1406, + 1347, + 1406, + 2036, + 356, + 2036 + ], + "score": 0.6 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 859, + 2087, + 859, + 2111, + 841, + 2111 + ], + "score": 0.248 + }, + { + "category_id": 13, + "poly": [ + 1054, + 1608, + 1247, + 1608, + 1247, + 1640, + 1054, + 1640 + ], + "score": 0.93, + "latex": "B _ { b } , B _ { b - 1 } , \\ldots , B _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 932, + 1973, + 1125, + 1973, + 1125, + 2005, + 932, + 2005 + ], + "score": 0.92, + "latex": "B _ { b } , B _ { b - 1 } , \\ldots , B _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 467, + 1750, + 687, + 1750, + 687, + 1783, + 467, + 1783 + ], + "score": 0.9, + "latex": "j = ( i { \\bmod { b } } ) + 1" + }, + { + "category_id": 13, + "poly": [ + 1073, + 1497, + 1107, + 1497, + 1107, + 1527, + 1073, + 1527 + ], + "score": 0.88, + "latex": "B _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 737, + 1497, + 770, + 1497, + 770, + 1527, + 737, + 1527 + ], + "score": 0.87, + "latex": "\\boldsymbol { B } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1293, + 1356, + 1309, + 1356, + 1309, + 1382, + 1293, + 1382 + ], + "score": 0.73, + "latex": "b" + }, + { + "category_id": 13, + "poly": [ + 856, + 1722, + 870, + 1722, + 870, + 1747, + 856, + 1747 + ], + "score": 0.72, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 873, + 1355, + 920, + 1355, + 920, + 1384, + 873, + 1384 + ], + "score": 0.25, + "latex": "5 0 \\mathrm { k }" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 243.0, + 552.0, + 243.0, + 552.0, + 278.0, + 381.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 243.0, + 1333.0, + 243.0, + 1333.0, + 274.0, + 1148.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 257.0, + 709.0, + 257.0, + 709.0, + 317.0, + 664.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 283.0, + 978.0, + 283.0, + 978.0, + 299.0, + 961.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 257.0, + 1117.0, + 257.0, + 1117.0, + 299.0, + 1049.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 278.0, + 1141.0, + 278.0, + 1141.0, + 299.0, + 1121.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 351.0, + 473.0, + 351.0, + 473.0, + 367.0, + 457.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 300.0, + 708.0, + 300.0, + 708.0, + 435.0, + 633.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 298.0, + 990.0, + 298.0, + 990.0, + 359.0, + 955.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 290.0, + 1093.0, + 290.0, + 1093.0, + 427.0, + 1027.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 307.0, + 1141.0, + 307.0, + 1141.0, + 374.0, + 1121.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 348.0, + 1164.0, + 348.0, + 1164.0, + 398.0, + 1150.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 379.0, + 1192.0, + 379.0, + 1192.0, + 421.0, + 1175.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 404.0, + 1216.0, + 404.0, + 1216.0, + 421.0, + 1202.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 428.0, + 705.0, + 428.0, + 705.0, + 456.0, + 666.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 428.0, + 1093.0, + 428.0, + 1093.0, + 460.0, + 1049.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 434.0, + 1190.0, + 434.0, + 1190.0, + 444.0, + 1177.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 449.0, + 714.0, + 449.0, + 714.0, + 466.0, + 699.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 445.0, + 781.0, + 445.0, + 781.0, + 472.0, + 747.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 444.0, + 841.0, + 444.0, + 841.0, + 472.0, + 802.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 445.0, + 898.0, + 445.0, + 898.0, + 472.0, + 859.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 445.0, + 956.0, + 445.0, + 956.0, + 472.0, + 919.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 445.0, + 1013.0, + 445.0, + 1013.0, + 472.0, + 977.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 449.0, + 1114.0, + 449.0, + 1114.0, + 466.0, + 1098.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 443.0, + 1385.0, + 443.0, + 1385.0, + 473.0, + 1116.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 468.0, + 894.0, + 468.0, + 894.0, + 500.0, + 809.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 468.0, + 1278.0, + 468.0, + 1278.0, + 500.0, + 1196.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 509.0, + 571.0, + 509.0, + 571.0, + 720.0, + 318.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 519.0, + 712.0, + 519.0, + 712.0, + 731.0, + 661.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 529.0, + 1089.0, + 529.0, + 1089.0, + 553.0, + 1071.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1125.0, + 546.0, + 1138.0, + 546.0, + 1138.0, + 562.0, + 1125.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 509.0, + 1318.0, + 509.0, + 1318.0, + 601.0, + 1147.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 570.0, + 677.0, + 570.0, + 677.0, + 686.0, + 641.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 553.0, + 979.0, + 553.0, + 979.0, + 589.0, + 958.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 565.0, + 1089.0, + 565.0, + 1089.0, + 586.0, + 1071.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 555.0, + 1193.0, + 555.0, + 1193.0, + 579.0, + 1174.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 577.0, + 1215.0, + 577.0, + 1215.0, + 587.0, + 1204.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 586.0, + 582.0, + 586.0, + 582.0, + 598.0, + 557.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 583.0, + 982.0, + 583.0, + 982.0, + 609.0, + 957.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 582.0, + 1192.0, + 582.0, + 1192.0, + 598.0, + 1176.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 590.0, + 1215.0, + 590.0, + 1215.0, + 600.0, + 1204.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 605.0, + 989.0, + 605.0, + 989.0, + 627.0, + 956.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 600.0, + 1087.0, + 600.0, + 1087.0, + 618.0, + 1073.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 598.0, + 1192.0, + 598.0, + 1192.0, + 623.0, + 1175.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 603.0, + 1219.0, + 603.0, + 1219.0, + 633.0, + 1201.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 605.0, + 1242.0, + 605.0, + 1242.0, + 629.0, + 1230.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 626.0, + 1243.0, + 626.0, + 1243.0, + 645.0, + 1229.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 637.0, + 599.0, + 637.0, + 599.0, + 710.0, + 536.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 637.0, + 1084.0, + 637.0, + 1084.0, + 651.0, + 1075.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 642.0, + 1241.0, + 642.0, + 1241.0, + 658.0, + 1231.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 636.0, + 1273.0, + 636.0, + 1273.0, + 678.0, + 1252.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 673.0, + 1084.0, + 673.0, + 1084.0, + 686.0, + 1075.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 664.0, + 1193.0, + 664.0, + 1193.0, + 688.0, + 1175.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 658.0, + 1224.0, + 658.0, + 1224.0, + 703.0, + 1197.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 659.0, + 1245.0, + 659.0, + 1245.0, + 704.0, + 1225.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 672.0, + 1274.0, + 672.0, + 1274.0, + 705.0, + 1252.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 658.0, + 1297.0, + 658.0, + 1297.0, + 682.0, + 1279.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 675.0, + 1320.0, + 675.0, + 1320.0, + 686.0, + 1309.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 690.0, + 1163.0, + 690.0, + 1163.0, + 701.0, + 1153.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 690.0, + 1191.0, + 690.0, + 1191.0, + 705.0, + 1176.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 688.0, + 1326.0, + 688.0, + 1326.0, + 711.0, + 1307.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 687.0, + 1380.0, + 687.0, + 1380.0, + 716.0, + 1330.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 703.0, + 1088.0, + 703.0, + 1088.0, + 721.0, + 1073.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 704.0, + 1137.0, + 704.0, + 1137.0, + 715.0, + 1126.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 703.0, + 1163.0, + 703.0, + 1163.0, + 714.0, + 1153.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 717.0, + 713.0, + 717.0, + 713.0, + 734.0, + 699.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 714.0, + 782.0, + 714.0, + 782.0, + 740.0, + 747.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 714.0, + 841.0, + 714.0, + 841.0, + 740.0, + 804.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 714.0, + 898.0, + 714.0, + 898.0, + 740.0, + 859.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 714.0, + 956.0, + 714.0, + 956.0, + 740.0, + 919.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 714.0, + 1012.0, + 714.0, + 1012.0, + 740.0, + 977.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 716.0, + 1115.0, + 716.0, + 1115.0, + 737.0, + 1097.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 711.0, + 1386.0, + 711.0, + 1386.0, + 742.0, + 1121.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 737.0, + 892.0, + 737.0, + 892.0, + 769.0, + 810.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 735.0, + 1278.0, + 735.0, + 1278.0, + 771.0, + 1195.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 279.0, + 771.0, + 655.0, + 771.0, + 655.0, + 1030.0, + 279.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 787.0, + 716.0, + 787.0, + 716.0, + 1005.0, + 661.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 806.0, + 1084.0, + 806.0, + 1084.0, + 816.0, + 1075.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 780.0, + 1319.0, + 780.0, + 1319.0, + 815.0, + 1161.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 841.0, + 677.0, + 841.0, + 677.0, + 958.0, + 645.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 843.0, + 952.0, + 843.0, + 952.0, + 852.0, + 940.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 820.0, + 983.0, + 820.0, + 983.0, + 878.0, + 954.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 823.0, + 1089.0, + 823.0, + 1089.0, + 873.0, + 1071.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 844.0, + 1241.0, + 844.0, + 1241.0, + 856.0, + 1231.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 839.0, + 1273.0, + 839.0, + 1273.0, + 859.0, + 1253.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 844.0, + 1296.0, + 844.0, + 1296.0, + 861.0, + 1280.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 850.0, + 1323.0, + 850.0, + 1323.0, + 866.0, + 1308.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 860.0, + 1346.0, + 860.0, + 1346.0, + 869.0, + 1336.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 871.0, + 989.0, + 871.0, + 989.0, + 894.0, + 955.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 872.0, + 1089.0, + 872.0, + 1089.0, + 897.0, + 1071.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 888.0, + 1090.0, + 888.0, + 1090.0, + 993.0, + 1067.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 898.0, + 1066.0, + 898.0, + 1066.0, + 913.0, + 1050.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 955.0, + 1163.0, + 955.0, + 1163.0, + 966.0, + 1153.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 986.0, + 713.0, + 986.0, + 713.0, + 1003.0, + 699.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 982.0, + 782.0, + 982.0, + 782.0, + 1010.0, + 747.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 982.0, + 841.0, + 982.0, + 841.0, + 1010.0, + 803.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 982.0, + 898.0, + 982.0, + 898.0, + 1010.0, + 861.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 982.0, + 956.0, + 982.0, + 956.0, + 1010.0, + 919.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 982.0, + 1013.0, + 982.0, + 1013.0, + 1009.0, + 977.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 985.0, + 1115.0, + 985.0, + 1115.0, + 1005.0, + 1095.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 982.0, + 1385.0, + 982.0, + 1385.0, + 1009.0, + 1121.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 1005.0, + 892.0, + 1005.0, + 892.0, + 1038.0, + 810.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 1005.0, + 1278.0, + 1005.0, + 1278.0, + 1037.0, + 1196.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1100.0, + 1405.0, + 1100.0, + 1405.0, + 1139.0, + 293.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1135.0, + 1405.0, + 1135.0, + 1405.0, + 1170.0, + 294.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1163.0, + 1405.0, + 1163.0, + 1405.0, + 1200.0, + 294.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1197.0, + 1403.0, + 1197.0, + 1403.0, + 1229.0, + 295.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1224.0, + 1407.0, + 1224.0, + 1407.0, + 1262.0, + 291.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1257.0, + 910.0, + 1257.0, + 910.0, + 1290.0, + 293.0, + 1290.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": [ + 840.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2119.0, + 840.0, + 2119.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": [ + 362.0, + 1356.0, + 872.0, + 1356.0, + 872.0, + 1389.0, + 362.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 1356.0, + 1292.0, + 1356.0, + 1292.0, + 1389.0, + 921.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 1356.0, + 1402.0, + 1356.0, + 1402.0, + 1389.0, + 1310.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1384.0, + 1131.0, + 1384.0, + 1131.0, + 1423.0, + 392.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1434.0, + 1406.0, + 1434.0, + 1406.0, + 1471.0, + 359.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1466.0, + 1406.0, + 1466.0, + 1406.0, + 1499.0, + 395.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1493.0, + 736.0, + 1493.0, + 736.0, + 1534.0, + 392.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 1493.0, + 1072.0, + 1493.0, + 1072.0, + 1534.0, + 771.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 1493.0, + 1405.0, + 1493.0, + 1405.0, + 1534.0, + 1108.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1528.0, + 1034.0, + 1528.0, + 1034.0, + 1558.0, + 395.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1576.0, + 1403.0, + 1576.0, + 1403.0, + 1613.0, + 359.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1606.0, + 1053.0, + 1606.0, + 1053.0, + 1642.0, + 393.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 1606.0, + 1403.0, + 1606.0, + 1403.0, + 1642.0, + 1248.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1640.0, + 889.0, + 1640.0, + 889.0, + 1673.0, + 395.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1688.0, + 1404.0, + 1688.0, + 1404.0, + 1724.0, + 359.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1718.0, + 855.0, + 1718.0, + 855.0, + 1755.0, + 394.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 1718.0, + 1406.0, + 1718.0, + 1406.0, + 1755.0, + 871.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1748.0, + 466.0, + 1748.0, + 466.0, + 1785.0, + 392.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 1748.0, + 1407.0, + 1748.0, + 1407.0, + 1785.0, + 688.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1782.0, + 562.0, + 1782.0, + 562.0, + 1812.0, + 396.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 1831.0, + 1404.0, + 1831.0, + 1404.0, + 1864.0, + 360.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1862.0, + 1404.0, + 1862.0, + 1404.0, + 1896.0, + 392.0, + 1896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1893.0, + 904.0, + 1893.0, + 904.0, + 1926.0, + 395.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1940.0, + 1405.0, + 1940.0, + 1405.0, + 1979.0, + 364.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1972.0, + 931.0, + 1972.0, + 931.0, + 2010.0, + 392.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2010.0, + 1126.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 2004.0, + 1087.0, + 2004.0, + 1087.0, + 2037.0, + 395.0, + 2037.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1434, + 1404, + 1434, + 1404, + 1679, + 298, + 1679 + ], + "score": 0.978 + }, + { + "category_id": 3, + "poly": [ + 316, + 240, + 1390, + 240, + 1390, + 1038, + 316, + 1038 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1834, + 1402, + 1834, + 1402, + 1957, + 299, + 1957 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1695, + 1402, + 1695, + 1402, + 1819, + 299, + 1819 + ], + "score": 0.973 + }, + { + "category_id": 4, + "poly": [ + 297, + 1103, + 1403, + 1103, + 1403, + 1288, + 297, + 1288 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 299, + 1972, + 1399, + 1972, + 1399, + 2034, + 299, + 2034 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 361, + 1345, + 1400, + 1345, + 1400, + 1407, + 361, + 1407 + ], + "score": 0.939 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 854, + 76, + 854, + 104, + 300, + 104 + ], + "score": 0.818 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.791 + }, + { + "category_id": 15, + "poly": [ + 382.0, + 244.0, + 550.0, + 244.0, + 550.0, + 275.0, + 382.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 255.0, + 708.0, + 255.0, + 708.0, + 290.0, + 665.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 257.0, + 1091.0, + 257.0, + 1091.0, + 289.0, + 1050.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 244.0, + 1332.0, + 244.0, + 1332.0, + 274.0, + 1146.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 275.0, + 714.0, + 275.0, + 714.0, + 352.0, + 659.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 284.0, + 978.0, + 284.0, + 978.0, + 299.0, + 959.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 279.0, + 1093.0, + 279.0, + 1093.0, + 317.0, + 1049.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 280.0, + 1140.0, + 280.0, + 1140.0, + 338.0, + 1121.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 297.0, + 1098.0, + 297.0, + 1098.0, + 369.0, + 1043.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 299.0, + 672.0, + 299.0, + 672.0, + 420.0, + 635.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 299.0, + 980.0, + 299.0, + 980.0, + 319.0, + 957.0, + 319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 318.0, + 980.0, + 318.0, + 980.0, + 338.0, + 956.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 318.0, + 1111.0, + 318.0, + 1111.0, + 335.0, + 1098.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 329.0, + 1113.0, + 329.0, + 1113.0, + 352.0, + 1094.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 329.0, + 1164.0, + 329.0, + 1164.0, + 345.0, + 1150.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 339.0, + 710.0, + 339.0, + 710.0, + 456.0, + 664.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 338.0, + 988.0, + 338.0, + 988.0, + 356.0, + 957.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 339.0, + 1091.0, + 339.0, + 1091.0, + 457.0, + 1025.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 345.0, + 1169.0, + 345.0, + 1169.0, + 436.0, + 1148.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 366.0, + 1222.0, + 366.0, + 1222.0, + 447.0, + 1171.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 383.0, + 1248.0, + 383.0, + 1248.0, + 446.0, + 1225.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 389.0, + 1304.0, + 389.0, + 1304.0, + 451.0, + 1250.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 402.0, + 1324.0, + 402.0, + 1324.0, + 446.0, + 1307.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 407.0, + 1351.0, + 407.0, + 1351.0, + 446.0, + 1332.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 414.0, + 1374.0, + 414.0, + 1374.0, + 430.0, + 1361.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 447.0, + 715.0, + 447.0, + 715.0, + 468.0, + 696.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 445.0, + 782.0, + 445.0, + 782.0, + 472.0, + 747.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 444.0, + 899.0, + 444.0, + 899.0, + 473.0, + 802.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 446.0, + 956.0, + 446.0, + 956.0, + 469.0, + 920.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 445.0, + 1012.0, + 445.0, + 1012.0, + 472.0, + 972.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 443.0, + 1386.0, + 443.0, + 1386.0, + 473.0, + 1095.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 468.0, + 893.0, + 468.0, + 893.0, + 500.0, + 809.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 468.0, + 1279.0, + 468.0, + 1279.0, + 500.0, + 1195.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 511.0, + 569.0, + 511.0, + 569.0, + 545.0, + 362.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 512.0, + 1326.0, + 512.0, + 1326.0, + 544.0, + 1154.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 529.0, + 705.0, + 529.0, + 705.0, + 558.0, + 673.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 527.0, + 1091.0, + 527.0, + 1091.0, + 560.0, + 1050.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 549.0, + 708.0, + 549.0, + 708.0, + 673.0, + 669.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 549.0, + 1091.0, + 549.0, + 1091.0, + 583.0, + 1050.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 554.0, + 1139.0, + 554.0, + 1139.0, + 579.0, + 1122.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 555.0, + 974.0, + 555.0, + 974.0, + 565.0, + 963.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 570.0, + 675.0, + 570.0, + 675.0, + 687.0, + 642.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 571.0, + 988.0, + 571.0, + 988.0, + 624.0, + 958.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 573.0, + 1091.0, + 573.0, + 1091.0, + 630.0, + 1049.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 580.0, + 1112.0, + 580.0, + 1112.0, + 617.0, + 1095.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 569.0, + 1167.0, + 569.0, + 1167.0, + 627.0, + 1146.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 579.0, + 1193.0, + 579.0, + 1193.0, + 643.0, + 1173.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 590.0, + 1220.0, + 590.0, + 1220.0, + 652.0, + 1200.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 605.0, + 1245.0, + 605.0, + 1245.0, + 661.0, + 1225.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 618.0, + 1279.0, + 618.0, + 1279.0, + 712.0, + 1247.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 624.0, + 1089.0, + 624.0, + 1089.0, + 654.0, + 1065.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 627.0, + 1073.0, + 627.0, + 1073.0, + 650.0, + 1054.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 628.0, + 1047.0, + 628.0, + 1047.0, + 644.0, + 1030.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 633.0, + 1137.0, + 633.0, + 1137.0, + 644.0, + 1126.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 635.0, + 1299.0, + 635.0, + 1299.0, + 679.0, + 1279.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 637.0, + 1170.0, + 637.0, + 1170.0, + 670.0, + 1146.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 643.0, + 1195.0, + 643.0, + 1195.0, + 685.0, + 1173.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 648.0, + 1091.0, + 648.0, + 1091.0, + 679.0, + 1050.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 651.0, + 1222.0, + 651.0, + 1222.0, + 690.0, + 1195.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 655.0, + 1321.0, + 655.0, + 1321.0, + 678.0, + 1308.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 657.0, + 1350.0, + 657.0, + 1350.0, + 682.0, + 1332.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 661.0, + 1250.0, + 661.0, + 1250.0, + 695.0, + 1222.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 663.0, + 1375.0, + 663.0, + 1375.0, + 682.0, + 1362.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 676.0, + 700.0, + 676.0, + 700.0, + 695.0, + 688.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 672.0, + 1091.0, + 672.0, + 1091.0, + 704.0, + 1050.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 672.0, + 1137.0, + 672.0, + 1137.0, + 683.0, + 1124.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 684.0, + 1165.0, + 684.0, + 1165.0, + 701.0, + 1149.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 680.0, + 1191.0, + 680.0, + 1191.0, + 700.0, + 1176.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 690.0, + 1216.0, + 690.0, + 1216.0, + 700.0, + 1205.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 676.0, + 1302.0, + 676.0, + 1302.0, + 704.0, + 1277.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 690.0, + 1324.0, + 690.0, + 1324.0, + 700.0, + 1310.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 693.0, + 1350.0, + 693.0, + 1350.0, + 701.0, + 1335.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 702.0, + 703.0, + 702.0, + 703.0, + 721.0, + 689.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 699.0, + 1090.0, + 699.0, + 1090.0, + 726.0, + 1051.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 720.0, + 711.0, + 720.0, + 711.0, + 734.0, + 701.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 713.0, + 782.0, + 713.0, + 782.0, + 740.0, + 747.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 713.0, + 842.0, + 713.0, + 842.0, + 740.0, + 804.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 712.0, + 899.0, + 712.0, + 899.0, + 741.0, + 844.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 713.0, + 957.0, + 713.0, + 957.0, + 740.0, + 919.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 713.0, + 1012.0, + 713.0, + 1012.0, + 740.0, + 973.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 710.0, + 1387.0, + 710.0, + 1387.0, + 744.0, + 1095.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 738.0, + 893.0, + 738.0, + 893.0, + 770.0, + 809.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 737.0, + 1279.0, + 737.0, + 1279.0, + 770.0, + 1195.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 781.0, + 551.0, + 781.0, + 551.0, + 812.0, + 380.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 779.0, + 1319.0, + 779.0, + 1319.0, + 815.0, + 1160.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 795.0, + 707.0, + 795.0, + 707.0, + 826.0, + 659.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 800.0, + 1089.0, + 800.0, + 1089.0, + 824.0, + 1071.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 812.0, + 1242.0, + 812.0, + 1242.0, + 824.0, + 1231.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 828.0, + 707.0, + 828.0, + 707.0, + 957.0, + 629.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 820.0, + 991.0, + 820.0, + 991.0, + 896.0, + 955.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 821.0, + 1089.0, + 821.0, + 1089.0, + 896.0, + 1071.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 871.0, + 1164.0, + 871.0, + 1164.0, + 882.0, + 1151.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 843.0, + 1191.0, + 843.0, + 1191.0, + 857.0, + 1176.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 818.0, + 1217.0, + 818.0, + 1217.0, + 835.0, + 1203.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 882.0, + 1138.0, + 882.0, + 1138.0, + 896.0, + 1123.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 896.0, + 707.0, + 896.0, + 707.0, + 927.0, + 655.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 894.0, + 1067.0, + 894.0, + 1067.0, + 916.0, + 1047.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 895.0, + 1089.0, + 895.0, + 1089.0, + 918.0, + 1071.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 932.0, + 706.0, + 932.0, + 706.0, + 961.0, + 672.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 917.0, + 1089.0, + 917.0, + 1089.0, + 971.0, + 1068.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 943.0, + 1113.0, + 943.0, + 1113.0, + 957.0, + 1096.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 931.0, + 1140.0, + 931.0, + 1140.0, + 961.0, + 1122.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 972.0, + 703.0, + 972.0, + 703.0, + 989.0, + 688.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 968.0, + 1088.0, + 968.0, + 1088.0, + 993.0, + 1071.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 967.0, + 1139.0, + 967.0, + 1139.0, + 983.0, + 1123.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 973.0, + 1161.0, + 973.0, + 1161.0, + 979.0, + 1155.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 970.0, + 1188.0, + 970.0, + 1188.0, + 981.0, + 1178.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 987.0, + 714.0, + 987.0, + 714.0, + 1004.0, + 698.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 983.0, + 782.0, + 983.0, + 782.0, + 1010.0, + 747.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 981.0, + 842.0, + 981.0, + 842.0, + 1012.0, + 802.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 982.0, + 898.0, + 982.0, + 898.0, + 1010.0, + 860.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 982.0, + 957.0, + 982.0, + 957.0, + 1010.0, + 919.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 982.0, + 1013.0, + 982.0, + 1013.0, + 1010.0, + 978.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 981.0, + 1386.0, + 981.0, + 1386.0, + 1011.0, + 1095.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 1005.0, + 892.0, + 1005.0, + 892.0, + 1038.0, + 809.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 1005.0, + 1279.0, + 1005.0, + 1279.0, + 1038.0, + 1195.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 683.0, + 748.0, + 683.0, + 748.0, + 695.5, + 699.0, + 695.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 930.5, + 1270.0, + 930.5, + 1270.0, + 940.5, + 1255.0, + 940.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1104.0, + 1404.0, + 1104.0, + 1404.0, + 1140.0, + 295.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1133.0, + 1401.0, + 1133.0, + 1401.0, + 1169.0, + 293.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1162.0, + 1404.0, + 1162.0, + 1404.0, + 1204.0, + 291.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1197.0, + 1404.0, + 1197.0, + 1404.0, + 1229.0, + 296.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1226.0, + 1407.0, + 1226.0, + 1407.0, + 1265.0, + 293.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1257.0, + 723.0, + 1257.0, + 723.0, + 1291.0, + 293.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1436.0, + 1404.0, + 1436.0, + 1404.0, + 1469.0, + 296.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1464.0, + 1404.0, + 1464.0, + 1404.0, + 1500.0, + 293.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1497.0, + 1406.0, + 1497.0, + 1406.0, + 1530.0, + 294.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1527.0, + 1405.0, + 1527.0, + 1405.0, + 1560.0, + 294.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1556.0, + 1406.0, + 1556.0, + 1406.0, + 1594.0, + 294.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1586.0, + 1408.0, + 1586.0, + 1408.0, + 1624.0, + 293.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1616.0, + 1408.0, + 1616.0, + 1408.0, + 1657.0, + 292.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1649.0, + 712.0, + 1649.0, + 712.0, + 1682.0, + 294.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1832.0, + 1404.0, + 1832.0, + 1404.0, + 1871.0, + 293.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1864.0, + 1406.0, + 1864.0, + 1406.0, + 1900.0, + 294.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1893.0, + 1404.0, + 1893.0, + 1404.0, + 1932.0, + 293.0, + 1932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1925.0, + 1211.0, + 1925.0, + 1211.0, + 1963.0, + 292.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1694.0, + 1402.0, + 1694.0, + 1402.0, + 1730.0, + 294.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1727.0, + 1406.0, + 1727.0, + 1406.0, + 1759.0, + 293.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1758.0, + 1404.0, + 1758.0, + 1404.0, + 1788.0, + 294.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1787.0, + 820.0, + 1787.0, + 820.0, + 1824.0, + 294.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1971.0, + 1404.0, + 1971.0, + 1404.0, + 2007.0, + 296.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 1404.0, + 2003.0, + 1404.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 1347.0, + 1403.0, + 1347.0, + 1403.0, + 1379.0, + 362.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1373.0, + 1318.0, + 1373.0, + 1318.0, + 1413.0, + 394.0, + 1413.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1765, + 1404, + 1765, + 1404, + 1921, + 297, + 1921 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1527, + 1405, + 1527, + 1405, + 1620, + 298, + 1620 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 381, + 227, + 1316, + 227, + 1316, + 595, + 381, + 595 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 380, + 818, + 1317, + 818, + 1317, + 1182, + 380, + 1182 + ], + "score": 0.967 + }, + { + "category_id": 4, + "poly": [ + 295, + 1236, + 1407, + 1236, + 1407, + 1453, + 295, + 1453 + ], + "score": 0.966 + }, + { + "category_id": 4, + "poly": [ + 296, + 649, + 1405, + 649, + 1405, + 774, + 296, + 774 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 652, + 1957, + 1045, + 1957, + 1045, + 2042, + 652, + 2042 + ], + "score": 0.956 + }, + { + "category_id": 0, + "poly": [ + 298, + 1686, + 900, + 1686, + 900, + 1721, + 298, + 1721 + ], + "score": 0.896 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1982, + 1400, + 1982, + 1400, + 2012, + 1365, + 2012 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2111, + 840, + 2111 + ], + "score": 0.814 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 854, + 76, + 854, + 104, + 300, + 104 + ], + "score": 0.639 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 856, + 76, + 856, + 104, + 298, + 104 + ], + "score": 0.46 + }, + { + "category_id": 0, + "poly": [ + 304, + 1687, + 895, + 1687, + 895, + 1720, + 304, + 1720 + ], + "score": 0.107 + }, + { + "category_id": 14, + "poly": [ + 651, + 1953, + 1046, + 1953, + 1046, + 2043, + 651, + 2043 + ], + "score": 0.94, + "latex": "\\operatorname* { m i n } _ { \\pmb { \\theta } } \\sum _ { i = 1 } ^ { n } v _ { i } L ( y _ { i } , f ( \\mathbf { x } _ { i } , \\pmb { \\theta } ) ) + R ( \\pmb { \\theta } ) ," + }, + { + "category_id": 15, + "poly": [ + 406.0, + 242.0, + 471.0, + 242.0, + 471.0, + 279.0, + 406.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 227.0, + 657.0, + 227.0, + 657.0, + 266.0, + 562.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 244.0, + 858.0, + 244.0, + 858.0, + 279.0, + 809.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 229.0, + 1054.0, + 229.0, + 1054.0, + 264.0, + 937.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 264.0, + 1306.0, + 264.0, + 1306.0, + 302.0, + 1223.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 311.0, + 471.0, + 311.0, + 471.0, + 348.0, + 406.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 301.0, + 858.0, + 301.0, + 858.0, + 343.0, + 808.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 300.0, + 1295.0, + 300.0, + 1295.0, + 340.0, + 1223.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 340.0, + 471.0, + 340.0, + 471.0, + 459.0, + 378.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 341.0, + 856.0, + 341.0, + 856.0, + 458.0, + 780.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 338.0, + 1310.0, + 338.0, + 1310.0, + 413.0, + 1224.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 429.0, + 856.0, + 429.0, + 856.0, + 460.0, + 809.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 413.0, + 1285.0, + 413.0, + 1285.0, + 451.0, + 1224.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 449.0, + 474.0, + 449.0, + 474.0, + 486.0, + 408.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 451.0, + 1300.0, + 451.0, + 1300.0, + 487.0, + 1225.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 487.0, + 859.0, + 487.0, + 859.0, + 527.0, + 808.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 486.0, + 1287.0, + 486.0, + 1287.0, + 527.0, + 1220.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 518.0, + 478.0, + 518.0, + 478.0, + 565.0, + 408.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 534.0, + 546.0, + 534.0, + 546.0, + 568.0, + 505.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 532.0, + 661.0, + 532.0, + 661.0, + 570.0, + 557.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 536.0, + 768.0, + 536.0, + 768.0, + 567.0, + 671.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 537.0, + 868.0, + 537.0, + 868.0, + 567.0, + 843.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 535.0, + 932.0, + 535.0, + 932.0, + 567.0, + 891.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 534.0, + 1157.0, + 534.0, + 1157.0, + 569.0, + 944.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 563.0, + 655.0, + 563.0, + 655.0, + 599.0, + 560.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 563.0, + 1042.0, + 563.0, + 1042.0, + 599.0, + 947.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 833.0, + 476.0, + 833.0, + 476.0, + 870.0, + 424.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 820.0, + 659.0, + 820.0, + 659.0, + 854.0, + 569.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 842.0, + 850.0, + 842.0, + 850.0, + 863.0, + 831.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 820.0, + 1053.0, + 820.0, + 1053.0, + 853.0, + 938.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 858.0, + 590.0, + 858.0, + 590.0, + 889.0, + 524.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 864.0, + 1214.0, + 864.0, + 1214.0, + 883.0, + 1162.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 855.0, + 1304.0, + 855.0, + 1304.0, + 892.0, + 1225.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 873.0, + 474.0, + 873.0, + 474.0, + 910.0, + 425.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 873.0, + 501.0, + 873.0, + 501.0, + 893.0, + 484.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 872.0, + 850.0, + 872.0, + 850.0, + 898.0, + 830.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 874.0, + 1132.0, + 874.0, + 1132.0, + 887.0, + 1116.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 881.0, + 1114.0, + 881.0, + 1114.0, + 894.0, + 1100.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 895.0, + 504.0, + 895.0, + 504.0, + 905.0, + 496.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 898.0, + 1072.0, + 898.0, + 1072.0, + 911.0, + 1057.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 891.0, + 1093.0, + 891.0, + 1093.0, + 900.0, + 1083.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 897.0, + 1216.0, + 897.0, + 1216.0, + 923.0, + 1160.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 893.0, + 1292.0, + 893.0, + 1292.0, + 928.0, + 1225.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 914.0, + 474.0, + 914.0, + 474.0, + 948.0, + 426.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 906.0, + 850.0, + 906.0, + 850.0, + 934.0, + 830.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 906.0, + 942.0, + 906.0, + 942.0, + 938.0, + 880.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 923.0, + 1019.0, + 923.0, + 1019.0, + 934.0, + 1011.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 910.0, + 1049.0, + 910.0, + 1049.0, + 923.0, + 1035.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 935.0, + 989.0, + 935.0, + 989.0, + 944.0, + 980.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 934.0, + 1217.0, + 934.0, + 1217.0, + 961.0, + 1159.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 929.0, + 1309.0, + 929.0, + 1309.0, + 965.0, + 1224.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 962.0, + 414.0, + 962.0, + 414.0, + 1017.0, + 379.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 951.0, + 474.0, + 951.0, + 474.0, + 988.0, + 425.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 962.0, + 814.0, + 962.0, + 814.0, + 1018.0, + 779.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 944.0, + 851.0, + 944.0, + 851.0, + 1001.0, + 830.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 958.0, + 872.0, + 958.0, + 872.0, + 970.0, + 858.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 948.0, + 959.0, + 948.0, + 959.0, + 956.0, + 950.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 969.0, + 972.0, + 969.0, + 972.0, + 978.0, + 963.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 994.0, + 968.0, + 1006.0, + 968.0, + 1006.0, + 977.0, + 994.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 963.0, + 1041.0, + 963.0, + 1041.0, + 975.0, + 1022.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 961.0, + 1063.0, + 961.0, + 1063.0, + 973.0, + 1045.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 979.0, + 1120.0, + 979.0, + 1120.0, + 993.0, + 1090.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 971.0, + 1217.0, + 971.0, + 1217.0, + 998.0, + 1157.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 967.0, + 1294.0, + 967.0, + 1294.0, + 1001.0, + 1225.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 991.0, + 474.0, + 991.0, + 474.0, + 1025.0, + 425.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 1006.0, + 556.0, + 1006.0, + 556.0, + 1031.0, + 540.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 1008.0, + 852.0, + 1008.0, + 852.0, + 1038.0, + 817.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 1008.0, + 1217.0, + 1008.0, + 1217.0, + 1035.0, + 1157.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 1003.0, + 1283.0, + 1003.0, + 1283.0, + 1039.0, + 1224.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 1030.0, + 475.0, + 1030.0, + 475.0, + 1065.0, + 411.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 1032.0, + 563.0, + 1032.0, + 563.0, + 1052.0, + 546.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 1030.0, + 1121.0, + 1030.0, + 1121.0, + 1055.0, + 1009.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 1040.0, + 853.0, + 1040.0, + 853.0, + 1075.0, + 813.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1043.0, + 1217.0, + 1043.0, + 1217.0, + 1073.0, + 1158.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 1041.0, + 1299.0, + 1041.0, + 1299.0, + 1076.0, + 1225.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 1070.0, + 474.0, + 1070.0, + 474.0, + 1102.0, + 411.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 1076.0, + 853.0, + 1076.0, + 853.0, + 1106.0, + 814.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 1083.0, + 1217.0, + 1083.0, + 1217.0, + 1108.0, + 1159.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 1078.0, + 1285.0, + 1078.0, + 1285.0, + 1113.0, + 1225.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 1109.0, + 472.0, + 1109.0, + 472.0, + 1141.0, + 412.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 1110.0, + 851.0, + 1110.0, + 851.0, + 1136.0, + 815.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 1124.0, + 769.0, + 1124.0, + 769.0, + 1154.0, + 459.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 1125.0, + 1151.0, + 1125.0, + 1151.0, + 1156.0, + 833.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 1152.0, + 640.0, + 1152.0, + 640.0, + 1183.0, + 588.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1152.0, + 1020.0, + 1152.0, + 1020.0, + 1184.0, + 968.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 950.5, + 1141.0, + 950.5, + 1141.0, + 970.0, + 1084.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 963.5, + 903.0, + 963.5, + 903.0, + 987.5, + 873.0, + 987.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 1031.0, + 1048.0, + 1031.0, + 1048.0, + 1079.0, + 907.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.75, + 1054.0, + 567.75, + 1054.0, + 567.75, + 1069.0, + 563.75, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1238.0, + 1405.0, + 1238.0, + 1405.0, + 1270.0, + 293.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1268.0, + 1405.0, + 1268.0, + 1405.0, + 1302.0, + 293.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1299.0, + 1404.0, + 1299.0, + 1404.0, + 1333.0, + 294.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1331.0, + 1403.0, + 1331.0, + 1403.0, + 1362.0, + 296.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1359.0, + 1405.0, + 1359.0, + 1405.0, + 1394.0, + 294.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1392.0, + 1404.0, + 1392.0, + 1404.0, + 1423.0, + 296.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1421.0, + 1235.0, + 1421.0, + 1235.0, + 1456.0, + 296.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 648.0, + 1407.0, + 648.0, + 1407.0, + 685.0, + 294.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 680.0, + 1403.0, + 680.0, + 1403.0, + 713.0, + 295.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 709.0, + 1405.0, + 709.0, + 1405.0, + 747.0, + 293.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 742.0, + 636.0, + 742.0, + 636.0, + 774.0, + 295.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1684.0, + 903.0, + 1684.0, + 903.0, + 1728.0, + 293.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1684.0, + 902.0, + 1684.0, + 902.0, + 1726.0, + 294.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1763.0, + 1406.0, + 1763.0, + 1406.0, + 1804.0, + 295.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1798.0, + 1404.0, + 1798.0, + 1404.0, + 1831.0, + 295.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1828.0, + 1405.0, + 1828.0, + 1405.0, + 1863.0, + 293.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1858.0, + 1404.0, + 1858.0, + 1404.0, + 1895.0, + 294.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1888.0, + 818.0, + 1888.0, + 818.0, + 1924.0, + 295.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1526.0, + 1405.0, + 1526.0, + 1405.0, + 1563.0, + 293.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1558.0, + 1403.0, + 1558.0, + 1403.0, + 1594.0, + 293.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1584.0, + 385.0, + 1584.0, + 385.0, + 1630.0, + 291.0, + 1630.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1710, + 1404, + 1710, + 1404, + 1866, + 297, + 1866 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 1880, + 1403, + 1880, + 1403, + 2034, + 299, + 2034 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 634, + 1404, + 634, + 1404, + 736, + 297, + 736 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1013, + 1403, + 1013, + 1403, + 1108, + 297, + 1108 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 587, + 451, + 1109, + 451, + 1109, + 597, + 587, + 597 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 609, + 1392, + 1088, + 1392, + 1088, + 1478, + 609, + 1478 + ], + "score": 0.961 + }, + { + "category_id": 8, + "poly": [ + 671, + 1200, + 1027, + 1200, + 1027, + 1274, + 671, + 1274 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 679, + 309, + 1021, + 309, + 1021, + 381, + 679, + 381 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 298, + 1304, + 1404, + 1304, + 1404, + 1373, + 298, + 1373 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 296, + 1530, + 1401, + 1530, + 1401, + 1595, + 296, + 1595 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 294, + 228, + 1402, + 228, + 1402, + 293, + 294, + 293 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 711, + 912, + 987, + 912, + 987, + 982, + 711, + 982 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 566, + 751, + 1130, + 751, + 1130, + 825, + 566, + 825 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 299, + 1120, + 1401, + 1120, + 1401, + 1185, + 299, + 1185 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 297, + 402, + 954, + 402, + 954, + 438, + 297, + 438 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 288, + 860, + 1278, + 860, + 1278, + 895, + 288, + 895 + ], + "score": 0.93 + }, + { + "category_id": 0, + "poly": [ + 299, + 1641, + 531, + 1641, + 531, + 1677, + 299, + 1677 + ], + "score": 0.928 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 857, + 73, + 857, + 106, + 297, + 106 + ], + "score": 0.927 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1221, + 1400, + 1221, + 1400, + 1252, + 1365, + 1252 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1366, + 932, + 1400, + 932, + 1400, + 963, + 1366, + 963 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 866, + 2088, + 866, + 2113, + 836, + 2113 + ], + "score": 0.862 + }, + { + "category_id": 14, + "poly": [ + 678, + 308, + 1022, + 308, + 1022, + 384, + 678, + 384 + ], + "score": 0.94, + "latex": "\\pmb { \\theta } ^ { t + 1 } = \\pmb { \\theta } ^ { t } - \\eta \\sum _ { i } v _ { i } \\mathbf { g } _ { i } ^ { t } - \\eta \\mathbf { r } _ { i } ^ { t }" + }, + { + "category_id": 14, + "poly": [ + 670, + 1199, + 1030, + 1199, + 1030, + 1272, + 670, + 1272 + ], + "score": 0.94, + "latex": "\\frac { \\partial } { \\partial v _ { i } } T ( \\pmb { \\theta } ^ { * } ) = \\frac { \\partial } { \\partial \\pmb { \\theta } ^ { * } } T ( \\pmb { \\theta } ^ { * } ) \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { * }" + }, + { + "category_id": 14, + "poly": [ + 710, + 910, + 990, + 910, + 990, + 983, + 710, + 983 + ], + "score": 0.94, + "latex": "\\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { * } = - H ( \\pmb { \\theta } ^ { * } ) ^ { - 1 } \\mathbf { g } _ { i } ^ { T }" + }, + { + "category_id": 14, + "poly": [ + 608, + 1391, + 1091, + 1391, + 1091, + 1480, + 608, + 1480 + ], + "score": 0.93, + "latex": "\\begin{array} { r c l } { \\displaystyle \\frac { \\partial } { \\partial v _ { i } } \\mathcal { T } ( \\pmb { \\theta } ^ { * } ) } & { = } & { \\displaystyle \\sum _ { i \\in \\mathcal { S } _ { c } } \\frac { \\partial } { \\partial \\pmb { \\theta } ^ { * } } f ( \\mathbf { x } _ { i } , \\pmb { \\theta } ^ { t } ) \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { * } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 372, + 633, + 447, + 633, + 447, + 670, + 372, + 670 + ], + "score": 0.93, + "latex": "H ( \\pmb \\theta ^ { t } )" + }, + { + "category_id": 14, + "poly": [ + 589, + 451, + 1112, + 451, + 1112, + 599, + 589, + 599 + ], + "score": 0.93, + "latex": "\\begin{array} { r c l } { { \\displaystyle \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { t + 1 } } } & { { = } } & { { \\displaystyle \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { t } - \\eta \\mathbf { g } _ { i } ^ { t } - \\eta H ( \\pmb { \\theta } ^ { t } ) \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { t } } } \\\\ { { \\displaystyle \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { 1 } } } & { { = } } & { { \\displaystyle - \\eta \\mathbf { g } _ { i } ^ { 0 } , } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 560, + 1121, + 635, + 1121, + 635, + 1156, + 560, + 1156 + ], + "score": 0.93, + "latex": "\\boldsymbol { \\mathcal { T } } ( \\boldsymbol { \\theta } ^ { * } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1337, + 484, + 1337, + 484, + 1378, + 298, + 1378 + ], + "score": 0.93, + "latex": "\\textstyle \\sum _ { i \\in { \\mathcal { S } } _ { c } } f ( \\mathbf { x } _ { i } , { \\pmb \\theta } ^ { t } )" + }, + { + "category_id": 14, + "poly": [ + 566, + 750, + 1133, + 750, + 1133, + 825, + 566, + 825 + ], + "score": 0.91, + "latex": "\\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { T + 1 } - \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { T } = - \\eta \\mathbf { g } _ { i } ^ { t } - \\eta H ( \\pmb { \\theta } ^ { * } ) \\frac { \\partial } { \\partial v _ { i } } \\pmb { \\theta } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 494, + 401, + 549, + 401, + 549, + 432, + 494, + 432 + ], + "score": 0.9, + "latex": "\\pmb { \\theta } ^ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 1241, + 667, + 1404, + 667, + 1404, + 701, + 1241, + 701 + ], + "score": 0.9, + "latex": "\\pmb { \\theta } ^ { \\ast } = \\pmb { \\theta } ^ { T + 1 } =" + }, + { + "category_id": 13, + "poly": [ + 1282, + 1304, + 1402, + 1304, + 1402, + 1340, + 1282, + 1340 + ], + "score": 0.9, + "latex": "{ \\mathcal { T } } ( \\theta ^ { * } ) ~ =" + }, + { + "category_id": 13, + "poly": [ + 1049, + 667, + 1084, + 667, + 1084, + 699, + 1049, + 699 + ], + "score": 0.9, + "latex": "\\theta ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 1127, + 1121, + 1158, + 1121, + 1158, + 1150, + 1127, + 1150 + ], + "score": 0.87, + "latex": "\\pmb { \\theta } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 297, + 701, + 333, + 701, + 333, + 734, + 297, + 734 + ], + "score": 0.85, + "latex": "\\theta ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 891, + 410, + 916, + 410, + 916, + 436, + 891, + 436 + ], + "score": 0.84, + "latex": "v _ { i }" + }, + { + "category_id": 13, + "poly": [ + 693, + 235, + 720, + 235, + 720, + 261, + 693, + 261 + ], + "score": 0.84, + "latex": "v _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1381, + 640, + 1394, + 640, + 1394, + 664, + 1381, + 664 + ], + "score": 0.73, + "latex": "t" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1639.0, + 533.0, + 1639.0, + 533.0, + 1683.0, + 293.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1709.0, + 1406.0, + 1709.0, + 1406.0, + 1748.0, + 294.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1740.0, + 1405.0, + 1740.0, + 1405.0, + 1779.0, + 292.0, + 1779.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": [ + 295.0, + 1803.0, + 1404.0, + 1803.0, + 1404.0, + 1840.0, + 295.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1832.0, + 1387.0, + 1832.0, + 1387.0, + 1872.0, + 294.0, + 1872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1880.0, + 1404.0, + 1880.0, + 1404.0, + 1915.0, + 295.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1912.0, + 1404.0, + 1912.0, + 1404.0, + 1945.0, + 295.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1940.0, + 1404.0, + 1940.0, + 1404.0, + 1978.0, + 293.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1970.0, + 1405.0, + 1970.0, + 1405.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2002.0, + 473.0, + 2002.0, + 473.0, + 2035.0, + 295.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 631.0, + 371.0, + 631.0, + 371.0, + 674.0, + 294.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 631.0, + 1380.0, + 631.0, + 1380.0, + 674.0, + 448.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 631.0, + 1405.0, + 631.0, + 1405.0, + 674.0, + 1395.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 666.0, + 1048.0, + 666.0, + 1048.0, + 705.0, + 290.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 666.0, + 1240.0, + 666.0, + 1240.0, + 705.0, + 1085.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 697.0, + 296.0, + 697.0, + 296.0, + 743.0, + 293.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 697.0, + 516.0, + 697.0, + 516.0, + 743.0, + 334.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1012.0, + 1404.0, + 1012.0, + 1404.0, + 1051.0, + 294.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1046.0, + 1403.0, + 1046.0, + 1403.0, + 1080.0, + 295.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1075.0, + 1246.0, + 1075.0, + 1246.0, + 1112.0, + 295.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1300.0, + 1281.0, + 1300.0, + 1281.0, + 1344.0, + 293.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1336.0, + 297.0, + 1336.0, + 297.0, + 1381.0, + 293.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 1336.0, + 1070.0, + 1336.0, + 1070.0, + 1381.0, + 485.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1525.0, + 1405.0, + 1525.0, + 1405.0, + 1570.0, + 294.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1560.0, + 646.0, + 1560.0, + 646.0, + 1597.0, + 294.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 228.0, + 692.0, + 228.0, + 692.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 228.0, + 1404.0, + 228.0, + 1404.0, + 264.0, + 721.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 261.0, + 703.0, + 261.0, + 703.0, + 294.0, + 294.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1120.0, + 559.0, + 1120.0, + 559.0, + 1156.0, + 295.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 1120.0, + 1126.0, + 1120.0, + 1126.0, + 1156.0, + 636.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 1120.0, + 1403.0, + 1120.0, + 1403.0, + 1156.0, + 1159.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1154.0, + 816.0, + 1154.0, + 816.0, + 1186.0, + 297.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 391.0, + 493.0, + 391.0, + 493.0, + 448.0, + 291.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 391.0, + 890.0, + 391.0, + 890.0, + 448.0, + 550.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 391.0, + 958.0, + 391.0, + 958.0, + 448.0, + 917.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 856.0, + 1280.0, + 856.0, + 1280.0, + 902.0, + 291.0, + 902.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 279, + 1404, + 279, + 1404, + 372, + 299, + 372 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 298, + 504, + 1404, + 504, + 1404, + 628, + 298, + 628 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 304, + 392, + 1399, + 392, + 1399, + 485, + 304, + 485 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 297, + 731, + 1404, + 731, + 1404, + 826, + 297, + 826 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.9 + }, + { + "category_id": 1, + "poly": [ + 297, + 649, + 1400, + 649, + 1400, + 712, + 297, + 712 + ], + "score": 0.896 + }, + { + "category_id": 1, + "poly": [ + 298, + 1063, + 1399, + 1063, + 1399, + 1128, + 298, + 1128 + ], + "score": 0.895 + }, + { + "category_id": 1, + "poly": [ + 299, + 897, + 1399, + 897, + 1399, + 963, + 299, + 963 + ], + "score": 0.881 + }, + { + "category_id": 1, + "poly": [ + 300, + 980, + 1399, + 980, + 1399, + 1045, + 300, + 1045 + ], + "score": 0.879 + }, + { + "category_id": 1, + "poly": [ + 295, + 846, + 1398, + 846, + 1398, + 880, + 295, + 880 + ], + "score": 0.867 + }, + { + "category_id": 1, + "poly": [ + 298, + 1146, + 1404, + 1146, + 1404, + 1240, + 298, + 1240 + ], + "score": 0.862 + }, + { + "category_id": 1, + "poly": [ + 297, + 1375, + 1402, + 1375, + 1402, + 1438, + 297, + 1438 + ], + "score": 0.844 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.834 + }, + { + "category_id": 1, + "poly": [ + 298, + 1260, + 1405, + 1260, + 1405, + 1356, + 298, + 1356 + ], + "score": 0.815 + }, + { + "category_id": 0, + "poly": [ + 300, + 227, + 489, + 227, + 489, + 261, + 300, + 261 + ], + "score": 0.765 + }, + { + "category_id": 1, + "poly": [ + 300, + 227, + 489, + 227, + 489, + 261, + 300, + 261 + ], + "score": 0.116 + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 229.0, + 490.0, + 229.0, + 490.0, + 263.0, + 297.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 280.0, + 1403.0, + 280.0, + 1403.0, + 313.0, + 294.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 310.0, + 1401.0, + 310.0, + 1401.0, + 344.0, + 323.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 339.0, + 1226.0, + 339.0, + 1226.0, + 376.0, + 322.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 508.0, + 1404.0, + 508.0, + 1404.0, + 540.0, + 294.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 537.0, + 1404.0, + 537.0, + 1404.0, + 571.0, + 321.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 568.0, + 1405.0, + 568.0, + 1405.0, + 604.0, + 321.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 599.0, + 757.0, + 599.0, + 757.0, + 631.0, + 325.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 393.0, + 1404.0, + 393.0, + 1404.0, + 426.0, + 298.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 424.0, + 1404.0, + 424.0, + 1404.0, + 458.0, + 322.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 449.0, + 399.0, + 449.0, + 399.0, + 490.0, + 320.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 731.0, + 1404.0, + 731.0, + 1404.0, + 769.0, + 294.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 760.0, + 1405.0, + 760.0, + 1405.0, + 802.0, + 321.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 792.0, + 535.0, + 792.0, + 535.0, + 826.0, + 323.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 649.0, + 1404.0, + 649.0, + 1404.0, + 684.0, + 295.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 679.0, + 1404.0, + 679.0, + 1404.0, + 715.0, + 323.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1059.0, + 1404.0, + 1059.0, + 1404.0, + 1101.0, + 293.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1092.0, + 399.0, + 1092.0, + 399.0, + 1130.0, + 319.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 898.0, + 1405.0, + 898.0, + 1405.0, + 934.0, + 295.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 927.0, + 1295.0, + 927.0, + 1295.0, + 966.0, + 320.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 976.0, + 1405.0, + 976.0, + 1405.0, + 1019.0, + 295.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1010.0, + 471.0, + 1010.0, + 471.0, + 1047.0, + 320.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 845.0, + 1402.0, + 845.0, + 1402.0, + 884.0, + 296.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1147.0, + 1405.0, + 1147.0, + 1405.0, + 1185.0, + 294.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1177.0, + 1404.0, + 1177.0, + 1404.0, + 1216.0, + 318.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1210.0, + 492.0, + 1210.0, + 492.0, + 1242.0, + 323.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1375.0, + 1404.0, + 1375.0, + 1404.0, + 1410.0, + 295.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1407.0, + 1043.0, + 1407.0, + 1043.0, + 1438.0, + 324.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1258.0, + 1403.0, + 1258.0, + 1403.0, + 1299.0, + 293.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1295.0, + 1403.0, + 1295.0, + 1403.0, + 1325.0, + 326.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1325.0, + 1073.0, + 1325.0, + 1073.0, + 1357.0, + 323.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 229.0, + 490.0, + 229.0, + 490.0, + 263.0, + 297.0, + 263.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 378, + 309, + 1318, + 309, + 1318, + 1062, + 378, + 1062 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 474, + 1238, + 1222, + 1238, + 1222, + 1604, + 474, + 1604 + ], + "score": 0.964 + }, + { + "category_id": 4, + "poly": [ + 569, + 1667, + 1127, + 1667, + 1127, + 1701, + 569, + 1701 + ], + "score": 0.932 + }, + { + "category_id": 4, + "poly": [ + 293, + 1113, + 1404, + 1113, + 1404, + 1180, + 293, + 1180 + ], + "score": 0.929 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.848 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 857, + 75, + 857, + 105, + 297, + 105 + ], + "score": 0.464 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 857, + 75, + 857, + 105, + 297, + 105 + ], + "score": 0.429 + }, + { + "category_id": 0, + "poly": [ + 300, + 229, + 449, + 229, + 449, + 260, + 300, + 260 + ], + "score": 0.398 + }, + { + "category_id": 15, + "poly": [ + 411.0, + 320.0, + 456.0, + 320.0, + 456.0, + 353.0, + 411.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 307.0, + 637.0, + 307.0, + 637.0, + 339.0, + 560.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 319.0, + 832.0, + 319.0, + 832.0, + 354.0, + 784.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 307.0, + 1009.0, + 307.0, + 1009.0, + 339.0, + 934.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 346.0, + 734.0, + 346.0, + 734.0, + 377.0, + 615.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 338.0, + 1214.0, + 338.0, + 1214.0, + 400.0, + 1189.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 379.0, + 455.0, + 379.0, + 455.0, + 411.0, + 411.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 371.0, + 729.0, + 371.0, + 729.0, + 409.0, + 615.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 379.0, + 828.0, + 379.0, + 828.0, + 413.0, + 785.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 390.0, + 1213.0, + 390.0, + 1213.0, + 424.0, + 1189.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 422.0, + 1212.0, + 422.0, + 1212.0, + 452.0, + 1191.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 436.0, + 456.0, + 436.0, + 456.0, + 534.0, + 388.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 439.0, + 827.0, + 439.0, + 827.0, + 533.0, + 762.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 450.0, + 1213.0, + 450.0, + 1213.0, + 480.0, + 1189.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 477.0, + 1213.0, + 477.0, + 1213.0, + 509.0, + 1189.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 498.0, + 455.0, + 498.0, + 455.0, + 530.0, + 411.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 500.0, + 826.0, + 500.0, + 826.0, + 528.0, + 785.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 507.0, + 1212.0, + 507.0, + 1212.0, + 534.0, + 1191.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 534.0, + 1212.0, + 534.0, + 1212.0, + 562.0, + 1191.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 558.0, + 456.0, + 558.0, + 456.0, + 588.0, + 411.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 556.0, + 830.0, + 556.0, + 830.0, + 588.0, + 786.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 563.0, + 1212.0, + 563.0, + 1212.0, + 591.0, + 1191.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 590.0, + 1212.0, + 590.0, + 1212.0, + 618.0, + 1191.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 617.0, + 830.0, + 617.0, + 830.0, + 649.0, + 786.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 631.0, + 528.0, + 631.0, + 528.0, + 661.0, + 492.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 632.0, + 588.0, + 632.0, + 588.0, + 661.0, + 550.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 632.0, + 645.0, + 632.0, + 645.0, + 661.0, + 608.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 632.0, + 704.0, + 632.0, + 704.0, + 660.0, + 667.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 632.0, + 762.0, + 632.0, + 762.0, + 661.0, + 724.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 634.0, + 836.0, + 634.0, + 836.0, + 658.0, + 816.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 632.0, + 904.0, + 632.0, + 904.0, + 661.0, + 866.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 630.0, + 963.0, + 630.0, + 963.0, + 662.0, + 923.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 630.0, + 1022.0, + 630.0, + 1022.0, + 662.0, + 980.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 632.0, + 1078.0, + 632.0, + 1078.0, + 660.0, + 1040.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 632.0, + 1136.0, + 632.0, + 1136.0, + 661.0, + 1099.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 656.0, + 636.0, + 656.0, + 636.0, + 684.0, + 561.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 654.0, + 1012.0, + 654.0, + 1012.0, + 685.0, + 934.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 700.0, + 455.0, + 700.0, + 455.0, + 731.0, + 402.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 684.0, + 650.0, + 684.0, + 650.0, + 719.0, + 546.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 700.0, + 831.0, + 700.0, + 831.0, + 732.0, + 786.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 687.0, + 1025.0, + 687.0, + 1025.0, + 719.0, + 921.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 737.0, + 454.0, + 737.0, + 454.0, + 768.0, + 402.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 724.0, + 734.0, + 724.0, + 734.0, + 789.0, + 613.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 736.0, + 828.0, + 736.0, + 828.0, + 769.0, + 786.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 715.0, + 1314.0, + 715.0, + 1314.0, + 777.0, + 1187.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 773.0, + 456.0, + 773.0, + 456.0, + 807.0, + 401.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 772.0, + 827.0, + 772.0, + 827.0, + 806.0, + 786.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 771.0, + 1243.0, + 771.0, + 1243.0, + 806.0, + 1187.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 811.0, + 455.0, + 811.0, + 455.0, + 914.0, + 378.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 811.0, + 828.0, + 811.0, + 828.0, + 915.0, + 763.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 802.0, + 1250.0, + 802.0, + 1250.0, + 863.0, + 1187.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 849.0, + 456.0, + 849.0, + 456.0, + 880.0, + 402.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 850.0, + 827.0, + 850.0, + 827.0, + 877.0, + 788.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 853.0, + 1245.0, + 853.0, + 1245.0, + 895.0, + 1187.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 886.0, + 455.0, + 886.0, + 455.0, + 917.0, + 402.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 887.0, + 827.0, + 887.0, + 827.0, + 915.0, + 787.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 881.0, + 1247.0, + 881.0, + 1247.0, + 922.0, + 1187.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 922.0, + 457.0, + 922.0, + 457.0, + 956.0, + 401.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 923.0, + 830.0, + 923.0, + 830.0, + 955.0, + 787.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 910.0, + 1259.0, + 910.0, + 1259.0, + 948.0, + 1188.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 937.0, + 1248.0, + 937.0, + 1248.0, + 977.0, + 1185.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 961.0, + 456.0, + 961.0, + 456.0, + 992.0, + 402.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 962.0, + 828.0, + 962.0, + 828.0, + 990.0, + 788.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 966.0, + 1255.0, + 966.0, + 1255.0, + 1002.0, + 1185.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 1012.0, + 528.0, + 1012.0, + 528.0, + 1041.0, + 492.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1012.0, + 587.0, + 1012.0, + 587.0, + 1041.0, + 550.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 1010.0, + 647.0, + 1010.0, + 647.0, + 1042.0, + 606.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 1012.0, + 705.0, + 1012.0, + 705.0, + 1041.0, + 667.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 1012.0, + 762.0, + 1012.0, + 762.0, + 1041.0, + 724.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 1012.0, + 904.0, + 1012.0, + 904.0, + 1041.0, + 866.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 1011.0, + 961.0, + 1011.0, + 961.0, + 1041.0, + 925.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 1012.0, + 1020.0, + 1012.0, + 1020.0, + 1041.0, + 983.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 1012.0, + 1078.0, + 1012.0, + 1078.0, + 1041.0, + 1042.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1011.0, + 1135.0, + 1011.0, + 1135.0, + 1041.0, + 1100.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 1033.0, + 636.0, + 1033.0, + 636.0, + 1066.0, + 560.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 1033.0, + 1010.0, + 1033.0, + 1010.0, + 1066.0, + 935.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 614.5, + 458.0, + 614.5, + 458.0, + 658.5, + 422.0, + 658.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 990.0, + 463.0, + 990.0, + 463.0, + 1040.0, + 407.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.25, + 994.5, + 833.25, + 994.5, + 833.25, + 1037.5, + 795.25, + 1037.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 1240.0, + 746.0, + 1240.0, + 746.0, + 1273.0, + 655.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 1240.0, + 1144.0, + 1240.0, + 1144.0, + 1272.0, + 1022.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 1255.0, + 581.0, + 1255.0, + 581.0, + 1287.0, + 500.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1255.0, + 963.0, + 1255.0, + 963.0, + 1287.0, + 884.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1290.0, + 961.0, + 1290.0, + 961.0, + 1322.0, + 882.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 1310.0, + 582.0, + 1310.0, + 582.0, + 1343.0, + 500.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 1325.0, + 963.0, + 1325.0, + 963.0, + 1357.0, + 885.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 1365.0, + 582.0, + 1365.0, + 582.0, + 1453.0, + 474.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 1359.0, + 963.0, + 1359.0, + 963.0, + 1455.0, + 856.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 1421.0, + 582.0, + 1421.0, + 582.0, + 1454.0, + 497.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1425.0, + 964.0, + 1425.0, + 964.0, + 1463.0, + 883.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 1476.0, + 581.0, + 1476.0, + 581.0, + 1509.0, + 501.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 1464.0, + 963.0, + 1464.0, + 963.0, + 1496.0, + 885.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 1497.0, + 963.0, + 1497.0, + 963.0, + 1530.0, + 896.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 1554.0, + 585.0, + 1554.0, + 585.0, + 1568.0, + 572.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 1549.0, + 843.0, + 1549.0, + 843.0, + 1573.0, + 593.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1554.0, + 967.0, + 1554.0, + 967.0, + 1568.0, + 955.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 1549.0, + 1225.0, + 1549.0, + 1225.0, + 1573.0, + 980.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 1568.0, + 806.0, + 1568.0, + 806.0, + 1602.0, + 594.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 1568.0, + 1189.0, + 1568.0, + 1189.0, + 1602.0, + 977.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 1662.0, + 1130.0, + 1662.0, + 1130.0, + 1707.0, + 569.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1114.0, + 1405.0, + 1114.0, + 1405.0, + 1150.0, + 295.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1145.0, + 1033.0, + 1145.0, + 1033.0, + 1182.0, + 295.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 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": [ + 297.0, + 226.0, + 453.0, + 226.0, + 453.0, + 266.0, + 297.0, + 266.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/rknt2Be0-/rknt2Be0-.md b/parse/train/rknt2Be0-/rknt2Be0-.md new file mode 100644 index 0000000000000000000000000000000000000000..cefe610208d780a5e4040a1cc52611915eee421b --- /dev/null +++ b/parse/train/rknt2Be0-/rknt2Be0-.md @@ -0,0 +1,340 @@ +# COMPOSITIONAL OBVERTER COMMUNICATION LEARNING FROM RAW VISUAL INPUT + +Edward Choi ∗ +Georgia Institute of Technology +Atlanta, GA, USA +mp2893@gatech.edu +Angeliki Lazaridou & Nando de Freitas +DeepMind +London, UK +{angeliki, nandodefreitas}@google.com + +# ABSTRACT + +One of the distinguishing aspects of human language is its compositionality, which allows us to describe complex environments with limited vocabulary. Previously, it has been shown that neural network agents can learn to communicate in a highly structured, possibly compositional language based on disentangled input (e.g. handengineered features). Humans, however, do not learn to communicate based on well-summarized features. In this work, we train neural agents to simultaneously develop visual perception from raw image pixels, and learn to communicate with a sequence of discrete symbols. The agents play an image description game where the image contains factors such as colors and shapes. We train the agents using the obverter technique where an agent introspects to generate messages that maximize its own understanding. Through qualitative analysis, visualization and a zero-shot test, we show that the agents can develop, out of raw image pixels, a language with compositional properties, given a proper pressure from the environment. + +# 1 INTRODUCTION + +One of the key requirements for artificial general intelligence (AGI) to thrive in the real world is its ability to communicate with humans in natural language. Natural language processing (NLP) has been an active field of research for a long time, and the introduction of deep learning (LeCun et al., 2015) enabled great progress in NLP tasks such as translation, image captioning, text generation and visual question answering (Cho et al., 2014; Bahdanau et al., 2014; Vinyals et al., 2015; Karpathy & Fei-Fei, 2015; Hu et al., 2017; Serban et al., 2016; Lewis et al., 2017; Antol et al., 2015). However, training machines in a supervised manner with a large dataset has its limits when it comes to communication. Supervised methods are effective for capturing statistical associations between discrete symbols (i.e. words, letters). The essence of communication is more than just predicting the most likely word to come next; it is a means to coordinate with others and potentially achieve a common goal (Austin, 1975; Clark, 1996; Wittgenstein, 1953). + +An alternative path to teaching machines the art of communication is to give them a specific task and encourage them to learn how to communicate on their own. This approach will encourage the agents to use languages grounded to task-related entities as well as communicate with other agents, which is one of the ways humans learn to communicate (Bruner, 1981). Recently, there have been several notable works that demonstrated the emergence of communication between neural network agents. Even though each work produced very interesting results of its own, in all cases, communication was either achieved with a single discrete symbol (as opposed to a sequence of discrete symbols) (Foerster et al., 2016; Lazaridou et al., 2017) or via a continuous value (Sukhbaatar et al., 2016; Jorge et al., 2016). Not only is human communication un-differentiable, but also using a single discrete symbol is quite far from natural language communication. One of the key features of human language is its compositional nature; the meaning of a complex expression is determined by its structure and the meanings of its constituents (Frege, 1892). More recently, Mordatch & Abbeel (2017) and Kottur et al. (2017) trained the agents to communicate in grounded, compositional language. In both studies, however, inputs given to the agents were hand-engineered features (disentangled input) rather than raw perceptual signals that we receive as humans. + +In this work, we train neural agents to simultaneously develop visual perception from raw image pixels, and learn to communicate with a sequence of discrete symbols. Unlike previous works, our setup poses greater challenges to the agents since visual understanding and discrete communication have to be induced from scratch in parallel. We place the agents in a two-person image description game, where images contain objects of various color and shape. Inspired by the pioneering work of Batali (1998), we employ a communication philosophy named obverter to train the agents. Having its root in the theory of mind (Premack & Woodruff, 1978) and human language development (Milligan et al., 2007), the obverter technique motivates an agent to search over messages and generate the ones that maximize their own understanding. The contribution of our work can be summarized as follows: + +• We train artificial agents to learn to disentangle raw image pixels and communicate in compositional language at the same time. +• We describe how the obverter technique, a differentiable learning algorithm for discrete communication, could be employed in a communication game with raw visual input. +• We visualize how the agents are perceiving the images and show that they learn to disentangle color and shape without any explicit supervision other than the communication one. +• Experiment results suggest that the agents could develop, out of raw image input, a language with compositional properties, given a proper pressure from the environment (i.e. the image description game). + +Finally, while our exposition follows a multi-agent perspective, it is also possible to interpret our results in the single-agent setting. We are effectively learning a neural network that is able to learn disentangled compositional representations of visual scenes, without any supervision. Subject to the constraints imposed by their environment, our agents learn disentangled concepts, and how to compose these to form new concepts. This is an important milestone in the path to AGI. + +# 2 METHOD + +# 2.1 THE TWO-PERSON IMAGE DESCRIPTION GAME + +![](images/fe848c0db6f5de8bab346ead880e705a22d31e75c43a4509f5ea6f47130e08f7.jpg) +Figure 1: The two-person image description game. Speaker observes an image and generates a message (i.e. a sequence of discrete symbols). The listener, after observing a separate image and the message, must correctly decide whether it is seeing the same object as the speaker (left side; output 1) or not (right side; output 0). + +![](images/b0f08c116783796164e0f37b02eb2fea29ddc93f0d918fda9b7fa3e6ebcdda8e.jpg) +Figure 2: Example images of the dataset. There are eight colors (blue, red, white, gray, yellow, green, cyan, magenta), and five shapes (box, sphere, cylinder, capsule, ellipsoid), giving us total 40 combinations. + +We choose a straightforward image description game with two factors (color and shape) so that we can perform extensive analysis on the outcome confidently, based on full control of the experiment. In a single round of the two-person image description game, one agent becomes the speaker and the other the listener. The speaker is given a random image, and generates a message to describe it. The listener is also given a random image, possibly the same image as the speaker’s. After hearing the message from the speaker, the listener must decide if it is seeing the same object as the speaker (Figure 1). Note that an image is the raw pixels given to the agents, and an object is the thing described by the image. Therefore two different images can depict the same object. In each round the agents change roles of being the speaker and the listener. + +We generated synthetic images using Mujoco physics simulator1. The example images are shown in Figure 2. Each image depicts a single object with a specific color and shape in $1 2 8 \times 1 2 8$ resolution. There are eight colors (blue, red, white, gray, yellow, green, cyan, magenta) and five shapes (box, sphere, cylinder, capsule, ellipsoid), giving us 40 combinations. We generated 100 variations for each of the 40 object type. Note that the position of the object varies in each image, changing the object size and the orientation. Therefore even if the speaker and the listener are given the same object type, the actual images are very likely to be different, preventing the agents from using pixel-specific information, rather than object-related information to win the game. + +# 2.2 MODEL ARCHITECTURE + +![](images/7902c027c72b5a000bf12271e28b3cfff9c03cda8af5899e656377dae25107a7.jpg) +Figure 3: Agent model architecture. The visual module processes the image, and the language module generates or consumes messages. The decision module accepts embeddings from both modules and produces the output. The solid arrows indicate modifying the output from the previous layer. The dotted arrows indicate copying the output from the previous layer. + +Aside from using disentangled input, another strong assumption made in previous works(Batali, 1998; Mordatch & Abbeel, 2017) was that the agents had access to the true intention of the speaker. In Batali (1998), the listener was trained to modify its RNN hidden vector as closely to the speaker’s intention (meaning vector; please see Table 5 in Appendix A) as possible. In Mordatch & Abbeel (2017), each agent had an auxiliary task to predict the goals of all other agents. In both cases, the true meaning/goal vector was used to update the model parameters, exposing the disentangled information to the agents. In order to relax this assumption and encourage the agents to develop communication with minimal guidance, our model uses no other signal than whether the listener made a correct decision. + +Figure 3 depicts the agent model architecture. We use a convolutional neural network followed by a fully-connected layer to process the image. A single RNN, specifically the gated recurrent units (GRU) (Cho et al., 2014), is used for both generating and consuming messages (the message generation using the obverter strategy is described in the next section). When consuming a message, the image embedding from the visual module and the message embedding from the language module are concatenated and processed by another fully-connected layers (i.e. decision module) with the sigmoid output $\hat { y }$ , 0 being “My (listener) image is different from the speaker’s” and 1 being “My image is the same as the speaker’s”. Further details of the model architecture (e.g. number of layers) are described in Appendix C. + +# 2.3 OBVERTER TECHNIQUE + +Although our work is inspired by Batali (1998) (see Appendix A for the description of Batali (1998)), obverter technique is a general message generation philosophy used/discussed in a number of communication and language evolution studies (Hurford, 1989; Oliphant & Batali, 1997; Smith, 2001; Kirby & Hurford, 2002), which has its root in the theory of mind. Theory of mind (Premack & Woodruff, 1978) observes that a human has direct access only to one’s own mind and not to the others’. Therefore we typically assume that the mind of others is analogous to ours, and such assumption is reflected in the functional use of language (Bruner, 1981). For example, if we want to convey a piece of information to the listener2, it is best to speak in a way that maximizes the listener’s understanding. However, since we cannot directly observe the listener’s state of mind, we cannot exactly solve this optimization problem. Therefore we posit that the listener’s mind operates in a similar manner as ours, and speak in a way that maximizes our understanding, thus approximately solving the optimization problem. This is exactly what the obverter technique tries to achieve. + +When an agent becomes the teacher (i.e. speaker), the model parameters are fixed. The image is converted to an embedding via the visual module. After initializing its RNN hidden layer to zeros, the teacher at each timestep evaluates $\hat { y }$ for all possible symbols and selects the one that maximizes $\hat { y }$ The RNN hidden vector induced by the chosen symbol is used in the next timestep. This is repeated until $\hat { y }$ becomes bigger than the predefined threshold, or the maximum message length is reached (see Appendix D for algorithm). Therefore the teacher, through introspection, greedily selects characters at each timestep to generate a message such that the consistency between the image and the message is as clear to itself as possible. When an agent becomes the learner (i.e. listener), its parameters are updated via back-propagating the cross entropy loss between its output $\hat { y }$ and the true label $y$ . Therefore the agents must learn to communicate only from the true label indicating whether the teacher and the learner are seeing the same object. + +We remind the reader that only the learner’s RNN parameters are updated, and the teacher uses its fixed RNN. Therefore an agent uses only one RNN for both speaking and listening, guaranteeing self-consistency (see Appendix B for a detailed comparison between the obverter technique and the RL-based approach). Furthermore, because the teacher’s parameters are fixed, message generation can easily be extended to be more exploratory. Although in this work we deterministically selected a character in each timestep, one can, for example, sample characters proportionally to $\hat { y }$ and still use gradient descent for training the agents. Using a more exploratory message generation strategy could help us discover a more optimal communication language when dealing with complex tasks. + +Another feature of the obverter technique is that it observes the principle of least effort (Zipf, 1949). Because the teacher stops generating symbols as soon as $\hat { y }$ reaches the threshold, it does not waste any more effort trying to perfect the message. The same principle was implemented in one way or another in previous works, such as choosing the shortest among the generated strings (Kirby & Hurford, 2002) or imposing a small cost for generating a message (Mordatch & Abbeel, 2017). + +# 2.4 ENVIRONMENTAL PRESSURE FOR COMPOSITIONAL COMMUNICATION + +During the early stages of research, we noticed that randomly sampling object pairs (one for the teacher, one for the learner) lead to agents focusing only on colors and ignoring shapes. When the teacher’s object is fixed, there are 40 (8 colors $\times 5$ shapes) possibilities on the learner’s side. If the teacher only talks about the color of the object, the learner can correctly decide for 36 out of 40 possible object types. The learner makes incorrect decisions only when the teacher and the learner are given objects of the same color but different shapes, resulting in $9 0 \%$ accuracy on average. This is actually what we observed; the accuracy plateaued between 0.9 and 0.92 during the training, and the messages were more or less the same for objects with the same color. Therefore when constructing a mini-batch of images, we set $2 5 \%$ to be the object pairs of the same color and shape, $30 \%$ the same shape but different colors, $20 \%$ the same color but different shapes. The remaining $2 5 \%$ object pairs were picked randomly3. + +Vocabulary size (i.e. number of unique symbols) and the maximum message length were also influential to the final outcome. We noticed that a larger vocabulary and a longer message length helped the agents achieve a high communication accuracy more easily. But the resulting messages were more challenging to analyze for compositional patterns. In all our experiments we used 5 and 20 respectively for the vocabulary size and the maximum message length, similar to what Batali (1998) used. This suggests that the environment plays as important, if not more, role as the model architecture in the emergence of complex communication as discussed by previous studies (Kirby et al., 2014; Bratman et al., 2010; Kottur et al., 2017) and should be a main consideration for future efforts. Further details regarding hyperparameters are described in Appendix E. + +# 3 EXPERIMENTS + +In this section, we first study the convergence behavior during the training phase. Then we analyze the language developed by the agents in terms of compositionality. As stated in the introduction, in compositional language, the meaning of a complex expression is determined by its structure and the meanings of its constituents. With this definition in mind, we focus on two aspects of the inter-agent communication to evaluate its compositional properties: the structure (i.e. grammar) of the communication, and zero-shot performance (i.e. generalizing to novel stimuli). These two aspects, which are both necessary conditions for any language to be considered compositional, have been used by previous works to study the compositional nature of artificial communication (Batali, 1998; Mordatch & Abbeel, 2017; Kottur et al., 2017). + +To evaluate the structure of the messages, we study the evolution of the communication as training proceeds, and try to derive a grammar for expressing colors and shapes. To evaluate the zero-shot capabilities, we test if the agents can compose consistent messages for objects they have not seen during the training. Moreover, we visualize the image embeddings from the visual modules of both agents to understand how they are recognizing colors and shapes, the results of which, for a better view of the figures, are provided in Appendix H. + +# 3.1 CONVERGENCE BEHAVIOR + +![](images/e4918ef563341b6e90dc729d2d56d92b62fe35943fcf79abaaa0650a641662d6.jpg) +Figure 4: Progress during the training (best seen in color). (Top) We plot the training accuracy, training loss, average message length and average message distinctness in each round. (Bottom) We plot the perplexities and the Jaccard similarity of the messages spoken by both agents in each round. Note that the average message length and the perplexities are divided by 20 to match the y-axis range with other metrics. + +Figure 4 shows the convergence behavior during the training. Training accuracy was calculated by rounding the learner’s sigmoid output by 0.5. Message distinctness was calculated by dividing the number of unique messages in the mini-batch by the size of the mini-batch. Ideally there should be, on average, 40 distinct messages in the mini-batch of 50 images, therefore giving us 0.8 distinctness. Every 10 round, both agents were given the same 1, 000 randomly sampled images to generate 1, 000 message pairs. Then perplexity was calculated for each object type and averaged, thus indicating the average number of distinct messages used by the agents to describe a single object type (note that perplexities in the plot was divided by 20). Jaccard similarity between both agents’ messages was also calculated for each object type and averaged. + +At the beginning, the listener (i.e. learner) always decides it is not seeing the same object as the speaker, giving us 0.75 accuracy4. But after 7, 000 rounds, accuracy starts to go beyond 0.9. Loss is negatively correlated with accuracy until round 15, 000, where it starts to fluctuate. Accuracy, however, remains high due to how accuracy is measured; by rounding the learner’s output by 0.5. Although we could occasionally observe some patterns in the messages when both accuracy and loss were high, a lower loss generally resulted in a clearer communication structure (i.e. grammar) and better zero-shot performance. The loss fluctuation also indicates some instability in the training process, which is a potential direction for future work. Message distinctness starts at near 0, indicating the agents are generating the same message for all object types. After round 7, 000, where both message distinctness and message length reach their maximum, both start to decrease. But message distinctness never goes as high as the ideal 0.8, meaning that the agents are occasionally using the same message for different object types, as will be shown in the following section. + +Both perplexities and Jaccard similarity show seemingly meaningless fluctuation at early rounds. After round 7, 000, perplexities and Jaccard similarity show negatively correlated behavior, meaning that not only is each agent using consistent messages to describe each object type, but also both agents are using very similar messages to describe each object type. We found perplexity and Jaccard similarity to be an important indicator of the degree of the communication structure. During rounds $7 , 0 0 0 \sim 8 , 0 0 0$ , performance was excellent in terms of loss and accuracy, but perplexity was high and Jaccard similarity low, indicating the agents were assigning incoherent strings to each object type just to win the game. Similar behavior was observed in the early stages of language evolution simulation in Kirby & Hurford (2002) where words represented some meanings but had no structure (i.e. protolanguage). It seems that artificial communication acquires compositional properties after the emergence of protolanguage regardless of whether the input is entangled or disentangled. + +# 3.2 GRAMMAR ANALYSIS + +We choose agents from different training rounds to highlight how the language becomes more structured over time. Table 1 shows agents’ messages in the beginning (round 40), when the training accuracy starts pushing beyond $9 0 \%$ (round 6, 940), when agents settle on a common language (round 16, 760). + +In round 40, both agents are respectively producing the same message for all object types as mentioned in section 3.1. We might say the messages are structured, but considering that the listener always answers 0 in early rounds, we cannot say the agents are communicating. In round 6, 940, which is roughly when the agents begin to communicate more efficiently, training accuracy is significantly higher than round 40. However, perplexities show that both agents are assigning many names to a single object type (40-80 names depending on the object type), indicating that the agents are focusing on pixel-level differences between images of the same object type. Table 1 shows, as an example, the messages used by both agents to describe the red sphere. Due to high perplexity, it is difficult to capture the underlying grammar of the messages even with regular expression. Furthermore, as Jaccard similarity indicates, both agents are generating completely different messages for the same object type. In round 16, 760, as the perplexities and Jaccard similarity tell us, the agents came to share a very narrow set of names for each object type (1-4 names depending on the object type). Moreover, the names of the same-colored objects and same-shaped objects clearly seem to follow a pattern. Overall, each of the three phases (round 40, round 6,940, round 16,760) seem to represent the development of visual perception, learning to communicate, and emergence of structure. + +We found the messages in round 16, 760 could be decomposed in a similar manner as Table 6 in Appendix A. The top of Table 2 shows a possible decomposition of the messages from round 16, 760 and the bottom shows the rules for each color and shape derived from the decomposition. According to our analysis, the agents use the first part of the message (i.e. prefix) to specify a shape, and the second part (i.e. suffix) to specify a color. However, they use two different strings to specify a shape. For example, the agents use either aaaa or bbbbb to describe a box. The strings used for specifying colors show slightly weaker regularity. For example, red is always described by either the suffix c or suffix e, but magenta is described by the suffix bb, bd, and sometimes b or bc. a used for ¯ gray objects + +Round 40 (Training accuracy: $6 6 . 1 \%$ , Agent0 perplexity:1.0, Agent1 perplexity:1.0, Jaccard similarity:0.0) + +
All objectsdescribed by Agent 0All objectsdescribed byAgent1
Messageddddddddddddddddddddbbbbbbbbbbbbbbbbbbbb
+ +# Round 6,940 + +(Training accuracy: $9 3 . 1 \%$ , Agent0 perplexity:9.90, Agent1 perplexity:17.73, Jaccard similarity:0.0) + +
Redsphere described byagent 0Redspheredescribedbyagent1
Messagesaeceaeaeaaaeeeeeeeeeaaedacacaaaaaaaaaaaa
aacceeaaaaeeeeeeeeeeaaccdaacaaaaaaaaaaaa
aaccceaaaaaaaaeeeeeeaaabcdadaaaaaaaaaaaa
aeeeeaaaaeeeeeeeeeeeaaeeacaeaaaaaaaaaaaa
aeaceeaeaeeeeeeeeeeeaaccdadaaaaaaacaaaaa
aceacacaaaaaaeeeeeeeaaedaceaaaaaaaaaaaaa
abeeeeaeeeeeeeeeeeeeaaeaccaeaaaaaaaaaaaa
aacceeaeeeeeeeeeeeeeaaceacaacaaaaaaaaaaa
aacceeaeaaeeeeeeeeeeaacdacdaaaaaaaaaaaaa
aeeacacaaaeeccceeeeeaaccdadaaaaacaaaaaaa
+ +Round 16,760 (Training accuracy: $9 8 . 0 \%$ , Agent0 perplexity:1.69, Agent1 perplexity:1.62, Jaccard similarity:0.82) +Table 1: (Top) Messages used by both agents when speaking about any object in round 40. (Middle) Ten most frequent messages used by each agent to describe a red sphere in round 6, 940. (Bottom) Messages most often used by both agents for each object type in round 16, 760. Brackets indicate the variation often seen at the last character. Underscores indicate blanks. + +
:BoxSphereCylinderCapsuleEllipsoid
Bluebbbbbbb{b.d}bb{b,d}bbbbbb{b,d}bbbbb{c,d}bbbb{-,c,d}
Red Whiteaaaa{c,e}aa{c,e}aaa{c,e}a{c,e}c,e
bbbbbbb,dbbbb{b,d}bbb{b.d}bb{-,c,d}
GrayaaaaaaCb,bd
Yellowaaaaaaaaaaaaaaaaaaa{a,e}
Greenaaaa{a,ad}aa{a,ad}aaa{a.ad}a{a,ad}a
Cyanax20bbb{b,d}bbbbbbb{b,d}bbbbbbdbbbbb{b.d}
Magentabbbbbbbb{b.dbbbbb{b,d}bbbbdbbb{-.c,d}
+ +represents deletion of the prefix a. Note that removing prefixes beyond their length causes the pattern to break. For example, gray box, gray sphere and gray cylinder use the same a¯aa to express the color, ¯ but gray capsule and gray ellipsoid use irregular suffixes. + +Despite some irregularities and one exceptional case (cyan box), the messages provide strong evidence that the agents learned to properly recognize color and shape from raw pixel input (see Appendix H for studying what the visual module learned), mapped each color and shape to prefixes and suffixes, and are able to compose meaningful messages to describe a given image to one another. Communication accuracy for each object type is described in Appendix F. Communication examples and their analysis are given in Appendix G. + +# 3.3 ZERO-SHOT EVALUATION + +If the agents have truly learned to compose a message that can be divided into a color part and a shape part, then they should be able to accurately describe an object they have not seen before, which is another necessary condition for a compositional language. Therefore, we hold out five objects (the shaded cells in Table 3) from the dataset during the training and observe how agents describe five novel objects during the test phase. The agents were chosen from round 19, 980, which showed a high accuracy $( 9 7 . 8 \% )$ , low perplexities (1.48, 1.65) and a high Jaccard similarity (0.75). Table 3 shows a potential decomposition of the messages used by the agents (original messages are described by Table 8 in Appendix I). We can observe that there is clearly a structure in the communication, although some messages show somewhat weaker patterns compared to when the agents were trained with all object types (Table 2). Suffixes for specifying yellow and magenta are especially irregular, even when we consider the effects of b and ¯ e. However, the messages describing the held-out object ¯ types show clear structure with the exception of yellow ellipsoid. + +
BoxSphereCylinderCapsuleEllipsoid
Blue Redbbbbb bb{b,d} aaaa {c,e}bb{b,d} aa {c,e}bbbb bb{b.d} aaa {c,e}bbb bb{c,d} a{c,e}bb bb{-.c,d} {c,e}
Whitebbbbbb{b.d}bbbb{b.d}bbb {b.d}bb{-c,d}
Grayaaaa aaaaa aaaaaa aaaa aacaa{b,bd}
Yellow
aaaa aaaaaaaaaaaaaaa{ae}
Greenaaaa {a,ad}aa {a,ad}aaa {a,ad}a{a,ad}a
Cyana×20bbb{b,d}bbbb bbb{b,d}bbb bbbdbb bbb{b.d}
Magentabbbbbbbb{b,d}bbbbb{b.d}bbb bdbbb{-c,d}
+ +Define Blue, White, Cyan, Magenta as color group 0, rest as color group 1. + +
Rule
BlueEnd with bbb or bbdEnd with c or eEnd with b or dEnd with aaaEnd with aaEnd with a or adEnd with bbbb or bbbdEnd with bb or bd
RedWhite
GrayGrayYellowGreenCyanMagenta
BoxSphereCylinderCapsuleEllipsoidStart with bbbbb for color group O, start with aaaa for color group 1Start with aa for color group 1Start with bbbb for color group O, start with aaa for color group 1Start with bbb for color group O,start with a for color group 1Start with bb for color group 0
+ +Table 2: (Top) Potential composition analysis of the messages from round 16,760 (bottom of Table 1). Italic symbols are used to specify shapes and roman symbols are used to specify colors. a indicates ¯ deleting a single prefix a. (Bottom) Rules for each color and shape derived from the top table. +Table 3: Potential analysis of the messages observed in the zero-shot test. Gray cells indicate object types unseen during the training phase. Italic symbols are used to specify shapes and roman symbols to specify colors. b indicates deleting a single prefix¯ $b$ . e indicates deleting a single prefix ¯ $e$ . Underscores indicate blanks. + +
BoxSphereCylinderCapsuleEllipsoid
BlueRedWhiteGrayYellowGreeneeeeee e{e,ee}eeeeeeeeeee e{e,ed}eeeee eeee{e,a}eee e{e,ed}eee eeee{b,ba}bb {b.d}eee{e,a}ee eeee{a,c}bbb {d.c}ee eee{b.d}
eeeeee eeee{e.a}bbbbbeeeeeeeeeebbbb bb{c,d}eeeeee {e,a}eeee eeee{e,ea}eeee
bb
eeee eee{-,a}eeeee eee{e,a}eee eee{e,a}
bbbe{e,ec}eeee {e,a}eeee ee{e,a}bb{c.d
bbb bb{c,d}eeeee {e,a}eeeee ee{e,ea}bbbb{b.d}bb bb{a.c}eee{e,a}bbb bb{a,e}
eee{e,a}eee ee{e,a}bb bbee {e,a}ee eeabbb bb{c.a}
CyanMagentaeeeeee eeeabbbb b{b.d}
+ +In order to assess the communication accuracy when held-out objects are involved, we conducted another test with the agents from round 19, 980. Each held-out object was given to the speaker, the listener, or both. In the first two cases, the held-out object was paired with all 40 object types and each pair was tested 10 times. In the last case, the held-out object was tested against itself 10 times. In all cases, the agents switched roles after 5 times. Table 4 shows communication accuracies for each case. We can see the agents can successfully communicate most of the time even when given novel objects. The last column shows that the listener is not simply producing 0 to maximize its chance to win the game. It is also notable that the objects described without $\bar { \mathsf b }$ or e show better performance in general. ¯ We noticed the communication accuracy for held-out objects seems relatively weak considering the messages used to describe them strongly showed structure. (Table 3). This, however, results from the grammar (i.e. structure) being not as straightforward as Table 2, especially with short messages (i.e. frequent use of $\bar { \mathsf b }$ and e). The same tendency can be observed for non-held-out objects as described ¯ by the per-object communication accuracy Table 9 in Appendix J. + +Table 4: Communication accuracy when agents were given objects not seen during the training. + +
Given to speakerGiven to listenerGiven to both
BlueBox0.970.971.00
Red Sphere0.920.910.80
White Cylinder0.950.950.90
Gray Capsule0.910.911.00
Yellow Ellipsoid0.910.901.00
+ +From the grammar analysis in the previous section, we have shown that the emerged language strongly follows a well-defined grammar. In the zero-shot test, the agents demonstrated that they can successfully describe novel object, although not perfectly, by also following a similar grammar. Both are, as stated in the beginning of section 3, necessary conditions for any communication to be considered compositional. Therefore we can safely conclude that the emerged language in this work possesses some qualifications to be considered compositional. + +# 4 DISCUSSION + +In this work, we used the obverter technique to train neural network agents to communicate in a two-person image description game. Through qualitative analysis, visualization and the zero-shot test, we have shown that even though the agents receive raw perception in the form of image pixels, under the right environment pressures, the emerged language had properties consistent with the ones found in compositional languages. + +As an evaluation strategy, we followed previous works and focused on assessing the necessary conditions of compositional languages. However, the exact definition of compositional language is still somewhat debatable, and, to the best of our knowledge, there is no reliable way to mathematically quantify the degree of compositionality of an arbitrary language. Therefore, in order to encourage active research and discussion among researchers in this domain, we propose for future work, a quantitatively measurable definition of compositionality. We believe compositionality of a language is not binary (e.g. language A is compositional/not compositional), but a spectrum. For example, human language has some aspects that are compositional (e.g., syntactic constructions, most morphological combinations) and some that are not (e.g., irregular verb tenses in English, character-level word composition). It is also important to clearly define grounded language and compositional language. If one agent says abc (eat red apple) and another says cba (apple red eat), and they both understand each other, are they speaking compositional language? We believe such questions should be asked and addressed to shape the definition of compositionality. + +In addition to the definition/evaluation of compositional languages, there are numerous directions of future work. Observing the emergence of a compositional language among more than two agents is an apparent next step. Designing an environment to motivate the agents to disentangle more than two factors is also an interesting direction. Training agents to consider the context (i.e. pragmatics), such as giving each agent several images instead of one, is another exciting future work. + +# ACKNOWLEDGMENTS + +We would like to thank Scott Reed for discussions on pragmatics, Tom Le Paine for advising the visual module architecture, Jakob Foerster for discussions on grammar induction, Sookyung Kim and Joonseok Lee for discussions on human language and compositionality, Phil Blunsom and Jimeng Sun for helpful comments on the manuscript. + +# REFERENCES + +Stanislaw Antol, Aishwarya Agrawal, Jiasen Lu, Margaret Mitchell, Dhruv Batra, C Lawrence Zitnick, and Devi Parikh. Vqa: Visual question answering. In Proceedings of the IEEE International Conference on Computer Vision, pp. 2425–2433, 2015. + +John Langshaw Austin. How to do things with words. Oxford university press, 1975. + +Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly learning to align and translate. In ICLR, 2014. + +John Batali. Computational simulations of the emergence of grammar. Approaches to the evolution of language: Social and cognitive bases, 405:426, 1998. + +Jeshua Bratman, Michael Shvartsman, Richard L Lewis, and Satinder Singh. A new approach to exploring language emergence as boundedly optimal control in the face of environmental and cognitive constraints. In International Conference on Cognitive Modeling, pp. 7–12, 2010. + +Jerome S Bruner. Intention in the structure of action and interaction. Advances in infancy research, 1981. + +Kyunghyun Cho, Bart Van Merrienboer, Caglar Gulcehre, Dzmitry Bahdanau, Fethi Bougares, Holger ¨ Schwenk, and Yoshua Bengio. Learning phrase representations using rnn encoder-decoder for statistical machine translation. In EMNLP, 2014. + +Herbert H Clark. Using language. Cambridge university press, 1996. + +Jakob Foerster, Yannis M Assael, Nando de Freitas, and Shimon Whiteson. Learning to communicate with deep multi-agent reinforcement learning. In NIPS, pp. 2137–2145, 2016. + +Gottlob Frege. Zeitschrift fur philosophie und philosophische kritik. ¨ NF, 100:25–50, 1892. + +Zhiting Hu, Zichao Yang, Xiaodan Liang, Ruslan Salakhutdinov, and Eric P Xing. Toward controlled generation of text. In ICML, pp. 1587–1596, 2017. + +James R Hurford. Biological evolution of the saussurean sign as a component of the language acquisition device. Lingua, 77(2):187–222, 1989. + +Emilio Jorge, Mikael Kageb ˚ ack, and Emil Gustavsson. Learning to play guess who? and inventing a ¨ grounded language as a consequence. arXiv preprint arXiv:1611.03218, 2016. + +Andrej Karpathy and Li Fei-Fei. Deep visual-semantic alignments for generating image descriptions. In CVPR, pp. 3128–3137, 2015. + +Simon Kirby and James R Hurford. The emergence of linguistic structure: An overview of the iterated learning model. In Simulating the evolution of language, pp. 121–147. Springer, 2002. + +Simon Kirby, Tom Griffiths, and Kenny Smith. Iterated learning and the evolution of language. Current opinion in neurobiology, 28:108–114, 2014. + +Satwik Kottur, Jose MF Moura, Stefan Lee, and Dhruv Batra. Natural language does not ´ emerge’naturally’in multi-agent dialog. In EMNLP, 2017. + +Angeliki Lazaridou, Alexander Peysakhovich, and Marco Baroni. Multi-agent cooperation and the emergence of (natural) language. In ICLR, 2017. + +Yann LeCun, Yoshua Bengio, and Geoffrey Hinton. Deep learning. Nature, 521(7553):436–444, 2015. + +Mike Lewis, Denis Yarats, Yann N Dauphin, Devi Parikh, and Dhruv Batra. Deal or no deal? end-to-end learning for negotiation dialogues. arXiv preprint arXiv:1706.05125, 2017. + +Laurens van der Maaten and Geoffrey Hinton. Visualizing data using t-sne. Journal of Machine Learning Research, 9(Nov):2579–2605, 2008. + +Karen Milligan, Janet Wilde Astington, and Lisa Ain Dack. Language and theory of mind: metaanalysis of the relation between language ability and false-belief understanding. Child development, 78(2):622–646, 2007. + +Igor Mordatch and Pieter Abbeel. Emergence of grounded compositional language in multi-agent populations. arXiv preprint arXiv:1703.04908, 2017. + +Michael Oliphant and John Batali. Learning and the emergence of coordinated communication. Center for research on language newsletter, 11(1):1–46, 1997. + +David Premack and Guy Woodruff. Does the chimpanzee have a theory of mind? Behavioral and brain sciences, 1(4):515–526, 1978. + +Iulian Vlad Serban, Alessandro Sordoni, Yoshua Bengio, Aaron C Courville, and Joelle Pineau. Building end-to-end dialogue systems using generative hierarchical neural network models. In AAAI, 2016. + +Andrew Smith. Establishing communication systems without explicit meaning transmission. Advances in artificial life, pp. 381–390, 2001. + +Sainbayar Sukhbaatar, Rob Fergus, et al. Learning multiagent communication with backpropagation. In NIPS, pp. 2244–2252, 2016. + +Oriol Vinyals, Alexander Toshev, Samy Bengio, and Dumitru Erhan. Show and tell: A neural image caption generator. In CVPR, pp. 3156–3164, 2015. + +Ludwig Wittgenstein. Philosophical investigations. Blackwell, Oxford, UK, 1953. + +George Kingsley Zipf. Human behavior and the principle of least effort. Addison-Wesley, 1949. + +![](images/81623d6fa1690cf173bcc5d807c2fd91fc367f71b2d863a4604fa77be6c9f3a2.jpg) +Table 5: Meaning vectors are composed of (a) subject vectors and (b) predicate vectors. (c) shows 10 out of 100 possible meaning vectors. + +# A EMERGENCE OF GRAMMAR, BATALI (1998) + +In Batali (1998), the author successfully trained neural agents to develop a structured (i.e. grammatical) language using disentangled meaning vectors as the input. Using 10 subject vectors and 10 predicate vectors, all represented as explicit binary vectors, total 100 meaning vectors could be composed(Table 5). Each digit in the subject vector 5a serves a clear role, respectively representing speaker $( s p )$ , hearer $( h r )$ , other $( o t )$ , and plural $( p l )$ . The predicate vector values, on the other hand, are randomly chosen so that each predicate vector will have three 1’s and three 0’s. The combination of ten subject vectors and ten predicate vectors allows 100 meaning vectors. + +The author used twenty neural agents for the experiment. Each agent was implemented with the vanilla recurrent neural networks (RNN), where the hidden vector h’s size was 10, same as the size of the meaning vector m in order to treat h as the agent’s understanding of m. In each training round a single learner (i.e. listener) and ten teachers (i.e. speaker) were randomly chosen. Each teacher, given all $1 0 0 \mathbf { m }$ ’s in random order, generates a message $\mathbf { s } ^ { 5 }$ for each $\mathbf { m }$ and sends it to the learner. The messages are generated using the obverter techinque, which is described in Algorithm 1. The learner is trained to minimize the mean squared error (MSE) between $\mathbf { h }$ (after consuming the s) and m. After the learner has learned from all ten teachers, the next round begins, repeating the process until the error goes below some threshold. + +1 $\mathbf { h } ^ { ( 0 ) } = \mathbf { 0 }$ //Initialize RNN hidden layer with zeros; +2 $\mathbf { s } = \left[ \mathbf { \epsilon } \right]$ //Initialize the message vector; +3 $t = 0$ //Timestep index; +4 $\mathbf { V } = \mathbf { I } \in \mathbb { R } ^ { 4 \times 4 }$ //Each row $\mathbf { v } _ { 0 } , \mathbf { v } _ { 1 } , \mathbf { v } _ { 2 } , \mathbf { v } _ { 3 }$ corresponds to $a , b , c , d$ ; +5 while $| \mathbf { s } | < m a x$ message length do +6 $\mathbf { h } _ { \mathbf { v } _ { i } } ^ { ( t ) } = \sigma ( \mathbf { v } _ { i } \mathbf { W } _ { i } + \mathbf { h } ^ { ( t - 1 ) } \mathbf { W } _ { h } + \mathbf { b } )$ ; +7 $i = \mathrm { a r g m i n } _ { i } \vert \vert \mathbf { m } - \mathbf { h } _ { \mathbf { v } _ { i } } ^ { ( t ) } \vert \vert ^ { 2 }$ ; +8 $\mathbf { h } ^ { ( t ) } = \mathbf { h } _ { \mathbf { v } _ { i } } ^ { ( t ) }$ ; +9 Append $i$ to s; +10 if $| | \mathbf { m } - \mathbf { h } ^ { ( t ) } | | ^ { 2 } < t h r e s h o l d \mathbf { t } 1$ hen +11 Terminate; + +When the training was complete, the author was able to find strong patterns in the messages used by the agents (Table 6). Note that the messages using predicates tired, scared, sick and happy especially follow a very clear pattern. Batali also conducted a zero-shot test where the agents were trained without the diagonal elements in Table 6 and tested with all 100 meaning vectors. The agents were able to successfully communicate even when held-out meaning vectors were used, but the + +
=onetheyyouyallyupmewemipyumiall
tiredcdacdabcdccdcbcdbacdcddcddbcdcdcdb
scaredcaacaabcaccacbcabacacadcadbcacdcab
sickdaadaabdacdacbdabadadaddadbdacddab
happy sadbaabaab ababbcabcabbaacbabadcbabbacbabc
excitedaba cbacbabacacb cacbabac cbcaaabdc ccdcabbabcabbc
angrybbbbbcca bcccbccbcbc
bcbbbcbbddcbdbbdcbdbc
sillyaaaaabacaacabadbaaddaddcadadadcadbc
thirstydbaadbabdcadcbadbcaddaddacdbaddcaddbacd
hungrydbbdbbddcdcbdbcddddcdbddcddbcd
+ +
-onetheyyouyallyupmewemipyumiall
tiredcdacdabcdccdcbcdbacdcddcddbcdcdcdb
scaredcaacaabcaccacbcabacacadcadbcacdcab
sickdaadaabdacdacbdabadadaddadbdacddab
happybaabaabbcabcabbaacbabadcbabbacbabc
sad excitedabaababacacbabacaabdcabbabcabbc
cbacbabccacacbcbcaCccdccbccbcbc
angrycbcbbCCccbcbcCcddccdbcdccdbc
silly(aa)(aaab)(aca)(acab)adbaaddaddcadadadcadbc
thirstydbaadbabdcadcbadbcaddaddacdbaddcaddbacd
hungrydbbdbbddcdcbdbcddddcdbddcddbcd
+ +Table 6: (Top) Messages used by a majority of the population for each of the given meanings. (Bottom) A potential analysis of the system in terms of a root plus modifications. Italic symbols are used to specify predicates and roman symbols are used to specify subjects. Messages in parentheses cannot be made to fit into this analysis. + +messages used for the held-out meaning vectors did not show as strong compositional patterns as the non-zero-shot case. + +# B COMPARISON BETWEEN THE OBVERTER TECHINQUE AND THEREINFORCEMENT LEARNING-BASED APPROACH + +The obverter technique allows us to generate messages that encourage the agents to use a shared language, even a highly structured one, via using a single RNN for both speaking and listening. + +This is quite different from other RL-based related works (Lazaridou et al., 2017; Mordatch & Abbeel, 2017; Foerster et al., 2016; Jorge et al., 2016; Kottur et al., 2017) where each agent has separate components (e.g. two RNNs) for generating messages and consuming messages. This is necessary typically because the message generation module and the message consumption module have different input/output requirements. The message generation module accepts some input related to the task (e.g. goal description vector, question embedding, or image embedding) and generates discrete symbols. The message consumption module, on the other hand, accepts discrete symbols (i.e. the message) and generates some output related to the task (e.g. some prediction or some action to take). Therefore, when a neural agent speaks in the RL-based approach, its message generation process is completely separated from its own listening process, but tied to the listening process of another agent (i.e. listener)6. This means an agent may not have internal consistency; what an agent speaks may not make sense to itself. However, agents in the RL-based setting do converge on a common language because, during the training, the error signal flows from the listener to the speaker directly. + +Obverter approach, on the other hand, requires that each agent has a single component for both message generation and message consumption. This single component accepts discrete symbols and generates some output related to the task. This guarantees internal consistency because an agent’s message generation process is tied to its own message consumption process; it will only generate messages that make sense to itself. In the obverter setting, the error signal does not flow between agents directly, but agents converge on a common language by taking turns to be the listener; the listener tries to understand what the speaker says, so that when the listener becomes the speaker, it can generate messages that make sense to itself and, at the same time, will be understood by the former speaker (now listener). + +The advantage of obverter approach over RL-based approach is that it is motivated by the theory of mind and more resembles the acquisition/development process of human language. Having a single mechanism for both speaking and listening, and training oneself to be a good listener leads to the emergence of self-consistent, shared language. However, obverter technique requires that all agents perform the same task, which means all agents must have identical model architectures. This is because, during the message generation process, the speaker internally simulates what the listener will go though when it hears the message. Therefore we cannot play an asymmetrical game such as where the speaker sees only one image and generates a message but the listener is given multiple images and must choose one after hearing the message. RL-based approaches do not have this problem since there are separate modules for speaking and listening. + +We believe obverter technique could be the better choice for certain tasks regarding human mind emulation. But it certainly is not the tool for every occasion. The RL-based approach is a robust tool for any general task that may or may not involve human-like communication. We conclude this section with a possible future research direction that combines the strengths of both approaches to enable communication in more interesting and complicated tasks. + +# C MODEL ARCHITECTURE DETAILS + +We used TensorFlow and the Sonnet library for all implementation. + +# C.1 VISUAL MODULE + +We used an eight-layer convolutional neural network. We used 32 filters with the kernel size 3 for every layer. The strides were $[ 2 , 1 , 1 , 2 , 1 , 2 , 1 , 2 ]$ for each layer. We used rectified linear unit (ReLU) as the activation function for every layer. Batch normalization was used for every layer. We did not use the bias parameters since we used Batch normalization. For padding, we used the TensorFlow VALID padding option for every layer. The fully connected layer that follows the convolutional neural network was of 256 dimensions, with ReLU as the activation function. + +# C.2 LANGUAGE MODULE + +We used a single layer Gated Recurrent Units (GRU) to implement the language module. The size of the hidden layer was 64. + +# C.3 DECISION MODULE + +We used a two-layer feedforward neural network. The first layer reduces the dimensionality to 128 with ReLU as the activation function, then the second layer generates a scalar value with sigmoid as the activation function. + +# D MESSAGE GENERATION ALGORITHM USED IN OUR WORK + +# E TRAINING DETAILS + +Both agents’ model parameters are randomly initialized. The training process consists of rounds where teacher/learner roles are changed, and each round consists of multiple games where learner’s model parameters are updated. In each game, the teacher, given a mini-batch of images, generates corresponding messages. The learner, given a separate mini-batch of images and the messages from the teacher, decides whether it is seeing the same object type as the teacher. Learner’s model parameters are updated to minimize the cross entropy loss. After playing a predefined number of games, we move on to the next round where two agents change their roles. + +1 $\mathbf { h } ^ { ( 0 ) } = \mathbf { 0 }$ //Initialize GRU hidden layer with zeros; +2 $\mathbf { s } = \left[ \mathbf { \epsilon } \right]$ //Initialize the message vector; +3 $t = 0$ //Timestep index; +4 $\mathbf { V } = \mathbf { I } \in \mathbb { R } ^ { 5 \times 5 }$ //Each row $\mathbf { v } _ { 0 } , \mathbf { v } _ { 1 } , \mathbf { v } _ { 2 } , \mathbf { v } _ { 3 } , \mathbf { v } _ { 4 }$ corresponds to $a , b , c , d , e$ ; +5 $\mathbf { x } =$ image; +6 $\mathbf { z } = V i s u a l M o d u l e ( \mathbf { x } )$ ; +7 while $| \mathbf { s } | < m a x$ message length do +8 $\mathbf { h } _ { \mathbf { v } _ { i } } ^ { ( t ) } = G R U ( \mathbf { v } _ { i } , \mathbf { h } ^ { ( t - 1 ) } )$ ; +9 $\mathbf { h } ^ { ( t ) } = \mathbf { h } _ { \mathbf { v } _ { i } } ^ { ( t ) }$ $i = \mathrm { a r g m a x } _ { i }$ DecisionModule $( [ \mathbf { h } _ { \mathbf { v } _ { i } } ^ { ( t ) } , \mathbf { z } ] )$ ; +11 Append $i$ to s; +12 if DecisionModule $( [ \mathbf { h } _ { \mathbf { v } _ { i } } ^ { ( t ) } , \mathbf { z } ] ) >$ threshold then +13 Terminate; + +We found twenty games per round, with fifty images per mini-batch to work well. We repeat the rounds for 20, 000 times. Further rounds did not improve the results, or even degraded the performance. For vocabulary size (i.e. number of unique symbols) and the maximum message length, we used 5 and 20 respectively, similar to what Batali (1998) used. Note that when generating a message using the obverter technique, the generation process stops as soon as the speaker’s (i.e. teacher) output $\hat { y }$ becomes bigger than some threshold. In our work, we experimented with various values from 0.5 to 0.95, and found higher values to work better than lower values. We used 0.95 for all our final experiments. + +# F COMMUNICATION ACCURACY FOR EACH OBJECT TYPE + +Algorithm 2: Message generation process used in our work. +Table 7: Accuracy when each object type is given to the speaker. + +
BoxSphereCylinderCapsuleEllipsoid
Blue97.7597.0095.0093.7593.50
Red95.5093.0095.7595.2597.00
White95.2596.2593.5094.5097.00
Gray93.0095.0094.2596.7597.25
Yellow98.0095.0095.5094.2594.25
Green96.0093.5095.0094.5095.25
Cyan97.5094.5097.0094.0094.75
Magenta95.2596.7594.7594.5095.25
+ +We conducted a separate test with the agents from round 16, 760 to assess the communication accuracy for each object type. The agents were given 1, 600 total object pairs $( 4 0 \times 4 0 )$ . Each object pair was tested 10 times, where after 5 times the agents switched speaker/listener roles. The average accuracy was $9 5 . 4 \%$ , and only 88 out of 1, 600 object pairs were communicated with accuracy lower than 0.8. + +Table 7 describes the accuracy when each object type was given to the speaker. We can observe that the accuracy is higher for objects that are described with less overlapping messages. For example, yellow box is communicated with the accuracy of $9 8 \%$ , and it is described with aaaaaa, which is not used for any other object types. Gray box, on the other hand, is communicated with accuracy $9 3 \%$ . It is described with aaa, which is also used for yellow capsule and green sphere, both of which are communicated with low accuracies as well. + +![](images/a3223aef4b5cd4670d5f3f12325fbeb3c69cf08d9078f75c33cd75f24d8f0912.jpg) +Figure 5: Ten communication examples when the speaker is given a blue box. Five examples on the left show when the listener is given blue objects. Five examples on the right show when the listener is given objects of different colors. + +# G COMMUNICATION EXAMPLE AND ANALYSIS + +Figure 5 provides ten examples of communication when the speaker is given a blue box and the listener is given various object types. The listener’s belief (i.e. score) that it is seeing the same image as the speaker changes each time it consumes a symbol. It is notable that most of the time the score jumps between 0 and 1, rather than gradually changing in between. This is natural given that messages that differ by only a single character can mean different objects (e.g. blue box and blue cylinder). This phenomenon can also be seen in human language. For example, blue can and blue cat differ by a single alphabet, but the semantics are completely different. + +Object types that are described by similar messages as blue box, such as blue cylinder and magenta box cause marginal confusion to the listener such that prediction scores for both objects are not complete zeros. There are also cases where two completely different objects are described by the same message as mentioned in Section 3.1. From Table 2 we can see that blue box and cyan cylinder are described by the same message $b b b b b b \{ b , d \}$ , although the messages were composed using different rules. Therefore the listener generates high scores for both objects, occasionally losing the game when the agents are given this specific object pair (1 out of 40 chance). This can be seen as a side effect coming from the principle of least effort which motivates the agents to win the game most of the time while minimizing the effort to generate messages. + +# H VISUALIZATION OF IMAGE EMBEDDINGS + +Section 3.2 provides strong evidence that the agents are properly recognizing the color and shape of an object. In this section, we study the visual module of both agents to study how they are processing the pixel input. We give each agent 1600 images, 40 per object type, and take their image embeddings (output of the fully-connected layer in the visual module). We use t-SNE (Maaten & Hinton, 2008) to reduce the dimensionality to 2D, and generate scatter plots as shown by Figure 6. The top row and the bottom row are the same scatter plots, but the dots are colored with different labels; the top row shows the color of each object, and the bottom row shows the shape of each object. + +![](images/2bfef7d4a774b0f9d6527840974612b010564b9945e307d3641516c2479550bc.jpg) +Figure 6: Scatter plots of the image embedding from the agents’ visual module. T-SNE was used to reduce the dimension to 2D. + +It is notable that the image embeddings form clear clusters, and all clusters are quite disentangled from one another. This means that the agents have learned to differentiate objects by their color and shape, and each color and shape have a specific place in the agents’ mind. It is also impressive that not only both agents learned similar relationships between colors and shapes(Figure 6 (a) and (b) show similar clusters, as do (d) and (e)), but also they learned similar absolute values for colors and shapes. Even when we plot image embeddings from both agents together (Figure 6 (c) and (f)) the cluster qualities are kept almost identical (with slightly higher number of clusters) to when we plot them separately. Therefore when one agent thinks of color red, and utters a message to describe it, the other agent hears the message and think of something red as well. This is, of course, what we wanted to achieve by using the obverter technique. + +The fact that a couple of color or shapes are occasionally in the same cluster suggests the agents have not perfectly disentangled colors and shapes. For perfect disentanglement, we believe some modifications to the image description game is required, which can be an important topic for future work. However, studying the cluster sheds some light on why the agents generate specific messages for each object type. For example, in Figure 6 (a) and (b), blue, white, cyan and magenta are often intertwined or their respective clusters are located nearby, as is the case for red, gray, yellow and green. This suggests the reason agents use prefix $^ b$ ’s to specify shapes for former color group and prefix a’s to specify shapes for the latter color group. Additionally, in Figure 6 (d) and (e), Box and cylinder are often located nearby, and sphere and ellipsoid show similar behavior7. We conjecture that this is the reason the messages describing box and cylinder are similarly long, and the messages describing sphere and ellipsoid tend to be similarly short. + +I ORIGINAL MESSAGES FROM THE ZERO-SHOT TEST +Table 8: Messages most often used by the two agents when speaking about a given object. Shaded cells indicate the objects not seen during the training. Brackets indicate the variation often seen at the last character. + +
BoxSphereCylinderCapsuleEllipsoid
Blue Redeeeeeee{e,ee}eeeeeeeeeeee{e,ed}eeee{e,ed}eee{e,a}
Whiteee{e,a} bbbbbe,eae{e,a}b,baa,c
bb e,eabbb{b,d}bb{b,d}bbb{d.c}
Grayeeeee{e,ec}ee{e,a} b{c,d}e,ab,d
Yellowbb{c.d}eeee{e,a}eeeee{e,a}a,ca,e
Greeneeeeee{e,a}eee{e,a}ee{e,a}
Cyaneeeeeeeeea,a×20eeeeee{e,a}eeeeeee{e,ea}eeeee{e,a}eeeea
Magentabbb{b,d}c,dbb{b,d}bbb{c.a}
+ +J COMMUNICATION ACCURACY FOR EACH OBJECT TYPE IN ZERO-SHOT TEST +Table 9: Accuracy when each object type is given to the speaker. Shaded cells indicate the objects not seen during the training. + +
BoxSphereCylinderCapsuleEllipsoid
Blue96.7595.0094.7595.7596.50
RedWhite94.2590.0094.2596.7591.2595.7596.00
99.0096.0095.7597.25
GrayYellow93.5098.7591.0094.7591.50
94.7595.7592.0091.50
Green95.0095.0095.0095.0094.50
CyanMagentaCyan92.0095.0097.5095.00
95.2596.0097.0096.0095.75
+ +In the same manner as Appendix F, we conducted a separate test with the agents from round 19, 980 to assess the communication accuracy for each object type. The agents were given 1, 600 total object pairs $( 4 0 \times 4 0 )$ . Each object pair was tested 10 times, where after 5 times the agents switched speaker/listener roles. The average accuracy was $9 4 . 7 3 \%$ , and 103 out of 1, 600 object pairs were communicated with accuracy lower than 0.8. + +Table 9 describes the accuracy when each object type was given the speaker. Shaded cells indicate objects not seen during the training. Here we can observe the same tendency as the one seen in Appendix F; the accuracy is higher for objects that are described with less overlapping messages. + +# K AN EXAMPLE OF USING NEGATION TO PASS A ZERO-SHOT TEST + +Lets assume agent0 is aware of red circle, blue square and green triangle. If agent0 came upon a blue circle for the first time and had to describe it to agent1, the efficient way would be to say blue circle. But it could also say blue not square not triangle. If agent1 had a similar knowledge as agent0 did, then both agents would have a successful communication. However, it is debatable whether saying blue not square not triangle is as compositional as blue circle. \ No newline at end of file diff --git a/parse/train/rknt2Be0-/rknt2Be0-_content_list.json b/parse/train/rknt2Be0-/rknt2Be0-_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..4312c373e8f5740f12b90f0032bd2cf5de7c909b --- /dev/null +++ b/parse/train/rknt2Be0-/rknt2Be0-_content_list.json @@ -0,0 +1,1734 @@ +[ + { + "type": "text", + "text": "COMPOSITIONAL OBVERTER COMMUNICATION LEARNING FROM RAW VISUAL INPUT ", + "text_level": 1, + "bbox": [ + 176, + 99, + 743, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Edward Choi ∗ \nGeorgia Institute of Technology \nAtlanta, GA, USA \nmp2893@gatech.edu \nAngeliki Lazaridou & Nando de Freitas \nDeepMind \nLondon, UK \n{angeliki, nandodefreitas}@google.com ", + "bbox": [ + 183, + 170, + 392, + 227 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 431, + 170, + 794, + 227 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 262, + 544, + 277 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "One of the distinguishing aspects of human language is its compositionality, which allows us to describe complex environments with limited vocabulary. Previously, it has been shown that neural network agents can learn to communicate in a highly structured, possibly compositional language based on disentangled input (e.g. handengineered features). Humans, however, do not learn to communicate based on well-summarized features. In this work, we train neural agents to simultaneously develop visual perception from raw image pixels, and learn to communicate with a sequence of discrete symbols. The agents play an image description game where the image contains factors such as colors and shapes. We train the agents using the obverter technique where an agent introspects to generate messages that maximize its own understanding. Through qualitative analysis, visualization and a zero-shot test, we show that the agents can develop, out of raw image pixels, a language with compositional properties, given a proper pressure from the environment. ", + "bbox": [ + 233, + 295, + 766, + 474 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 502, + 336, + 517 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "One of the key requirements for artificial general intelligence (AGI) to thrive in the real world is its ability to communicate with humans in natural language. Natural language processing (NLP) has been an active field of research for a long time, and the introduction of deep learning (LeCun et al., 2015) enabled great progress in NLP tasks such as translation, image captioning, text generation and visual question answering (Cho et al., 2014; Bahdanau et al., 2014; Vinyals et al., 2015; Karpathy & Fei-Fei, 2015; Hu et al., 2017; Serban et al., 2016; Lewis et al., 2017; Antol et al., 2015). However, training machines in a supervised manner with a large dataset has its limits when it comes to communication. Supervised methods are effective for capturing statistical associations between discrete symbols (i.e. words, letters). The essence of communication is more than just predicting the most likely word to come next; it is a means to coordinate with others and potentially achieve a common goal (Austin, 1975; Clark, 1996; Wittgenstein, 1953). ", + "bbox": [ + 174, + 532, + 825, + 685 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "An alternative path to teaching machines the art of communication is to give them a specific task and encourage them to learn how to communicate on their own. This approach will encourage the agents to use languages grounded to task-related entities as well as communicate with other agents, which is one of the ways humans learn to communicate (Bruner, 1981). Recently, there have been several notable works that demonstrated the emergence of communication between neural network agents. Even though each work produced very interesting results of its own, in all cases, communication was either achieved with a single discrete symbol (as opposed to a sequence of discrete symbols) (Foerster et al., 2016; Lazaridou et al., 2017) or via a continuous value (Sukhbaatar et al., 2016; Jorge et al., 2016). Not only is human communication un-differentiable, but also using a single discrete symbol is quite far from natural language communication. One of the key features of human language is its compositional nature; the meaning of a complex expression is determined by its structure and the meanings of its constituents (Frege, 1892). More recently, Mordatch & Abbeel (2017) and Kottur et al. (2017) trained the agents to communicate in grounded, compositional language. In both studies, however, inputs given to the agents were hand-engineered features (disentangled input) rather than raw perceptual signals that we receive as humans. ", + "bbox": [ + 174, + 694, + 825, + 900 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In this work, we train neural agents to simultaneously develop visual perception from raw image pixels, and learn to communicate with a sequence of discrete symbols. Unlike previous works, our setup poses greater challenges to the agents since visual understanding and discrete communication have to be induced from scratch in parallel. We place the agents in a two-person image description game, where images contain objects of various color and shape. Inspired by the pioneering work of Batali (1998), we employ a communication philosophy named obverter to train the agents. Having its root in the theory of mind (Premack & Woodruff, 1978) and human language development (Milligan et al., 2007), the obverter technique motivates an agent to search over messages and generate the ones that maximize their own understanding. The contribution of our work can be summarized as follows: ", + "bbox": [ + 173, + 103, + 825, + 229 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "• We train artificial agents to learn to disentangle raw image pixels and communicate in compositional language at the same time. \n• We describe how the obverter technique, a differentiable learning algorithm for discrete communication, could be employed in a communication game with raw visual input. \n• We visualize how the agents are perceiving the images and show that they learn to disentangle color and shape without any explicit supervision other than the communication one. \n• Experiment results suggest that the agents could develop, out of raw image input, a language with compositional properties, given a proper pressure from the environment (i.e. the image description game). ", + "bbox": [ + 181, + 241, + 826, + 381 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Finally, while our exposition follows a multi-agent perspective, it is also possible to interpret our results in the single-agent setting. We are effectively learning a neural network that is able to learn disentangled compositional representations of visual scenes, without any supervision. Subject to the constraints imposed by their environment, our agents learn disentangled concepts, and how to compose these to form new concepts. This is an important milestone in the path to AGI. ", + "bbox": [ + 174, + 391, + 825, + 462 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 METHOD ", + "text_level": 1, + "bbox": [ + 174, + 481, + 282, + 497 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 THE TWO-PERSON IMAGE DESCRIPTION GAME ", + "text_level": 1, + "bbox": [ + 174, + 513, + 537, + 526 + ], + "page_idx": 1 + }, + { + "type": "image", + "img_path": "images/fe848c0db6f5de8bab346ead880e705a22d31e75c43a4509f5ea6f47130e08f7.jpg", + "image_caption": [ + "Figure 1: The two-person image description game. Speaker observes an image and generates a message (i.e. a sequence of discrete symbols). The listener, after observing a separate image and the message, must correctly decide whether it is seeing the same object as the speaker (left side; output 1) or not (right side; output 0). " + ], + "image_footnote": [], + "bbox": [ + 228, + 541, + 777, + 664 + ], + "page_idx": 1 + }, + { + "type": "image", + "img_path": "images/b0f08c116783796164e0f37b02eb2fea29ddc93f0d918fda9b7fa3e6ebcdda8e.jpg", + "image_caption": [ + "Figure 2: Example images of the dataset. There are eight colors (blue, red, white, gray, yellow, green, cyan, magenta), and five shapes (box, sphere, cylinder, capsule, ellipsoid), giving us total 40 combinations. " + ], + "image_footnote": [], + "bbox": [ + 222, + 757, + 776, + 811 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We choose a straightforward image description game with two factors (color and shape) so that we can perform extensive analysis on the outcome confidently, based on full control of the experiment. In a single round of the two-person image description game, one agent becomes the speaker and the other the listener. The speaker is given a random image, and generates a message to describe it. The listener is also given a random image, possibly the same image as the speaker’s. After hearing the message from the speaker, the listener must decide if it is seeing the same object as the speaker (Figure 1). Note that an image is the raw pixels given to the agents, and an object is the thing described by the image. Therefore two different images can depict the same object. In each round the agents change roles of being the speaker and the listener. ", + "bbox": [ + 176, + 882, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 188 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We generated synthetic images using Mujoco physics simulator1. The example images are shown in Figure 2. Each image depicts a single object with a specific color and shape in $1 2 8 \\times 1 2 8$ resolution. There are eight colors (blue, red, white, gray, yellow, green, cyan, magenta) and five shapes (box, sphere, cylinder, capsule, ellipsoid), giving us 40 combinations. We generated 100 variations for each of the 40 object type. Note that the position of the object varies in each image, changing the object size and the orientation. Therefore even if the speaker and the listener are given the same object type, the actual images are very likely to be different, preventing the agents from using pixel-specific information, rather than object-related information to win the game. ", + "bbox": [ + 173, + 194, + 825, + 306 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.2 MODEL ARCHITECTURE ", + "text_level": 1, + "bbox": [ + 174, + 330, + 382, + 344 + ], + "page_idx": 2 + }, + { + "type": "image", + "img_path": "images/7902c027c72b5a000bf12271e28b3cfff9c03cda8af5899e656377dae25107a7.jpg", + "image_caption": [ + "Figure 3: Agent model architecture. The visual module processes the image, and the language module generates or consumes messages. The decision module accepts embeddings from both modules and produces the output. The solid arrows indicate modifying the output from the previous layer. The dotted arrows indicate copying the output from the previous layer. " + ], + "image_footnote": [], + "bbox": [ + 220, + 373, + 769, + 534 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Aside from using disentangled input, another strong assumption made in previous works(Batali, 1998; Mordatch & Abbeel, 2017) was that the agents had access to the true intention of the speaker. In Batali (1998), the listener was trained to modify its RNN hidden vector as closely to the speaker’s intention (meaning vector; please see Table 5 in Appendix A) as possible. In Mordatch & Abbeel (2017), each agent had an auxiliary task to predict the goals of all other agents. In both cases, the true meaning/goal vector was used to update the model parameters, exposing the disentangled information to the agents. In order to relax this assumption and encourage the agents to develop communication with minimal guidance, our model uses no other signal than whether the listener made a correct decision. ", + "bbox": [ + 174, + 627, + 825, + 753 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Figure 3 depicts the agent model architecture. We use a convolutional neural network followed by a fully-connected layer to process the image. A single RNN, specifically the gated recurrent units (GRU) (Cho et al., 2014), is used for both generating and consuming messages (the message generation using the obverter strategy is described in the next section). When consuming a message, the image embedding from the visual module and the message embedding from the language module are concatenated and processed by another fully-connected layers (i.e. decision module) with the sigmoid output $\\hat { y }$ , 0 being “My (listener) image is different from the speaker’s” and 1 being “My image is the same as the speaker’s”. Further details of the model architecture (e.g. number of layers) are described in Appendix C. ", + "bbox": [ + 174, + 760, + 825, + 886 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.3 OBVERTER TECHNIQUE ", + "text_level": 1, + "bbox": [ + 176, + 103, + 377, + 117 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Although our work is inspired by Batali (1998) (see Appendix A for the description of Batali (1998)), obverter technique is a general message generation philosophy used/discussed in a number of communication and language evolution studies (Hurford, 1989; Oliphant & Batali, 1997; Smith, 2001; Kirby & Hurford, 2002), which has its root in the theory of mind. Theory of mind (Premack & Woodruff, 1978) observes that a human has direct access only to one’s own mind and not to the others’. Therefore we typically assume that the mind of others is analogous to ours, and such assumption is reflected in the functional use of language (Bruner, 1981). For example, if we want to convey a piece of information to the listener2, it is best to speak in a way that maximizes the listener’s understanding. However, since we cannot directly observe the listener’s state of mind, we cannot exactly solve this optimization problem. Therefore we posit that the listener’s mind operates in a similar manner as ours, and speak in a way that maximizes our understanding, thus approximately solving the optimization problem. This is exactly what the obverter technique tries to achieve. ", + "bbox": [ + 174, + 130, + 825, + 296 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "When an agent becomes the teacher (i.e. speaker), the model parameters are fixed. The image is converted to an embedding via the visual module. After initializing its RNN hidden layer to zeros, the teacher at each timestep evaluates $\\hat { y }$ for all possible symbols and selects the one that maximizes $\\hat { y }$ The RNN hidden vector induced by the chosen symbol is used in the next timestep. This is repeated until $\\hat { y }$ becomes bigger than the predefined threshold, or the maximum message length is reached (see Appendix D for algorithm). Therefore the teacher, through introspection, greedily selects characters at each timestep to generate a message such that the consistency between the image and the message is as clear to itself as possible. When an agent becomes the learner (i.e. listener), its parameters are updated via back-propagating the cross entropy loss between its output $\\hat { y }$ and the true label $y$ . Therefore the agents must learn to communicate only from the true label indicating whether the teacher and the learner are seeing the same object. ", + "bbox": [ + 174, + 304, + 825, + 455 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We remind the reader that only the learner’s RNN parameters are updated, and the teacher uses its fixed RNN. Therefore an agent uses only one RNN for both speaking and listening, guaranteeing self-consistency (see Appendix B for a detailed comparison between the obverter technique and the RL-based approach). Furthermore, because the teacher’s parameters are fixed, message generation can easily be extended to be more exploratory. Although in this work we deterministically selected a character in each timestep, one can, for example, sample characters proportionally to $\\hat { y }$ and still use gradient descent for training the agents. Using a more exploratory message generation strategy could help us discover a more optimal communication language when dealing with complex tasks. ", + "bbox": [ + 174, + 463, + 825, + 574 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Another feature of the obverter technique is that it observes the principle of least effort (Zipf, 1949). Because the teacher stops generating symbols as soon as $\\hat { y }$ reaches the threshold, it does not waste any more effort trying to perfect the message. The same principle was implemented in one way or another in previous works, such as choosing the shortest among the generated strings (Kirby & Hurford, 2002) or imposing a small cost for generating a message (Mordatch & Abbeel, 2017). ", + "bbox": [ + 174, + 582, + 825, + 651 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "2.4 ENVIRONMENTAL PRESSURE FOR COMPOSITIONAL COMMUNICATION ", + "text_level": 1, + "bbox": [ + 178, + 670, + 691, + 684 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "During the early stages of research, we noticed that randomly sampling object pairs (one for the teacher, one for the learner) lead to agents focusing only on colors and ignoring shapes. When the teacher’s object is fixed, there are 40 (8 colors $\\times 5$ shapes) possibilities on the learner’s side. If the teacher only talks about the color of the object, the learner can correctly decide for 36 out of 40 possible object types. The learner makes incorrect decisions only when the teacher and the learner are given objects of the same color but different shapes, resulting in $9 0 \\%$ accuracy on average. This is actually what we observed; the accuracy plateaued between 0.9 and 0.92 during the training, and the messages were more or less the same for objects with the same color. Therefore when constructing a mini-batch of images, we set $2 5 \\%$ to be the object pairs of the same color and shape, $30 \\%$ the same shape but different colors, $20 \\%$ the same color but different shapes. The remaining $2 5 \\%$ object pairs were picked randomly3. ", + "bbox": [ + 174, + 695, + 825, + 849 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Vocabulary size (i.e. number of unique symbols) and the maximum message length were also influential to the final outcome. We noticed that a larger vocabulary and a longer message length helped the agents achieve a high communication accuracy more easily. But the resulting messages were more challenging to analyze for compositional patterns. In all our experiments we used 5 and 20 respectively for the vocabulary size and the maximum message length, similar to what Batali (1998) used. This suggests that the environment plays as important, if not more, role as the model architecture in the emergence of complex communication as discussed by previous studies (Kirby et al., 2014; Bratman et al., 2010; Kottur et al., 2017) and should be a main consideration for future efforts. Further details regarding hyperparameters are described in Appendix E. ", + "bbox": [ + 178, + 856, + 823, + 883 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 825, + 202 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 224, + 326, + 239 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In this section, we first study the convergence behavior during the training phase. Then we analyze the language developed by the agents in terms of compositionality. As stated in the introduction, in compositional language, the meaning of a complex expression is determined by its structure and the meanings of its constituents. With this definition in mind, we focus on two aspects of the inter-agent communication to evaluate its compositional properties: the structure (i.e. grammar) of the communication, and zero-shot performance (i.e. generalizing to novel stimuli). These two aspects, which are both necessary conditions for any language to be considered compositional, have been used by previous works to study the compositional nature of artificial communication (Batali, 1998; Mordatch & Abbeel, 2017; Kottur et al., 2017). ", + "bbox": [ + 174, + 257, + 825, + 382 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "To evaluate the structure of the messages, we study the evolution of the communication as training proceeds, and try to derive a grammar for expressing colors and shapes. To evaluate the zero-shot capabilities, we test if the agents can compose consistent messages for objects they have not seen during the training. Moreover, we visualize the image embeddings from the visual modules of both agents to understand how they are recognizing colors and shapes, the results of which, for a better view of the figures, are provided in Appendix H. ", + "bbox": [ + 174, + 388, + 825, + 473 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.1 CONVERGENCE BEHAVIOR ", + "text_level": 1, + "bbox": [ + 174, + 492, + 398, + 506 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/e4918ef563341b6e90dc729d2d56d92b62fe35943fcf79abaaa0650a641662d6.jpg", + "image_caption": [ + "Figure 4: Progress during the training (best seen in color). (Top) We plot the training accuracy, training loss, average message length and average message distinctness in each round. (Bottom) We plot the perplexities and the Jaccard similarity of the messages spoken by both agents in each round. Note that the average message length and the perplexities are divided by 20 to match the y-axis range with other metrics. " + ], + "image_footnote": [], + "bbox": [ + 191, + 526, + 808, + 723 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Figure 4 shows the convergence behavior during the training. Training accuracy was calculated by rounding the learner’s sigmoid output by 0.5. Message distinctness was calculated by dividing the number of unique messages in the mini-batch by the size of the mini-batch. Ideally there should be, on average, 40 distinct messages in the mini-batch of 50 images, therefore giving us 0.8 distinctness. Every 10 round, both agents were given the same 1, 000 randomly sampled images to generate 1, 000 message pairs. Then perplexity was calculated for each object type and averaged, thus indicating the average number of distinct messages used by the agents to describe a single object type (note that perplexities in the plot was divided by 20). Jaccard similarity between both agents’ messages was also calculated for each object type and averaged. ", + "bbox": [ + 173, + 825, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "At the beginning, the listener (i.e. learner) always decides it is not seeing the same object as the speaker, giving us 0.75 accuracy4. But after 7, 000 rounds, accuracy starts to go beyond 0.9. Loss is negatively correlated with accuracy until round 15, 000, where it starts to fluctuate. Accuracy, however, remains high due to how accuracy is measured; by rounding the learner’s output by 0.5. Although we could occasionally observe some patterns in the messages when both accuracy and loss were high, a lower loss generally resulted in a clearer communication structure (i.e. grammar) and better zero-shot performance. The loss fluctuation also indicates some instability in the training process, which is a potential direction for future work. Message distinctness starts at near 0, indicating the agents are generating the same message for all object types. After round 7, 000, where both message distinctness and message length reach their maximum, both start to decrease. But message distinctness never goes as high as the ideal 0.8, meaning that the agents are occasionally using the same message for different object types, as will be shown in the following section. ", + "bbox": [ + 174, + 138, + 825, + 305 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Both perplexities and Jaccard similarity show seemingly meaningless fluctuation at early rounds. After round 7, 000, perplexities and Jaccard similarity show negatively correlated behavior, meaning that not only is each agent using consistent messages to describe each object type, but also both agents are using very similar messages to describe each object type. We found perplexity and Jaccard similarity to be an important indicator of the degree of the communication structure. During rounds $7 , 0 0 0 \\sim 8 , 0 0 0$ , performance was excellent in terms of loss and accuracy, but perplexity was high and Jaccard similarity low, indicating the agents were assigning incoherent strings to each object type just to win the game. Similar behavior was observed in the early stages of language evolution simulation in Kirby & Hurford (2002) where words represented some meanings but had no structure (i.e. protolanguage). It seems that artificial communication acquires compositional properties after the emergence of protolanguage regardless of whether the input is entangled or disentangled. ", + "bbox": [ + 174, + 313, + 825, + 465 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "3.2 GRAMMAR ANALYSIS ", + "text_level": 1, + "bbox": [ + 176, + 483, + 364, + 497 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We choose agents from different training rounds to highlight how the language becomes more structured over time. Table 1 shows agents’ messages in the beginning (round 40), when the training accuracy starts pushing beyond $9 0 \\%$ (round 6, 940), when agents settle on a common language (round 16, 760). ", + "bbox": [ + 176, + 508, + 823, + 565 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In round 40, both agents are respectively producing the same message for all object types as mentioned in section 3.1. We might say the messages are structured, but considering that the listener always answers 0 in early rounds, we cannot say the agents are communicating. In round 6, 940, which is roughly when the agents begin to communicate more efficiently, training accuracy is significantly higher than round 40. However, perplexities show that both agents are assigning many names to a single object type (40-80 names depending on the object type), indicating that the agents are focusing on pixel-level differences between images of the same object type. Table 1 shows, as an example, the messages used by both agents to describe the red sphere. Due to high perplexity, it is difficult to capture the underlying grammar of the messages even with regular expression. Furthermore, as Jaccard similarity indicates, both agents are generating completely different messages for the same object type. In round 16, 760, as the perplexities and Jaccard similarity tell us, the agents came to share a very narrow set of names for each object type (1-4 names depending on the object type). Moreover, the names of the same-colored objects and same-shaped objects clearly seem to follow a pattern. Overall, each of the three phases (round 40, round 6,940, round 16,760) seem to represent the development of visual perception, learning to communicate, and emergence of structure. ", + "bbox": [ + 174, + 571, + 825, + 780 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We found the messages in round 16, 760 could be decomposed in a similar manner as Table 6 in Appendix A. The top of Table 2 shows a possible decomposition of the messages from round 16, 760 and the bottom shows the rules for each color and shape derived from the decomposition. According to our analysis, the agents use the first part of the message (i.e. prefix) to specify a shape, and the second part (i.e. suffix) to specify a color. However, they use two different strings to specify a shape. For example, the agents use either aaaa or bbbbb to describe a box. The strings used for specifying colors show slightly weaker regularity. For example, red is always described by either the suffix c or suffix e, but magenta is described by the suffix bb, bd, and sometimes b or bc. a used for ¯ gray objects ", + "bbox": [ + 174, + 786, + 825, + 898 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/2c381fd8435b01fc87bc68d60455552c27183e5f39e5f786d9a4cfa16e943f4a.jpg", + "table_caption": [ + "Round 40 (Training accuracy: $6 6 . 1 \\%$ , Agent0 perplexity:1.0, Agent1 perplexity:1.0, Jaccard similarity:0.0) " + ], + "table_footnote": [], + "table_body": "
All objectsdescribed by Agent 0All objectsdescribed byAgent1
Messageddddddddddddddddddddbbbbbbbbbbbbbbbbbbbb
", + "bbox": [ + 200, + 126, + 787, + 155 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Round 6,940 ", + "text_level": 1, + "bbox": [ + 455, + 169, + 539, + 180 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/2e2f6d38361b624e84533ab1404050752c80d29d1359536ccff6bde3e0194449.jpg", + "table_caption": [ + "(Training accuracy: $9 3 . 1 \\%$ , Agent0 perplexity:9.90, Agent1 perplexity:17.73, Jaccard similarity:0.0) " + ], + "table_footnote": [], + "table_body": "
Redsphere described byagent 0Redspheredescribedbyagent1
Messagesaeceaeaeaaaeeeeeeeeeaaedacacaaaaaaaaaaaa
aacceeaaaaeeeeeeeeeeaaccdaacaaaaaaaaaaaa
aaccceaaaaaaaaeeeeeeaaabcdadaaaaaaaaaaaa
aeeeeaaaaeeeeeeeeeeeaaeeacaeaaaaaaaaaaaa
aeaceeaeaeeeeeeeeeeeaaccdadaaaaaaacaaaaa
aceacacaaaaaaeeeeeeeaaedaceaaaaaaaaaaaaa
abeeeeaeeeeeeeeeeeeeaaeaccaeaaaaaaaaaaaa
aacceeaeeeeeeeeeeeeeaaceacaacaaaaaaaaaaa
aacceeaeaaeeeeeeeeeeaacdacdaaaaaaaaaaaaa
aeeacacaaaeeccceeeeeaaccdadaaaaacaaaaaaa
", + "bbox": [ + 192, + 194, + 800, + 335 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/517503722029e95167c4f50fb278299fcd9199e1a5f19f39b6c93f3be6ba0bfd.jpg", + "table_caption": [ + "Round 16,760 (Training accuracy: $9 8 . 0 \\%$ , Agent0 perplexity:1.69, Agent1 perplexity:1.62, Jaccard similarity:0.82) ", + "Table 1: (Top) Messages used by both agents when speaking about any object in round 40. (Middle) Ten most frequent messages used by each agent to describe a red sphere in round 6, 940. (Bottom) Messages most often used by both agents for each object type in round 16, 760. Brackets indicate the variation often seen at the last character. Underscores indicate blanks. " + ], + "table_footnote": [], + "table_body": "
:BoxSphereCylinderCapsuleEllipsoid
Bluebbbbbbb{b.d}bb{b,d}bbbbbb{b,d}bbbbb{c,d}bbbb{-,c,d}
Red Whiteaaaa{c,e}aa{c,e}aaa{c,e}a{c,e}c,e
bbbbbbb,dbbbb{b,d}bbb{b.d}bb{-,c,d}
GrayaaaaaaCb,bd
Yellowaaaaaaaaaaaaaaaaaaa{a,e}
Greenaaaa{a,ad}aa{a,ad}aaa{a.ad}a{a,ad}a
Cyanax20bbb{b,d}bbbbbbb{b,d}bbbbbbdbbbbb{b.d}
Magentabbbbbbbb{b.dbbbbb{b,d}bbbbdbbb{-.c,d}
", + "bbox": [ + 191, + 375, + 803, + 491 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "represents deletion of the prefix a. Note that removing prefixes beyond their length causes the pattern to break. For example, gray box, gray sphere and gray cylinder use the same a¯aa to express the color, ¯ but gray capsule and gray ellipsoid use irregular suffixes. ", + "bbox": [ + 174, + 594, + 825, + 636 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Despite some irregularities and one exceptional case (cyan box), the messages provide strong evidence that the agents learned to properly recognize color and shape from raw pixel input (see Appendix H for studying what the visual module learned), mapped each color and shape to prefixes and suffixes, and are able to compose meaningful messages to describe a given image to one another. Communication accuracy for each object type is described in Appendix F. Communication examples and their analysis are given in Appendix G. ", + "bbox": [ + 174, + 643, + 825, + 727 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "3.3 ZERO-SHOT EVALUATION ", + "text_level": 1, + "bbox": [ + 176, + 755, + 388, + 768 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "If the agents have truly learned to compose a message that can be divided into a color part and a shape part, then they should be able to accurately describe an object they have not seen before, which is another necessary condition for a compositional language. Therefore, we hold out five objects (the shaded cells in Table 3) from the dataset during the training and observe how agents describe five novel objects during the test phase. The agents were chosen from round 19, 980, which showed a high accuracy $( 9 7 . 8 \\% )$ , low perplexities (1.48, 1.65) and a high Jaccard similarity (0.75). Table 3 shows a potential decomposition of the messages used by the agents (original messages are described by Table 8 in Appendix I). We can observe that there is clearly a structure in the communication, although some messages show somewhat weaker patterns compared to when the agents were trained with all object types (Table 2). Suffixes for specifying yellow and magenta are especially irregular, even when we consider the effects of b and ¯ e. However, the messages describing the held-out object ¯ types show clear structure with the exception of yellow ellipsoid. ", + "bbox": [ + 174, + 785, + 825, + 924 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/dacd9fe559f2ed7b036c0b7cab2d949618cf2c40cf80ad45e099c0e858753566.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
BoxSphereCylinderCapsuleEllipsoid
Blue Redbbbbb bb{b,d} aaaa {c,e}bb{b,d} aa {c,e}bbbb bb{b.d} aaa {c,e}bbb bb{c,d} a{c,e}bb bb{-.c,d} {c,e}
Whitebbbbbb{b.d}bbbb{b.d}bbb {b.d}bb{-c,d}
Grayaaaa aaaaa aaaaaa aaaa aacaa{b,bd}
Yellow
aaaa aaaaaaaaaaaaaaa{ae}
Greenaaaa {a,ad}aa {a,ad}aaa {a,ad}a{a,ad}a
Cyana×20bbb{b,d}bbbb bbb{b,d}bbb bbbdbb bbb{b.d}
Magentabbbbbbbb{b,d}bbbbb{b.d}bbb bdbbb{-c,d}
", + "bbox": [ + 217, + 101, + 777, + 218 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/6f670dc99afe992b1e6c0df384ee179a8d2c33499e913f45b4b7f17f66ccdb8a.jpg", + "table_caption": [ + "Define Blue, White, Cyan, Magenta as color group 0, rest as color group 1. " + ], + "table_footnote": [], + "table_body": "
Rule
BlueEnd with bbb or bbdEnd with c or eEnd with b or dEnd with aaaEnd with aaEnd with a or adEnd with bbbb or bbbdEnd with bb or bd
RedWhite
GrayGrayYellowGreenCyanMagenta
BoxSphereCylinderCapsuleEllipsoidStart with bbbbb for color group O, start with aaaa for color group 1Start with aa for color group 1Start with bbbb for color group O, start with aaa for color group 1Start with bbb for color group O,start with a for color group 1Start with bb for color group 0
", + "bbox": [ + 246, + 242, + 746, + 420 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/33a781e3e5d4062ed9e9d59d3c69194abbcc7c1739d074727eba66f914b690dc.jpg", + "table_caption": [ + "Table 2: (Top) Potential composition analysis of the messages from round 16,760 (bottom of Table 1). Italic symbols are used to specify shapes and roman symbols are used to specify colors. a indicates ¯ deleting a single prefix a. (Bottom) Rules for each color and shape derived from the top table. ", + "Table 3: Potential analysis of the messages observed in the zero-shot test. Gray cells indicate object types unseen during the training phase. Italic symbols are used to specify shapes and roman symbols to specify colors. b indicates deleting a single prefix¯ $b$ . e indicates deleting a single prefix ¯ $e$ . Underscores indicate blanks. " + ], + "table_footnote": [], + "table_body": "
BoxSphereCylinderCapsuleEllipsoid
BlueRedWhiteGrayYellowGreeneeeeee e{e,ee}eeeeeeeeeee e{e,ed}eeeee eeee{e,a}eee e{e,ed}eee eeee{b,ba}bb {b.d}eee{e,a}ee eeee{a,c}bbb {d.c}ee eee{b.d}
eeeeee eeee{e.a}bbbbbeeeeeeeeeebbbb bb{c,d}eeeeee {e,a}eeee eeee{e,ea}eeee
bb
eeee eee{-,a}eeeee eee{e,a}eee eee{e,a}
bbbe{e,ec}eeee {e,a}eeee ee{e,a}bb{c.d
bbb bb{c,d}eeeee {e,a}eeeee ee{e,ea}bbbb{b.d}bb bb{a.c}eee{e,a}bbb bb{a,e}
eee{e,a}eee ee{e,a}bb bbee {e,a}ee eeabbb bb{c.a}
CyanMagentaeeeeee eeeabbbb b{b.d}
", + "bbox": [ + 179, + 492, + 813, + 611 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 176, + 707, + 821, + 736 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In order to assess the communication accuracy when held-out objects are involved, we conducted another test with the agents from round 19, 980. Each held-out object was given to the speaker, the listener, or both. In the first two cases, the held-out object was paired with all 40 object types and each pair was tested 10 times. In the last case, the held-out object was tested against itself 10 times. In all cases, the agents switched roles after 5 times. Table 4 shows communication accuracies for each case. We can see the agents can successfully communicate most of the time even when given novel objects. The last column shows that the listener is not simply producing 0 to maximize its chance to win the game. It is also notable that the objects described without $\\bar { \\mathsf b }$ or e show better performance in general. ¯ We noticed the communication accuracy for held-out objects seems relatively weak considering the messages used to describe them strongly showed structure. (Table 3). This, however, results from the grammar (i.e. structure) being not as straightforward as Table 2, especially with short messages (i.e. frequent use of $\\bar { \\mathsf b }$ and e). The same tendency can be observed for non-held-out objects as described ¯ by the per-object communication accuracy Table 9 in Appendix J. ", + "bbox": [ + 173, + 743, + 826, + 924 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/b88809ab7238f10aacf21f76006badba3743f4dadd2459290f80dd87b5acee65.jpg", + "table_caption": [ + "Table 4: Communication accuracy when agents were given objects not seen during the training. " + ], + "table_footnote": [], + "table_body": "
Given to speakerGiven to listenerGiven to both
BlueBox0.970.971.00
Red Sphere0.920.910.80
White Cylinder0.950.950.90
Gray Capsule0.910.911.00
Yellow Ellipsoid0.910.901.00
", + "bbox": [ + 267, + 101, + 725, + 181 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "From the grammar analysis in the previous section, we have shown that the emerged language strongly follows a well-defined grammar. In the zero-shot test, the agents demonstrated that they can successfully describe novel object, although not perfectly, by also following a similar grammar. Both are, as stated in the beginning of section 3, necessary conditions for any communication to be considered compositional. Therefore we can safely conclude that the emerged language in this work possesses some qualifications to be considered compositional. ", + "bbox": [ + 174, + 234, + 825, + 318 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "4 DISCUSSION ", + "text_level": 1, + "bbox": [ + 176, + 340, + 310, + 357 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In this work, we used the obverter technique to train neural network agents to communicate in a two-person image description game. Through qualitative analysis, visualization and the zero-shot test, we have shown that even though the agents receive raw perception in the form of image pixels, under the right environment pressures, the emerged language had properties consistent with the ones found in compositional languages. ", + "bbox": [ + 174, + 373, + 825, + 443 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "As an evaluation strategy, we followed previous works and focused on assessing the necessary conditions of compositional languages. However, the exact definition of compositional language is still somewhat debatable, and, to the best of our knowledge, there is no reliable way to mathematically quantify the degree of compositionality of an arbitrary language. Therefore, in order to encourage active research and discussion among researchers in this domain, we propose for future work, a quantitatively measurable definition of compositionality. We believe compositionality of a language is not binary (e.g. language A is compositional/not compositional), but a spectrum. For example, human language has some aspects that are compositional (e.g., syntactic constructions, most morphological combinations) and some that are not (e.g., irregular verb tenses in English, character-level word composition). It is also important to clearly define grounded language and compositional language. If one agent says abc (eat red apple) and another says cba (apple red eat), and they both understand each other, are they speaking compositional language? We believe such questions should be asked and addressed to shape the definition of compositionality. ", + "bbox": [ + 174, + 450, + 825, + 630 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In addition to the definition/evaluation of compositional languages, there are numerous directions of future work. Observing the emergence of a compositional language among more than two agents is an apparent next step. Designing an environment to motivate the agents to disentangle more than two factors is also an interesting direction. Training agents to consider the context (i.e. pragmatics), such as giving each agent several images instead of one, is another exciting future work. ", + "bbox": [ + 174, + 637, + 825, + 707 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "ACKNOWLEDGMENTS ", + "text_level": 1, + "bbox": [ + 176, + 727, + 326, + 738 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We would like to thank Scott Reed for discussions on pragmatics, Tom Le Paine for advising the visual module architecture, Jakob Foerster for discussions on grammar induction, Sookyung Kim and Joonseok Lee for discussions on human language and compositionality, Phil Blunsom and Jimeng Sun for helpful comments on the manuscript. ", + "bbox": [ + 174, + 750, + 825, + 806 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 829, + 285, + 844 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Stanislaw Antol, Aishwarya Agrawal, Jiasen Lu, Margaret Mitchell, Dhruv Batra, C Lawrence Zitnick, and Devi Parikh. Vqa: Visual question answering. In Proceedings of the IEEE International Conference on Computer Vision, pp. 2425–2433, 2015. ", + "bbox": [ + 178, + 853, + 825, + 896 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "John Langshaw Austin. How to do things with words. Oxford university press, 1975. ", + "bbox": [ + 173, + 909, + 728, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly learning to align and translate. In ICLR, 2014. ", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "John Batali. Computational simulations of the emergence of grammar. Approaches to the evolution of language: Social and cognitive bases, 405:426, 1998. ", + "bbox": [ + 173, + 142, + 823, + 171 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jeshua Bratman, Michael Shvartsman, Richard L Lewis, and Satinder Singh. A new approach to exploring language emergence as boundedly optimal control in the face of environmental and cognitive constraints. In International Conference on Cognitive Modeling, pp. 7–12, 2010. ", + "bbox": [ + 174, + 180, + 825, + 223 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jerome S Bruner. Intention in the structure of action and interaction. Advances in infancy research, 1981. ", + "bbox": [ + 173, + 233, + 823, + 262 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kyunghyun Cho, Bart Van Merrienboer, Caglar Gulcehre, Dzmitry Bahdanau, Fethi Bougares, Holger ¨ Schwenk, and Yoshua Bengio. Learning phrase representations using rnn encoder-decoder for statistical machine translation. In EMNLP, 2014. ", + "bbox": [ + 174, + 272, + 826, + 315 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Herbert H Clark. Using language. Cambridge university press, 1996. ", + "bbox": [ + 173, + 325, + 629, + 340 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jakob Foerster, Yannis M Assael, Nando de Freitas, and Shimon Whiteson. Learning to communicate with deep multi-agent reinforcement learning. In NIPS, pp. 2137–2145, 2016. ", + "bbox": [ + 173, + 349, + 823, + 380 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Gottlob Frege. Zeitschrift fur philosophie und philosophische kritik. ¨ NF, 100:25–50, 1892. ", + "bbox": [ + 174, + 388, + 771, + 405 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Zhiting Hu, Zichao Yang, Xiaodan Liang, Ruslan Salakhutdinov, and Eric P Xing. Toward controlled generation of text. In ICML, pp. 1587–1596, 2017. ", + "bbox": [ + 171, + 415, + 823, + 444 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "James R Hurford. Biological evolution of the saussurean sign as a component of the language acquisition device. Lingua, 77(2):187–222, 1989. ", + "bbox": [ + 169, + 453, + 825, + 483 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Emilio Jorge, Mikael Kageb ˚ ack, and Emil Gustavsson. Learning to play guess who? and inventing a ¨ grounded language as a consequence. arXiv preprint arXiv:1611.03218, 2016. ", + "bbox": [ + 169, + 492, + 823, + 521 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Andrej Karpathy and Li Fei-Fei. Deep visual-semantic alignments for generating image descriptions. In CVPR, pp. 3128–3137, 2015. ", + "bbox": [ + 171, + 530, + 825, + 560 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Simon Kirby and James R Hurford. The emergence of linguistic structure: An overview of the iterated learning model. In Simulating the evolution of language, pp. 121–147. Springer, 2002. ", + "bbox": [ + 174, + 570, + 823, + 599 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Simon Kirby, Tom Griffiths, and Kenny Smith. Iterated learning and the evolution of language. Current opinion in neurobiology, 28:108–114, 2014. ", + "bbox": [ + 176, + 608, + 823, + 638 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Satwik Kottur, Jose MF Moura, Stefan Lee, and Dhruv Batra. Natural language does not ´ emerge’naturally’in multi-agent dialog. In EMNLP, 2017. ", + "bbox": [ + 173, + 647, + 825, + 678 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Angeliki Lazaridou, Alexander Peysakhovich, and Marco Baroni. Multi-agent cooperation and the emergence of (natural) language. In ICLR, 2017. ", + "bbox": [ + 173, + 686, + 825, + 717 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yann LeCun, Yoshua Bengio, and Geoffrey Hinton. Deep learning. Nature, 521(7553):436–444, 2015. ", + "bbox": [ + 173, + 724, + 825, + 755 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Mike Lewis, Denis Yarats, Yann N Dauphin, Devi Parikh, and Dhruv Batra. Deal or no deal? end-to-end learning for negotiation dialogues. arXiv preprint arXiv:1706.05125, 2017. ", + "bbox": [ + 169, + 765, + 825, + 794 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Laurens van der Maaten and Geoffrey Hinton. Visualizing data using t-sne. Journal of Machine Learning Research, 9(Nov):2579–2605, 2008. ", + "bbox": [ + 169, + 803, + 825, + 833 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Karen Milligan, Janet Wilde Astington, and Lisa Ain Dack. Language and theory of mind: metaanalysis of the relation between language ability and false-belief understanding. Child development, 78(2):622–646, 2007. ", + "bbox": [ + 173, + 842, + 825, + 885 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Igor Mordatch and Pieter Abbeel. Emergence of grounded compositional language in multi-agent populations. arXiv preprint arXiv:1703.04908, 2017. ", + "bbox": [ + 173, + 895, + 821, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Michael Oliphant and John Batali. Learning and the emergence of coordinated communication. Center for research on language newsletter, 11(1):1–46, 1997. ", + "bbox": [ + 169, + 103, + 825, + 132 + ], + "page_idx": 10 + }, + { + "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, + 140, + 825, + 170 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Iulian Vlad Serban, Alessandro Sordoni, Yoshua Bengio, Aaron C Courville, and Joelle Pineau. Building end-to-end dialogue systems using generative hierarchical neural network models. In AAAI, 2016. ", + "bbox": [ + 174, + 178, + 823, + 222 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Andrew Smith. Establishing communication systems without explicit meaning transmission. Advances in artificial life, pp. 381–390, 2001. ", + "bbox": [ + 171, + 229, + 826, + 260 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sainbayar Sukhbaatar, Rob Fergus, et al. Learning multiagent communication with backpropagation. In NIPS, pp. 2244–2252, 2016. ", + "bbox": [ + 171, + 267, + 825, + 297 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Oriol Vinyals, Alexander Toshev, Samy Bengio, and Dumitru Erhan. Show and tell: A neural image caption generator. In CVPR, pp. 3156–3164, 2015. ", + "bbox": [ + 173, + 306, + 823, + 335 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ludwig Wittgenstein. Philosophical investigations. Blackwell, Oxford, UK, 1953. ", + "bbox": [ + 173, + 343, + 717, + 359 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "George Kingsley Zipf. Human behavior and the principle of least effort. Addison-Wesley, 1949. ", + "bbox": [ + 169, + 367, + 805, + 383 + ], + "page_idx": 10 + }, + { + "type": "image", + "img_path": "images/81623d6fa1690cf173bcc5d807c2fd91fc367f71b2d863a4604fa77be6c9f3a2.jpg", + "image_caption": [ + "Table 5: Meaning vectors are composed of (a) subject vectors and (b) predicate vectors. (c) shows 10 out of 100 possible meaning vectors. " + ], + "image_footnote": [], + "bbox": [ + 209, + 99, + 785, + 262 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "A EMERGENCE OF GRAMMAR, BATALI (1998) ", + "text_level": 1, + "bbox": [ + 174, + 330, + 575, + 348 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "In Batali (1998), the author successfully trained neural agents to develop a structured (i.e. grammatical) language using disentangled meaning vectors as the input. Using 10 subject vectors and 10 predicate vectors, all represented as explicit binary vectors, total 100 meaning vectors could be composed(Table 5). Each digit in the subject vector 5a serves a clear role, respectively representing speaker $( s p )$ , hearer $( h r )$ , other $( o t )$ , and plural $( p l )$ . The predicate vector values, on the other hand, are randomly chosen so that each predicate vector will have three 1’s and three 0’s. The combination of ten subject vectors and ten predicate vectors allows 100 meaning vectors. ", + "bbox": [ + 174, + 364, + 825, + 463 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "The author used twenty neural agents for the experiment. Each agent was implemented with the vanilla recurrent neural networks (RNN), where the hidden vector h’s size was 10, same as the size of the meaning vector m in order to treat h as the agent’s understanding of m. In each training round a single learner (i.e. listener) and ten teachers (i.e. speaker) were randomly chosen. Each teacher, given all $1 0 0 \\mathbf { m }$ ’s in random order, generates a message $\\mathbf { s } ^ { 5 }$ for each $\\mathbf { m }$ and sends it to the learner. The messages are generated using the obverter techinque, which is described in Algorithm 1. The learner is trained to minimize the mean squared error (MSE) between $\\mathbf { h }$ (after consuming the s) and m. After the learner has learned from all ten teachers, the next round begins, repeating the process until the error goes below some threshold. ", + "bbox": [ + 173, + 469, + 825, + 594 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "1 $\\mathbf { h } ^ { ( 0 ) } = \\mathbf { 0 }$ //Initialize RNN hidden layer with zeros; \n2 $\\mathbf { s } = \\left[ \\mathbf { \\epsilon } \\right]$ //Initialize the message vector; \n3 $t = 0$ //Timestep index; \n4 $\\mathbf { V } = \\mathbf { I } \\in \\mathbb { R } ^ { 4 \\times 4 }$ //Each row $\\mathbf { v } _ { 0 } , \\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } , \\mathbf { v } _ { 3 }$ corresponds to $a , b , c , d$ ; \n5 while $| \\mathbf { s } | < m a x$ message length do \n6 $\\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) } = \\sigma ( \\mathbf { v } _ { i } \\mathbf { W } _ { i } + \\mathbf { h } ^ { ( t - 1 ) } \\mathbf { W } _ { h } + \\mathbf { b } )$ ; \n7 $i = \\mathrm { a r g m i n } _ { i } \\vert \\vert \\mathbf { m } - \\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) } \\vert \\vert ^ { 2 }$ ; \n8 $\\mathbf { h } ^ { ( t ) } = \\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) }$ ; \n9 Append $i$ to s; \n10 if $| | \\mathbf { m } - \\mathbf { h } ^ { ( t ) } | | ^ { 2 } < t h r e s h o l d \\mathbf { t } 1$ hen \n11 Terminate; ", + "bbox": [ + 158, + 627, + 607, + 810 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "When the training was complete, the author was able to find strong patterns in the messages used by the agents (Table 6). Note that the messages using predicates tired, scared, sick and happy especially follow a very clear pattern. Batali also conducted a zero-shot test where the agents were trained without the diagonal elements in Table 6 and tested with all 100 meaning vectors. The agents were able to successfully communicate even when held-out meaning vectors were used, but the ", + "bbox": [ + 173, + 821, + 825, + 892 + ], + "page_idx": 11 + }, + { + "type": "table", + "img_path": "images/004fdabe8b0e0e6a8ff74df89bf7550173c82bf401750b5a2790f081cd9bf041.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
=onetheyyouyallyupmewemipyumiall
tiredcdacdabcdccdcbcdbacdcddcddbcdcdcdb
scaredcaacaabcaccacbcabacacadcadbcacdcab
sickdaadaabdacdacbdabadadaddadbdacddab
happy sadbaabaab ababbcabcabbaacbabadcbabbacbabc
excitedaba cbacbabacacb cacbabac cbcaaabdc ccdcabbabcabbc
angrybbbbbcca bcccbccbcbc
bcbbbcbbddcbdbbdcbdbc
sillyaaaaabacaacabadbaaddaddcadadadcadbc
thirstydbaadbabdcadcbadbcaddaddacdbaddcaddbacd
hungrydbbdbbddcdcbdbcddddcdbddcddbcd
", + "bbox": [ + 222, + 101, + 772, + 242 + ], + "page_idx": 12 + }, + { + "type": "table", + "img_path": "images/41a1513b8f0051663e2b6f09172f21f3ea517adf28bdd283c3cc3c0bb5f347b6.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
-onetheyyouyallyupmewemipyumiall
tiredcdacdabcdccdcbcdbacdcddcddbcdcdcdb
scaredcaacaabcaccacbcabacacadcadbcacdcab
sickdaadaabdacdacbdabadadaddadbdacddab
happybaabaabbcabcabbaacbabadcbabbacbabc
sad excitedabaababacacbabacaabdcabbabcabbc
cbacbabccacacbcbcaCccdccbccbcbc
angrycbcbbCCccbcbcCcddccdbcdccdbc
silly(aa)(aaab)(aca)(acab)adbaaddaddcadadadcadbc
thirstydbaadbabdcadcbadbcaddaddacdbaddcaddbacd
hungrydbbdbbddcdcbdbcddddcdbddcddbcd
", + "bbox": [ + 209, + 253, + 782, + 395 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Table 6: (Top) Messages used by a majority of the population for each of the given meanings. (Bottom) A potential analysis of the system in terms of a root plus modifications. Italic symbols are used to specify predicates and roman symbols are used to specify subjects. Messages in parentheses cannot be made to fit into this analysis. ", + "bbox": [ + 173, + 405, + 825, + 462 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "messages used for the held-out meaning vectors did not show as strong compositional patterns as the non-zero-shot case. ", + "bbox": [ + 176, + 491, + 823, + 518 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "B COMPARISON BETWEEN THE OBVERTER TECHINQUE AND THEREINFORCEMENT LEARNING-BASED APPROACH", + "text_level": 1, + "bbox": [ + 174, + 541, + 723, + 574 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "The obverter technique allows us to generate messages that encourage the agents to use a shared language, even a highly structured one, via using a single RNN for both speaking and listening. ", + "bbox": [ + 174, + 592, + 823, + 619 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "This is quite different from other RL-based related works (Lazaridou et al., 2017; Mordatch & Abbeel, 2017; Foerster et al., 2016; Jorge et al., 2016; Kottur et al., 2017) where each agent has separate components (e.g. two RNNs) for generating messages and consuming messages. This is necessary typically because the message generation module and the message consumption module have different input/output requirements. The message generation module accepts some input related to the task (e.g. goal description vector, question embedding, or image embedding) and generates discrete symbols. The message consumption module, on the other hand, accepts discrete symbols (i.e. the message) and generates some output related to the task (e.g. some prediction or some action to take). Therefore, when a neural agent speaks in the RL-based approach, its message generation process is completely separated from its own listening process, but tied to the listening process of another agent (i.e. listener)6. This means an agent may not have internal consistency; what an agent speaks may not make sense to itself. However, agents in the RL-based setting do converge on a common language because, during the training, the error signal flows from the listener to the speaker directly. ", + "bbox": [ + 174, + 626, + 825, + 820 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Obverter approach, on the other hand, requires that each agent has a single component for both message generation and message consumption. This single component accepts discrete symbols and generates some output related to the task. This guarantees internal consistency because an agent’s message generation process is tied to its own message consumption process; it will only generate messages that make sense to itself. In the obverter setting, the error signal does not flow between agents directly, but agents converge on a common language by taking turns to be the listener; the listener tries to understand what the speaker says, so that when the listener becomes the speaker, it can generate messages that make sense to itself and, at the same time, will be understood by the former speaker (now listener). ", + "bbox": [ + 174, + 828, + 823, + 883 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 172 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "The advantage of obverter approach over RL-based approach is that it is motivated by the theory of mind and more resembles the acquisition/development process of human language. Having a single mechanism for both speaking and listening, and training oneself to be a good listener leads to the emergence of self-consistent, shared language. However, obverter technique requires that all agents perform the same task, which means all agents must have identical model architectures. This is because, during the message generation process, the speaker internally simulates what the listener will go though when it hears the message. Therefore we cannot play an asymmetrical game such as where the speaker sees only one image and generates a message but the listener is given multiple images and must choose one after hearing the message. RL-based approaches do not have this problem since there are separate modules for speaking and listening. ", + "bbox": [ + 174, + 180, + 825, + 319 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We believe obverter technique could be the better choice for certain tasks regarding human mind emulation. But it certainly is not the tool for every occasion. The RL-based approach is a robust tool for any general task that may or may not involve human-like communication. We conclude this section with a possible future research direction that combines the strengths of both approaches to enable communication in more interesting and complicated tasks. ", + "bbox": [ + 174, + 327, + 825, + 396 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "C MODEL ARCHITECTURE DETAILS ", + "text_level": 1, + "bbox": [ + 176, + 416, + 483, + 431 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We used TensorFlow and the Sonnet library for all implementation. ", + "bbox": [ + 174, + 446, + 612, + 460 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "C.1 VISUAL MODULE ", + "text_level": 1, + "bbox": [ + 176, + 477, + 336, + 491 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We used an eight-layer convolutional neural network. We used 32 filters with the kernel size 3 for every layer. The strides were $[ 2 , 1 , 1 , 2 , 1 , 2 , 1 , 2 ]$ for each layer. We used rectified linear unit (ReLU) as the activation function for every layer. Batch normalization was used for every layer. We did not use the bias parameters since we used Batch normalization. For padding, we used the TensorFlow VALID padding option for every layer. The fully connected layer that follows the convolutional neural network was of 256 dimensions, with ReLU as the activation function. ", + "bbox": [ + 174, + 503, + 825, + 587 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "C.2 LANGUAGE MODULE ", + "text_level": 1, + "bbox": [ + 176, + 603, + 362, + 617 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We used a single layer Gated Recurrent Units (GRU) to implement the language module. The size of the hidden layer was 64. ", + "bbox": [ + 173, + 628, + 825, + 657 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "C.3 DECISION MODULE ", + "text_level": 1, + "bbox": [ + 176, + 674, + 351, + 689 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We used a two-layer feedforward neural network. The first layer reduces the dimensionality to 128 with ReLU as the activation function, then the second layer generates a scalar value with sigmoid as the activation function. ", + "bbox": [ + 174, + 700, + 825, + 742 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "D MESSAGE GENERATION ALGORITHM USED IN OUR WORK ", + "text_level": 1, + "bbox": [ + 174, + 763, + 683, + 779 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "E TRAINING DETAILS ", + "text_level": 1, + "bbox": [ + 176, + 795, + 369, + 810 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Both agents’ model parameters are randomly initialized. The training process consists of rounds where teacher/learner roles are changed, and each round consists of multiple games where learner’s model parameters are updated. In each game, the teacher, given a mini-batch of images, generates corresponding messages. The learner, given a separate mini-batch of images and the messages from the teacher, decides whether it is seeing the same object type as the teacher. Learner’s model parameters are updated to minimize the cross entropy loss. After playing a predefined number of games, we move on to the next round where two agents change their roles. ", + "bbox": [ + 174, + 825, + 825, + 924 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "1 $\\mathbf { h } ^ { ( 0 ) } = \\mathbf { 0 }$ //Initialize GRU hidden layer with zeros; \n2 $\\mathbf { s } = \\left[ \\mathbf { \\epsilon } \\right]$ //Initialize the message vector; \n3 $t = 0$ //Timestep index; \n4 $\\mathbf { V } = \\mathbf { I } \\in \\mathbb { R } ^ { 5 \\times 5 }$ //Each row $\\mathbf { v } _ { 0 } , \\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } , \\mathbf { v } _ { 3 } , \\mathbf { v } _ { 4 }$ corresponds to $a , b , c , d , e$ ; \n5 $\\mathbf { x } =$ image; \n6 $\\mathbf { z } = V i s u a l M o d u l e ( \\mathbf { x } )$ ; \n7 while $| \\mathbf { s } | < m a x$ message length do \n8 $\\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) } = G R U ( \\mathbf { v } _ { i } , \\mathbf { h } ^ { ( t - 1 ) } )$ ; \n9 $\\mathbf { h } ^ { ( t ) } = \\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) }$ $i = \\mathrm { a r g m a x } _ { i }$ DecisionModule $( [ \\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) } , \\mathbf { z } ] )$ ; \n11 Append $i$ to s; \n12 if DecisionModule $( [ \\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) } , \\mathbf { z } ] ) >$ threshold then \n13 Terminate; ", + "bbox": [ + 158, + 126, + 647, + 339 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We found twenty games per round, with fifty images per mini-batch to work well. We repeat the rounds for 20, 000 times. Further rounds did not improve the results, or even degraded the performance. For vocabulary size (i.e. number of unique symbols) and the maximum message length, we used 5 and 20 respectively, similar to what Batali (1998) used. Note that when generating a message using the obverter technique, the generation process stops as soon as the speaker’s (i.e. teacher) output $\\hat { y }$ becomes bigger than some threshold. In our work, we experimented with various values from 0.5 to 0.95, and found higher values to work better than lower values. We used 0.95 for all our final experiments. ", + "bbox": [ + 173, + 385, + 826, + 496 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "F COMMUNICATION ACCURACY FOR EACH OBJECT TYPE ", + "text_level": 1, + "bbox": [ + 173, + 532, + 658, + 549 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/2b0aae3d0c28893d77741dbe8bd14fdbc46cd11b53335f3d7760608d62e3e0c7.jpg", + "table_caption": [ + "Algorithm 2: Message generation process used in our work. ", + "Table 7: Accuracy when each object type is given to the speaker. " + ], + "table_footnote": [], + "table_body": "
BoxSphereCylinderCapsuleEllipsoid
Blue97.7597.0095.0093.7593.50
Red95.5093.0095.7595.2597.00
White95.2596.2593.5094.5097.00
Gray93.0095.0094.2596.7597.25
Yellow98.0095.0095.5094.2594.25
Green96.0093.5095.0094.5095.25
Cyan97.5094.5097.0094.0094.75
Magenta95.2596.7594.7594.5095.25
", + "bbox": [ + 287, + 589, + 707, + 707 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We conducted a separate test with the agents from round 16, 760 to assess the communication accuracy for each object type. The agents were given 1, 600 total object pairs $( 4 0 \\times 4 0 )$ . Each object pair was tested 10 times, where after 5 times the agents switched speaker/listener roles. The average accuracy was $9 5 . 4 \\%$ , and only 88 out of 1, 600 object pairs were communicated with accuracy lower than 0.8. ", + "bbox": [ + 173, + 762, + 825, + 833 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Table 7 describes the accuracy when each object type was given to the speaker. We can observe that the accuracy is higher for objects that are described with less overlapping messages. For example, yellow box is communicated with the accuracy of $9 8 \\%$ , and it is described with aaaaaa, which is not used for any other object types. Gray box, on the other hand, is communicated with accuracy $9 3 \\%$ . It is described with aaa, which is also used for yellow capsule and green sphere, both of which are communicated with low accuracies as well. ", + "bbox": [ + 173, + 840, + 825, + 922 + ], + "page_idx": 14 + }, + { + "type": "image", + "img_path": "images/a3223aef4b5cd4670d5f3f12325fbeb3c69cf08d9078f75c33cd75f24d8f0912.jpg", + "image_caption": [ + "Figure 5: Ten communication examples when the speaker is given a blue box. Five examples on the left show when the listener is given blue objects. Five examples on the right show when the listener is given objects of different colors. " + ], + "image_footnote": [], + "bbox": [ + 184, + 104, + 825, + 493 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "G COMMUNICATION EXAMPLE AND ANALYSIS", + "text_level": 1, + "bbox": [ + 174, + 578, + 575, + 593 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Figure 5 provides ten examples of communication when the speaker is given a blue box and the listener is given various object types. The listener’s belief (i.e. score) that it is seeing the same image as the speaker changes each time it consumes a symbol. It is notable that most of the time the score jumps between 0 and 1, rather than gradually changing in between. This is natural given that messages that differ by only a single character can mean different objects (e.g. blue box and blue cylinder). This phenomenon can also be seen in human language. For example, blue can and blue cat differ by a single alphabet, but the semantics are completely different. ", + "bbox": [ + 174, + 609, + 825, + 707 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Object types that are described by similar messages as blue box, such as blue cylinder and magenta box cause marginal confusion to the listener such that prediction scores for both objects are not complete zeros. There are also cases where two completely different objects are described by the same message as mentioned in Section 3.1. From Table 2 we can see that blue box and cyan cylinder are described by the same message $b b b b b b \\{ b , d \\}$ , although the messages were composed using different rules. Therefore the listener generates high scores for both objects, occasionally losing the game when the agents are given this specific object pair (1 out of 40 chance). This can be seen as a side effect coming from the principle of least effort which motivates the agents to win the game most of the time while minimizing the effort to generate messages. ", + "bbox": [ + 174, + 714, + 825, + 839 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "H VISUALIZATION OF IMAGE EMBEDDINGS ", + "text_level": 1, + "bbox": [ + 174, + 863, + 549, + 878 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Section 3.2 provides strong evidence that the agents are properly recognizing the color and shape of an object. In this section, we study the visual module of both agents to study how they are processing the pixel input. We give each agent 1600 images, 40 per object type, and take their image embeddings (output of the fully-connected layer in the visual module). We use t-SNE (Maaten & Hinton, 2008) to reduce the dimensionality to 2D, and generate scatter plots as shown by Figure 6. The top row and the bottom row are the same scatter plots, but the dots are colored with different labels; the top row shows the color of each object, and the bottom row shows the shape of each object. ", + "bbox": [ + 174, + 895, + 823, + 924 + ], + "page_idx": 15 + }, + { + "type": "image", + "img_path": "images/2bfef7d4a774b0f9d6527840974612b010564b9945e307d3641516c2479550bc.jpg", + "image_caption": [ + "Figure 6: Scatter plots of the image embedding from the agents’ visual module. T-SNE was used to reduce the dimension to 2D. " + ], + "image_footnote": [], + "bbox": [ + 176, + 103, + 820, + 375 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 445, + 825, + 515 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "It is notable that the image embeddings form clear clusters, and all clusters are quite disentangled from one another. This means that the agents have learned to differentiate objects by their color and shape, and each color and shape have a specific place in the agents’ mind. It is also impressive that not only both agents learned similar relationships between colors and shapes(Figure 6 (a) and (b) show similar clusters, as do (d) and (e)), but also they learned similar absolute values for colors and shapes. Even when we plot image embeddings from both agents together (Figure 6 (c) and (f)) the cluster qualities are kept almost identical (with slightly higher number of clusters) to when we plot them separately. Therefore when one agent thinks of color red, and utters a message to describe it, the other agent hears the message and think of something red as well. This is, of course, what we wanted to achieve by using the obverter technique. ", + "bbox": [ + 174, + 522, + 825, + 661 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "The fact that a couple of color or shapes are occasionally in the same cluster suggests the agents have not perfectly disentangled colors and shapes. For perfect disentanglement, we believe some modifications to the image description game is required, which can be an important topic for future work. However, studying the cluster sheds some light on why the agents generate specific messages for each object type. For example, in Figure 6 (a) and (b), blue, white, cyan and magenta are often intertwined or their respective clusters are located nearby, as is the case for red, gray, yellow and green. This suggests the reason agents use prefix $^ b$ ’s to specify shapes for former color group and prefix a’s to specify shapes for the latter color group. Additionally, in Figure 6 (d) and (e), Box and cylinder are often located nearby, and sphere and ellipsoid show similar behavior7. We conjecture that this is the reason the messages describing box and cylinder are similarly long, and the messages describing sphere and ellipsoid tend to be similarly short. ", + "bbox": [ + 173, + 669, + 825, + 821 + ], + "page_idx": 16 + }, + { + "type": "table", + "img_path": "images/4381fb9534e586f1c124e2c94e60600a3fa1ced6341dcf861bac5e549c080214.jpg", + "table_caption": [ + "I ORIGINAL MESSAGES FROM THE ZERO-SHOT TEST ", + "Table 8: Messages most often used by the two agents when speaking about a given object. Shaded cells indicate the objects not seen during the training. Brackets indicate the variation often seen at the last character. " + ], + "table_footnote": [], + "table_body": "
BoxSphereCylinderCapsuleEllipsoid
Blue Redeeeeeee{e,ee}eeeeeeeeeeee{e,ed}eeee{e,ed}eee{e,a}
Whiteee{e,a} bbbbbe,eae{e,a}b,baa,c
bb e,eabbb{b,d}bb{b,d}bbb{d.c}
Grayeeeee{e,ec}ee{e,a} b{c,d}e,ab,d
Yellowbb{c.d}eeee{e,a}eeeee{e,a}a,ca,e
Greeneeeeee{e,a}eee{e,a}ee{e,a}
Cyaneeeeeeeeea,a×20eeeeee{e,a}eeeeeee{e,ea}eeeee{e,a}eeeea
Magentabbb{b,d}c,dbb{b,d}bbb{c.a}
", + "bbox": [ + 217, + 137, + 776, + 255 + ], + "page_idx": 17 + }, + { + "type": "table", + "img_path": "images/a20c0aaf7f9221bafb1a13cbcfdbb633fec04b47610d7e533553f9733bbff3f3.jpg", + "table_caption": [ + "J COMMUNICATION ACCURACY FOR EACH OBJECT TYPE IN ZERO-SHOT TEST ", + "Table 9: Accuracy when each object type is given to the speaker. Shaded cells indicate the objects not seen during the training. " + ], + "table_footnote": [], + "table_body": "
BoxSphereCylinderCapsuleEllipsoid
Blue96.7595.0094.7595.7596.50
RedWhite94.2590.0094.2596.7591.2595.7596.00
99.0096.0095.7597.25
GrayYellow93.5098.7591.0094.7591.50
94.7595.7592.0091.50
Green95.0095.0095.0095.0094.50
CyanMagentaCyan92.0095.0097.5095.00
95.2596.0097.0096.0095.75
", + "bbox": [ + 287, + 373, + 707, + 491 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "In the same manner as Appendix F, we conducted a separate test with the agents from round 19, 980 to assess the communication accuracy for each object type. The agents were given 1, 600 total object pairs $( 4 0 \\times 4 0 )$ . Each object pair was tested 10 times, where after 5 times the agents switched speaker/listener roles. The average accuracy was $9 4 . 7 3 \\%$ , and 103 out of 1, 600 object pairs were communicated with accuracy lower than 0.8. ", + "bbox": [ + 174, + 547, + 825, + 617 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Table 9 describes the accuracy when each object type was given the speaker. Shaded cells indicate objects not seen during the training. Here we can observe the same tendency as the one seen in Appendix F; the accuracy is higher for objects that are described with less overlapping messages. ", + "bbox": [ + 174, + 625, + 825, + 666 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "K AN EXAMPLE OF USING NEGATION TO PASS A ZERO-SHOT TEST", + "text_level": 1, + "bbox": [ + 176, + 688, + 733, + 703 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Lets assume agent0 is aware of red circle, blue square and green triangle. If agent0 came upon a blue circle for the first time and had to describe it to agent1, the efficient way would be to say blue circle. But it could also say blue not square not triangle. If agent1 had a similar knowledge as agent0 did, then both agents would have a successful communication. However, it is debatable whether saying blue not square not triangle is as compositional as blue circle. ", + "bbox": [ + 174, + 718, + 826, + 787 + ], + "page_idx": 17 + } +] \ No newline at end of file diff --git a/parse/train/rknt2Be0-/rknt2Be0-_middle.json b/parse/train/rknt2Be0-/rknt2Be0-_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..5c6b20a8602329c9ca15fc751f9a727ead3f20bd --- /dev/null +++ b/parse/train/rknt2Be0-/rknt2Be0-_middle.json @@ -0,0 +1,39834 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 455, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 77, + 457, + 98 + ], + "spans": [ + { + "bbox": [ + 106, + 77, + 457, + 98 + ], + "score": 1.0, + "content": "COMPOSITIONAL OBVERTER COMMUNICATION", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 98, + 387, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 387, + 117 + ], + "score": 1.0, + "content": "LEARNING FROM RAW VISUAL INPUT", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 135, + 240, + 180 + ], + "lines": [ + { + "bbox": [ + 111, + 135, + 179, + 146 + ], + "spans": [ + { + "bbox": [ + 111, + 135, + 179, + 146 + ], + "score": 1.0, + "content": "Edward Choi ∗", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 144, + 242, + 160 + ], + "spans": [ + { + "bbox": [ + 111, + 144, + 242, + 160 + ], + "score": 1.0, + "content": "Georgia Institute of Technology", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 112, + 157, + 189, + 168 + ], + "spans": [ + { + "bbox": [ + 112, + 157, + 189, + 168 + ], + "score": 1.0, + "content": "Atlanta, GA, USA", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 111, + 168, + 216, + 180 + ], + "spans": [ + { + "bbox": [ + 111, + 168, + 216, + 180 + ], + "score": 1.0, + "content": "mp2893@gatech.edu", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.0 + }, + { + "type": "text", + "bbox": [ + 264, + 135, + 486, + 180 + ], + "lines": [ + { + "bbox": [ + 264, + 136, + 435, + 147 + ], + "spans": [ + { + "bbox": [ + 264, + 136, + 435, + 147 + ], + "score": 1.0, + "content": "Angeliki Lazaridou & Nando de Freitas", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 264, + 146, + 311, + 158 + ], + "spans": [ + { + "bbox": [ + 264, + 146, + 311, + 158 + ], + "score": 1.0, + "content": "DeepMind", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 263, + 156, + 318, + 168 + ], + "spans": [ + { + "bbox": [ + 263, + 156, + 318, + 168 + ], + "score": 1.0, + "content": "London, UK", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 264, + 168, + 486, + 181 + ], + "spans": [ + { + "bbox": [ + 264, + 168, + 486, + 181 + ], + "score": 1.0, + "content": "{angeliki, nandodefreitas}@google.com", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6.0 + }, + { + "type": "title", + "bbox": [ + 278, + 208, + 333, + 220 + ], + "lines": [ + { + "bbox": [ + 277, + 208, + 335, + 221 + ], + "spans": [ + { + "bbox": [ + 277, + 208, + 335, + 221 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 143, + 234, + 469, + 376 + ], + "lines": [ + { + "bbox": [ + 142, + 234, + 469, + 246 + ], + "spans": [ + { + "bbox": [ + 142, + 234, + 469, + 246 + ], + "score": 1.0, + "content": "One of the distinguishing aspects of human language is its compositionality, which", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 142, + 245, + 470, + 257 + ], + "spans": [ + { + "bbox": [ + 142, + 245, + 470, + 257 + ], + "score": 1.0, + "content": "allows us to describe complex environments with limited vocabulary. Previously, it", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 256, + 470, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 256, + 470, + 268 + ], + "score": 1.0, + "content": "has been shown that neural network agents can learn to communicate in a highly", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 267, + 470, + 279 + ], + "spans": [ + { + "bbox": [ + 141, + 267, + 470, + 279 + ], + "score": 1.0, + "content": "structured, possibly compositional language based on disentangled input (e.g. hand-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 278, + 470, + 289 + ], + "spans": [ + { + "bbox": [ + 141, + 278, + 470, + 289 + ], + "score": 1.0, + "content": "engineered features). Humans, however, do not learn to communicate based on", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 289, + 469, + 300 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 469, + 300 + ], + "score": 1.0, + "content": "well-summarized features. In this work, we train neural agents to simultaneously", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 299, + 470, + 312 + ], + "spans": [ + { + "bbox": [ + 141, + 299, + 470, + 312 + ], + "score": 1.0, + "content": "develop visual perception from raw image pixels, and learn to communicate with a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 311, + 470, + 323 + ], + "spans": [ + { + "bbox": [ + 141, + 311, + 470, + 323 + ], + "score": 1.0, + "content": "sequence of discrete symbols. The agents play an image description game where", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 321, + 469, + 334 + ], + "spans": [ + { + "bbox": [ + 141, + 321, + 469, + 334 + ], + "score": 1.0, + "content": "the image contains factors such as colors and shapes. We train the agents using the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 333, + 469, + 344 + ], + "spans": [ + { + "bbox": [ + 142, + 333, + 469, + 344 + ], + "score": 1.0, + "content": "obverter technique where an agent introspects to generate messages that maximize", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 344, + 470, + 355 + ], + "spans": [ + { + "bbox": [ + 142, + 344, + 470, + 355 + ], + "score": 1.0, + "content": "its own understanding. Through qualitative analysis, visualization and a zero-shot", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 142, + 355, + 469, + 366 + ], + "spans": [ + { + "bbox": [ + 142, + 355, + 469, + 366 + ], + "score": 1.0, + "content": "test, we show that the agents can develop, out of raw image pixels, a language with", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 366, + 433, + 377 + ], + "spans": [ + { + "bbox": [ + 141, + 366, + 433, + 377 + ], + "score": 1.0, + "content": "compositional properties, given a proper pressure from the environment.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 108, + 398, + 206, + 410 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 208, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 208, + 413 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 422, + 505, + 543 + ], + "lines": [ + { + "bbox": [ + 106, + 423, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 505, + 435 + ], + "score": 1.0, + "content": "One of the key requirements for artificial general intelligence (AGI) to thrive in the real world is its", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 434, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 505, + 446 + ], + "score": 1.0, + "content": "ability to communicate with humans in natural language. Natural language processing (NLP) has been", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 445, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 506, + 457 + ], + "score": 1.0, + "content": "an active field of research for a long time, and the introduction of deep learning (LeCun et al., 2015)", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 456, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 506, + 469 + ], + "score": 1.0, + "content": "enabled great progress in NLP tasks such as translation, image captioning, text generation and visual", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 466, + 507, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 507, + 480 + ], + "score": 1.0, + "content": "question answering (Cho et al., 2014; Bahdanau et al., 2014; Vinyals et al., 2015; Karpathy & Fei-Fei,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 475, + 507, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 507, + 491 + ], + "score": 1.0, + "content": "2015; Hu et al., 2017; Serban et al., 2016; Lewis et al., 2017; Antol et al., 2015). However, training", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 488, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 501 + ], + "score": 1.0, + "content": "machines in a supervised manner with a large dataset has its limits when it comes to communication.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 498, + 507, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 507, + 513 + ], + "score": 1.0, + "content": "Supervised methods are effective for capturing statistical associations between discrete symbols (i.e.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 510, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 505, + 523 + ], + "score": 1.0, + "content": "words, letters). The essence of communication is more than just predicting the most likely word to", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 522, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 506, + 534 + ], + "score": 1.0, + "content": "come next; it is a means to coordinate with others and potentially achieve a common goal (Austin,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 532, + 267, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 267, + 545 + ], + "score": 1.0, + "content": "1975; Clark, 1996; Wittgenstein, 1953).", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 550, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 550, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 506, + 562 + ], + "score": 1.0, + "content": "An alternative path to teaching machines the art of communication is to give them a specific task and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "encourage them to learn how to communicate on their own. This approach will encourage the agents", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 571, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 583 + ], + "score": 1.0, + "content": "to use languages grounded to task-related entities as well as communicate with other agents, which", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 582, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 594 + ], + "score": 1.0, + "content": "is one of the ways humans learn to communicate (Bruner, 1981). Recently, there have been several", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 593, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 506, + 606 + ], + "score": 1.0, + "content": "notable works that demonstrated the emergence of communication between neural network agents.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 604, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 617 + ], + "score": 1.0, + "content": "Even though each work produced very interesting results of its own, in all cases, communication was", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 615, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 506, + 627 + ], + "score": 1.0, + "content": "either achieved with a single discrete symbol (as opposed to a sequence of discrete symbols) (Foerster", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 626, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 639 + ], + "score": 1.0, + "content": "et al., 2016; Lazaridou et al., 2017) or via a continuous value (Sukhbaatar et al., 2016; Jorge et al.,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 636, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 506, + 649 + ], + "score": 1.0, + "content": "2016). Not only is human communication un-differentiable, but also using a single discrete symbol is", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 649, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 660 + ], + "score": 1.0, + "content": "quite far from natural language communication. One of the key features of human language is its", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 659, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 505, + 671 + ], + "score": 1.0, + "content": "compositional nature; the meaning of a complex expression is determined by its structure and the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 668, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 682 + ], + "score": 1.0, + "content": "meanings of its constituents (Frege, 1892). More recently, Mordatch & Abbeel (2017) and Kottur", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 681, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 506, + 694 + ], + "score": 1.0, + "content": "et al. (2017) trained the agents to communicate in grounded, compositional language. In both studies,", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 693, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 505, + 704 + ], + "score": 1.0, + "content": "however, inputs given to the agents were hand-engineered features (disentangled input) rather than", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 703, + 307, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 703, + 307, + 715 + ], + "score": 1.0, + "content": "raw perceptual signals that we receive as humans.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 43 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 119, + 722, + 258, + 731 + ], + "lines": [ + { + "bbox": [ + 118, + 720, + 259, + 733 + ], + "spans": [ + { + "bbox": [ + 118, + 720, + 259, + 733 + ], + "score": 1.0, + "content": "∗Work done as an intern at DeepMind.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 455, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 77, + 457, + 98 + ], + "spans": [ + { + "bbox": [ + 106, + 77, + 457, + 98 + ], + "score": 1.0, + "content": "COMPOSITIONAL OBVERTER COMMUNICATION", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 98, + 387, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 387, + 117 + ], + "score": 1.0, + "content": "LEARNING FROM RAW VISUAL INPUT", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "list", + "bbox": [ + 112, + 135, + 240, + 180 + ], + "lines": [ + { + "bbox": [ + 111, + 135, + 179, + 146 + ], + "spans": [ + { + "bbox": [ + 111, + 135, + 179, + 146 + ], + "score": 1.0, + "content": "Edward Choi ∗", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 144, + 242, + 160 + ], + "spans": [ + { + "bbox": [ + 111, + 144, + 242, + 160 + ], + "score": 1.0, + "content": "Georgia Institute of Technology", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 112, + 157, + 189, + 168 + ], + "spans": [ + { + "bbox": [ + 112, + 157, + 189, + 168 + ], + "score": 1.0, + "content": "Atlanta, GA, USA", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 168, + 216, + 180 + ], + "spans": [ + { + "bbox": [ + 111, + 168, + 216, + 180 + ], + "score": 1.0, + "content": "mp2893@gatech.edu", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 264, + 136, + 435, + 147 + ], + "spans": [ + { + "bbox": [ + 264, + 136, + 435, + 147 + ], + "score": 1.0, + "content": "Angeliki Lazaridou & Nando de Freitas", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 264, + 146, + 311, + 158 + ], + "spans": [ + { + "bbox": [ + 264, + 146, + 311, + 158 + ], + "score": 1.0, + "content": "DeepMind", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 263, + 156, + 318, + 168 + ], + "spans": [ + { + "bbox": [ + 263, + 156, + 318, + 168 + ], + "score": 1.0, + "content": "London, UK", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 264, + 168, + 486, + 181 + ], + "spans": [ + { + "bbox": [ + 264, + 168, + 486, + 181 + ], + "score": 1.0, + "content": "{angeliki, nandodefreitas}@google.com", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + } + ], + "index": 5.0, + "bbox_fs": [ + 111, + 135, + 242, + 180 + ] + }, + { + "type": "list", + "bbox": [ + 264, + 135, + 486, + 180 + ], + "lines": [], + "index": 6.0, + "bbox_fs": [ + 263, + 136, + 486, + 181 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 278, + 208, + 333, + 220 + ], + "lines": [ + { + "bbox": [ + 277, + 208, + 335, + 221 + ], + "spans": [ + { + "bbox": [ + 277, + 208, + 335, + 221 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 143, + 234, + 469, + 376 + ], + "lines": [ + { + "bbox": [ + 142, + 234, + 469, + 246 + ], + "spans": [ + { + "bbox": [ + 142, + 234, + 469, + 246 + ], + "score": 1.0, + "content": "One of the distinguishing aspects of human language is its compositionality, which", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 142, + 245, + 470, + 257 + ], + "spans": [ + { + "bbox": [ + 142, + 245, + 470, + 257 + ], + "score": 1.0, + "content": "allows us to describe complex environments with limited vocabulary. Previously, it", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 256, + 470, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 256, + 470, + 268 + ], + "score": 1.0, + "content": "has been shown that neural network agents can learn to communicate in a highly", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 267, + 470, + 279 + ], + "spans": [ + { + "bbox": [ + 141, + 267, + 470, + 279 + ], + "score": 1.0, + "content": "structured, possibly compositional language based on disentangled input (e.g. hand-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 278, + 470, + 289 + ], + "spans": [ + { + "bbox": [ + 141, + 278, + 470, + 289 + ], + "score": 1.0, + "content": "engineered features). Humans, however, do not learn to communicate based on", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 289, + 469, + 300 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 469, + 300 + ], + "score": 1.0, + "content": "well-summarized features. In this work, we train neural agents to simultaneously", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 299, + 470, + 312 + ], + "spans": [ + { + "bbox": [ + 141, + 299, + 470, + 312 + ], + "score": 1.0, + "content": "develop visual perception from raw image pixels, and learn to communicate with a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 311, + 470, + 323 + ], + "spans": [ + { + "bbox": [ + 141, + 311, + 470, + 323 + ], + "score": 1.0, + "content": "sequence of discrete symbols. The agents play an image description game where", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 321, + 469, + 334 + ], + "spans": [ + { + "bbox": [ + 141, + 321, + 469, + 334 + ], + "score": 1.0, + "content": "the image contains factors such as colors and shapes. We train the agents using the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 333, + 469, + 344 + ], + "spans": [ + { + "bbox": [ + 142, + 333, + 469, + 344 + ], + "score": 1.0, + "content": "obverter technique where an agent introspects to generate messages that maximize", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 344, + 470, + 355 + ], + "spans": [ + { + "bbox": [ + 142, + 344, + 470, + 355 + ], + "score": 1.0, + "content": "its own understanding. Through qualitative analysis, visualization and a zero-shot", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 142, + 355, + 469, + 366 + ], + "spans": [ + { + "bbox": [ + 142, + 355, + 469, + 366 + ], + "score": 1.0, + "content": "test, we show that the agents can develop, out of raw image pixels, a language with", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 366, + 433, + 377 + ], + "spans": [ + { + "bbox": [ + 141, + 366, + 433, + 377 + ], + "score": 1.0, + "content": "compositional properties, given a proper pressure from the environment.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 17, + "bbox_fs": [ + 141, + 234, + 470, + 377 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 398, + 206, + 410 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 208, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 208, + 413 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 422, + 505, + 543 + ], + "lines": [ + { + "bbox": [ + 106, + 423, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 505, + 435 + ], + "score": 1.0, + "content": "One of the key requirements for artificial general intelligence (AGI) to thrive in the real world is its", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 434, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 505, + 446 + ], + "score": 1.0, + "content": "ability to communicate with humans in natural language. Natural language processing (NLP) has been", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 445, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 506, + 457 + ], + "score": 1.0, + "content": "an active field of research for a long time, and the introduction of deep learning (LeCun et al., 2015)", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 456, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 506, + 469 + ], + "score": 1.0, + "content": "enabled great progress in NLP tasks such as translation, image captioning, text generation and visual", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 466, + 507, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 507, + 480 + ], + "score": 1.0, + "content": "question answering (Cho et al., 2014; Bahdanau et al., 2014; Vinyals et al., 2015; Karpathy & Fei-Fei,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 475, + 507, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 507, + 491 + ], + "score": 1.0, + "content": "2015; Hu et al., 2017; Serban et al., 2016; Lewis et al., 2017; Antol et al., 2015). However, training", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 488, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 501 + ], + "score": 1.0, + "content": "machines in a supervised manner with a large dataset has its limits when it comes to communication.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 498, + 507, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 507, + 513 + ], + "score": 1.0, + "content": "Supervised methods are effective for capturing statistical associations between discrete symbols (i.e.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 510, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 505, + 523 + ], + "score": 1.0, + "content": "words, letters). The essence of communication is more than just predicting the most likely word to", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 522, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 506, + 534 + ], + "score": 1.0, + "content": "come next; it is a means to coordinate with others and potentially achieve a common goal (Austin,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 532, + 267, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 267, + 545 + ], + "score": 1.0, + "content": "1975; Clark, 1996; Wittgenstein, 1953).", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 423, + 507, + 545 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 550, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 550, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 506, + 562 + ], + "score": 1.0, + "content": "An alternative path to teaching machines the art of communication is to give them a specific task and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "encourage them to learn how to communicate on their own. This approach will encourage the agents", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 571, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 583 + ], + "score": 1.0, + "content": "to use languages grounded to task-related entities as well as communicate with other agents, which", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 582, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 594 + ], + "score": 1.0, + "content": "is one of the ways humans learn to communicate (Bruner, 1981). Recently, there have been several", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 593, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 506, + 606 + ], + "score": 1.0, + "content": "notable works that demonstrated the emergence of communication between neural network agents.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 604, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 617 + ], + "score": 1.0, + "content": "Even though each work produced very interesting results of its own, in all cases, communication was", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 615, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 506, + 627 + ], + "score": 1.0, + "content": "either achieved with a single discrete symbol (as opposed to a sequence of discrete symbols) (Foerster", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 626, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 639 + ], + "score": 1.0, + "content": "et al., 2016; Lazaridou et al., 2017) or via a continuous value (Sukhbaatar et al., 2016; Jorge et al.,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 636, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 506, + 649 + ], + "score": 1.0, + "content": "2016). Not only is human communication un-differentiable, but also using a single discrete symbol is", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 649, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 660 + ], + "score": 1.0, + "content": "quite far from natural language communication. One of the key features of human language is its", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 659, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 505, + 671 + ], + "score": 1.0, + "content": "compositional nature; the meaning of a complex expression is determined by its structure and the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 668, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 682 + ], + "score": 1.0, + "content": "meanings of its constituents (Frege, 1892). More recently, Mordatch & Abbeel (2017) and Kottur", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 681, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 506, + 694 + ], + "score": 1.0, + "content": "et al. (2017) trained the agents to communicate in grounded, compositional language. In both studies,", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 693, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 505, + 704 + ], + "score": 1.0, + "content": "however, inputs given to the agents were hand-engineered features (disentangled input) rather than", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 703, + 307, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 703, + 307, + 715 + ], + "score": 1.0, + "content": "raw perceptual signals that we receive as humans.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 550, + 506, + 715 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 182 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "In this work, we train neural agents to simultaneously develop visual perception from raw image", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 506, + 107 + ], + "score": 1.0, + "content": "pixels, and learn to communicate with a sequence of discrete symbols. Unlike previous works, our", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "setup poses greater challenges to the agents since visual understanding and discrete communication", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 114, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 104, + 114, + 506, + 129 + ], + "score": 1.0, + "content": "have to be induced from scratch in parallel. We place the agents in a two-person image description", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "score": 1.0, + "content": "game, where images contain objects of various color and shape. Inspired by the pioneering work of", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 151 + ], + "score": 1.0, + "content": "Batali (1998), we employ a communication philosophy named obverter to train the agents. Having its", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 147, + 506, + 163 + ], + "spans": [ + { + "bbox": [ + 104, + 147, + 506, + 163 + ], + "score": 1.0, + "content": "root in the theory of mind (Premack & Woodruff, 1978) and human language development (Milligan", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "et al., 2007), the obverter technique motivates an agent to search over messages and generate the ones", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 171, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 506, + 183 + ], + "score": 1.0, + "content": "that maximize their own understanding. The contribution of our work can be summarized as follows:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 111, + 191, + 506, + 302 + ], + "lines": [ + { + "bbox": [ + 111, + 191, + 506, + 203 + ], + "spans": [ + { + "bbox": [ + 111, + 191, + 506, + 203 + ], + "score": 1.0, + "content": "• We train artificial agents to learn to disentangle raw image pixels and communicate in composi-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 120, + 201, + 255, + 214 + ], + "spans": [ + { + "bbox": [ + 120, + 201, + 255, + 214 + ], + "score": 1.0, + "content": "tional language at the same time.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 112, + 216, + 506, + 229 + ], + "spans": [ + { + "bbox": [ + 112, + 216, + 506, + 229 + ], + "score": 1.0, + "content": "• We describe how the obverter technique, a differentiable learning algorithm for discrete commu-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 121, + 228, + 432, + 240 + ], + "spans": [ + { + "bbox": [ + 121, + 228, + 432, + 240 + ], + "score": 1.0, + "content": "nication, could be employed in a communication game with raw visual input.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 111, + 241, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 111, + 241, + 505, + 255 + ], + "score": 1.0, + "content": "• We visualize how the agents are perceiving the images and show that they learn to disentangle", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 121, + 253, + 458, + 265 + ], + "spans": [ + { + "bbox": [ + 121, + 253, + 458, + 265 + ], + "score": 1.0, + "content": "color and shape without any explicit supervision other than the communication one.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 111, + 267, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 111, + 267, + 505, + 281 + ], + "score": 1.0, + "content": "• Experiment results suggest that the agents could develop, out of raw image input, a language", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 120, + 278, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 120, + 278, + 506, + 293 + ], + "score": 1.0, + "content": "with compositional properties, given a proper pressure from the environment (i.e. the image", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 122, + 289, + 199, + 303 + ], + "spans": [ + { + "bbox": [ + 122, + 289, + 199, + 303 + ], + "score": 1.0, + "content": "description game).", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 310, + 505, + 366 + ], + "lines": [ + { + "bbox": [ + 105, + 309, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 505, + 323 + ], + "score": 1.0, + "content": "Finally, while our exposition follows a multi-agent perspective, it is also possible to interpret our", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 322, + 504, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 504, + 334 + ], + "score": 1.0, + "content": "results in the single-agent setting. We are effectively learning a neural network that is able to learn", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 332, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 505, + 345 + ], + "score": 1.0, + "content": "disentangled compositional representations of visual scenes, without any supervision. Subject to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 343, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 506, + 357 + ], + "score": 1.0, + "content": "the constraints imposed by their environment, our agents learn disentangled concepts, and how to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 354, + 459, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 459, + 367 + ], + "score": 1.0, + "content": "compose these to form new concepts. This is an important milestone in the path to AGI.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20 + }, + { + "type": "title", + "bbox": [ + 107, + 381, + 173, + 394 + ], + "lines": [ + { + "bbox": [ + 104, + 379, + 174, + 397 + ], + "spans": [ + { + "bbox": [ + 104, + 379, + 174, + 397 + ], + "score": 1.0, + "content": "2 METHOD", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 107, + 407, + 329, + 417 + ], + "lines": [ + { + "bbox": [ + 106, + 406, + 329, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 329, + 419 + ], + "score": 1.0, + "content": "2.1 THE TWO-PERSON IMAGE DESCRIPTION GAME", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "image", + "bbox": [ + 140, + 429, + 476, + 526 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 140, + 429, + 476, + 526 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 140, + 429, + 476, + 526 + ], + "spans": [ + { + "bbox": [ + 140, + 429, + 476, + 526 + ], + "score": 0.972, + "type": "image", + "image_path": "fe848c0db6f5de8bab346ead880e705a22d31e75c43a4509f5ea6f47130e08f7.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 140, + 429, + 476, + 461.3333333333333 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 140, + 461.3333333333333, + 476, + 493.66666666666663 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 140, + 493.66666666666663, + 476, + 526.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 539, + 505, + 583 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 539, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 506, + 552 + ], + "score": 1.0, + "content": "Figure 1: The two-person image description game. Speaker observes an image and generates a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "message (i.e. a sequence of discrete symbols). The listener, after observing a separate image and the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 562, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 505, + 574 + ], + "score": 1.0, + "content": "message, must correctly decide whether it is seeing the same object as the speaker (left side; output", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 573, + 229, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 229, + 585 + ], + "score": 1.0, + "content": "1) or not (right side; output 0).", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + } + ], + "index": 27.75 + }, + { + "type": "image", + "bbox": [ + 136, + 600, + 475, + 643 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 136, + 600, + 475, + 643 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 136, + 600, + 475, + 643 + ], + "spans": [ + { + "bbox": [ + 136, + 600, + 475, + 643 + ], + "score": 0.962, + "type": "image", + "image_path": "b0f08c116783796164e0f37b02eb2fea29ddc93f0d918fda9b7fa3e6ebcdda8e.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 136, + 600, + 475, + 614.3333333333334 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 136, + 614.3333333333334, + 475, + 628.6666666666667 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 136, + 628.6666666666667, + 475, + 643.0000000000001 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 108, + 651, + 505, + 684 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 650, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 506, + 664 + ], + "score": 1.0, + "content": "Figure 2: Example images of the dataset. There are eight colors (blue, red, white, gray, yellow,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "score": 1.0, + "content": "green, cyan, magenta), and five shapes (box, sphere, cylinder, capsule, ellipsoid), giving us total 40", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 673, + 165, + 685 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 165, + 685 + ], + "score": 1.0, + "content": "combinations.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "We choose a straightforward image description game with two factors (color and shape) so that we can", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "perform extensive analysis on the outcome confidently, based on full control of the experiment. In a", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "single round of the two-person image description game, one agent becomes the speaker and the other", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 182 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "In this work, we train neural agents to simultaneously develop visual perception from raw image", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 506, + 107 + ], + "score": 1.0, + "content": "pixels, and learn to communicate with a sequence of discrete symbols. Unlike previous works, our", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "setup poses greater challenges to the agents since visual understanding and discrete communication", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 114, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 104, + 114, + 506, + 129 + ], + "score": 1.0, + "content": "have to be induced from scratch in parallel. We place the agents in a two-person image description", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "score": 1.0, + "content": "game, where images contain objects of various color and shape. Inspired by the pioneering work of", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 151 + ], + "score": 1.0, + "content": "Batali (1998), we employ a communication philosophy named obverter to train the agents. Having its", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 147, + 506, + 163 + ], + "spans": [ + { + "bbox": [ + 104, + 147, + 506, + 163 + ], + "score": 1.0, + "content": "root in the theory of mind (Premack & Woodruff, 1978) and human language development (Milligan", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "et al., 2007), the obverter technique motivates an agent to search over messages and generate the ones", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 171, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 506, + 183 + ], + "score": 1.0, + "content": "that maximize their own understanding. The contribution of our work can be summarized as follows:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4, + "bbox_fs": [ + 104, + 81, + 506, + 183 + ] + }, + { + "type": "list", + "bbox": [ + 111, + 191, + 506, + 302 + ], + "lines": [ + { + "bbox": [ + 111, + 191, + 506, + 203 + ], + "spans": [ + { + "bbox": [ + 111, + 191, + 506, + 203 + ], + "score": 1.0, + "content": "• We train artificial agents to learn to disentangle raw image pixels and communicate in composi-", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 120, + 201, + 255, + 214 + ], + "spans": [ + { + "bbox": [ + 120, + 201, + 255, + 214 + ], + "score": 1.0, + "content": "tional language at the same time.", + "type": "text" + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 112, + 216, + 506, + 229 + ], + "spans": [ + { + "bbox": [ + 112, + 216, + 506, + 229 + ], + "score": 1.0, + "content": "• We describe how the obverter technique, a differentiable learning algorithm for discrete commu-", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 121, + 228, + 432, + 240 + ], + "spans": [ + { + "bbox": [ + 121, + 228, + 432, + 240 + ], + "score": 1.0, + "content": "nication, could be employed in a communication game with raw visual input.", + "type": "text" + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 241, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 111, + 241, + 505, + 255 + ], + "score": 1.0, + "content": "• We visualize how the agents are perceiving the images and show that they learn to disentangle", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 121, + 253, + 458, + 265 + ], + "spans": [ + { + "bbox": [ + 121, + 253, + 458, + 265 + ], + "score": 1.0, + "content": "color and shape without any explicit supervision other than the communication one.", + "type": "text" + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 267, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 111, + 267, + 505, + 281 + ], + "score": 1.0, + "content": "• Experiment results suggest that the agents could develop, out of raw image input, a language", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 120, + 278, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 120, + 278, + 506, + 293 + ], + "score": 1.0, + "content": "with compositional properties, given a proper pressure from the environment (i.e. the image", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 122, + 289, + 199, + 303 + ], + "spans": [ + { + "bbox": [ + 122, + 289, + 199, + 303 + ], + "score": 1.0, + "content": "description game).", + "type": "text" + } + ], + "index": 17, + "is_list_end_line": true + } + ], + "index": 13, + "bbox_fs": [ + 111, + 191, + 506, + 303 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 310, + 505, + 366 + ], + "lines": [ + { + "bbox": [ + 105, + 309, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 505, + 323 + ], + "score": 1.0, + "content": "Finally, while our exposition follows a multi-agent perspective, it is also possible to interpret our", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 322, + 504, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 504, + 334 + ], + "score": 1.0, + "content": "results in the single-agent setting. We are effectively learning a neural network that is able to learn", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 332, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 505, + 345 + ], + "score": 1.0, + "content": "disentangled compositional representations of visual scenes, without any supervision. Subject to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 343, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 506, + 357 + ], + "score": 1.0, + "content": "the constraints imposed by their environment, our agents learn disentangled concepts, and how to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 354, + 459, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 459, + 367 + ], + "score": 1.0, + "content": "compose these to form new concepts. This is an important milestone in the path to AGI.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 309, + 506, + 367 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 381, + 173, + 394 + ], + "lines": [ + { + "bbox": [ + 104, + 379, + 174, + 397 + ], + "spans": [ + { + "bbox": [ + 104, + 379, + 174, + 397 + ], + "score": 1.0, + "content": "2 METHOD", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 107, + 407, + 329, + 417 + ], + "lines": [ + { + "bbox": [ + 106, + 406, + 329, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 329, + 419 + ], + "score": 1.0, + "content": "2.1 THE TWO-PERSON IMAGE DESCRIPTION GAME", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "image", + "bbox": [ + 140, + 429, + 476, + 526 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 140, + 429, + 476, + 526 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 140, + 429, + 476, + 526 + ], + "spans": [ + { + "bbox": [ + 140, + 429, + 476, + 526 + ], + "score": 0.972, + "type": "image", + "image_path": "fe848c0db6f5de8bab346ead880e705a22d31e75c43a4509f5ea6f47130e08f7.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 140, + 429, + 476, + 461.3333333333333 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 140, + 461.3333333333333, + 476, + 493.66666666666663 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 140, + 493.66666666666663, + 476, + 526.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 539, + 505, + 583 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 539, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 506, + 552 + ], + "score": 1.0, + "content": "Figure 1: The two-person image description game. Speaker observes an image and generates a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "message (i.e. a sequence of discrete symbols). The listener, after observing a separate image and the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 562, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 505, + 574 + ], + "score": 1.0, + "content": "message, must correctly decide whether it is seeing the same object as the speaker (left side; output", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 573, + 229, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 229, + 585 + ], + "score": 1.0, + "content": "1) or not (right side; output 0).", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + } + ], + "index": 27.75 + }, + { + "type": "image", + "bbox": [ + 136, + 600, + 475, + 643 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 136, + 600, + 475, + 643 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 136, + 600, + 475, + 643 + ], + "spans": [ + { + "bbox": [ + 136, + 600, + 475, + 643 + ], + "score": 0.962, + "type": "image", + "image_path": "b0f08c116783796164e0f37b02eb2fea29ddc93f0d918fda9b7fa3e6ebcdda8e.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 136, + 600, + 475, + 614.3333333333334 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 136, + 614.3333333333334, + 475, + 628.6666666666667 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 136, + 628.6666666666667, + 475, + 643.0000000000001 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 108, + 651, + 505, + 684 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 650, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 506, + 664 + ], + "score": 1.0, + "content": "Figure 2: Example images of the dataset. There are eight colors (blue, red, white, gray, yellow,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "score": 1.0, + "content": "green, cyan, magenta), and five shapes (box, sphere, cylinder, capsule, ellipsoid), giving us total 40", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 673, + 165, + 685 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 165, + 685 + ], + "score": 1.0, + "content": "combinations.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "We choose a straightforward image description game with two factors (color and shape) so that we can", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "perform extensive analysis on the outcome confidently, based on full control of the experiment. In a", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "single round of the two-person image description game, one agent becomes the speaker and the other", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "the listener. The speaker is given a random image, and generates a message to describe it. The listener", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 107 + ], + "score": 1.0, + "content": "is also given a random image, possibly the same image as the speaker’s. After hearing the message", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "from the speaker, the listener must decide if it is seeing the same object as the speaker (Figure 1).", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "score": 1.0, + "content": "Note that an image is the raw pixels given to the agents, and an object is the thing described by the", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 505, + 140 + ], + "score": 1.0, + "content": "image. Therefore two different images can depict the same object. In each round the agents change", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 276, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 276, + 150 + ], + "score": 1.0, + "content": "roles of being the speaker and the listener.", + "type": "text", + "cross_page": true + } + ], + "index": 5 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 698, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 149 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "the listener. The speaker is given a random image, and generates a message to describe it. The listener", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 107 + ], + "score": 1.0, + "content": "is also given a random image, possibly the same image as the speaker’s. After hearing the message", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "from the speaker, the listener must decide if it is seeing the same object as the speaker (Figure 1).", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "score": 1.0, + "content": "Note that an image is the raw pixels given to the agents, and an object is the thing described by the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 505, + 140 + ], + "score": 1.0, + "content": "image. Therefore two different images can depict the same object. In each round the agents change", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 276, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 276, + 150 + ], + "score": 1.0, + "content": "roles of being the speaker and the listener.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 154, + 505, + 243 + ], + "lines": [ + { + "bbox": [ + 105, + 153, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 506, + 167 + ], + "score": 1.0, + "content": "We generated synthetic images using Mujoco physics simulator1. The example images are shown in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 422, + 178 + ], + "score": 1.0, + "content": "Figure 2. Each image depicts a single object with a specific color and shape in", + "type": "text" + }, + { + "bbox": [ + 422, + 165, + 461, + 176 + ], + "score": 0.89, + "content": "1 2 8 \\times 1 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 165, + 506, + 178 + ], + "score": 1.0, + "content": "resolution.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 175, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 189 + ], + "score": 1.0, + "content": "There are eight colors (blue, red, white, gray, yellow, green, cyan, magenta) and five shapes (box,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 199 + ], + "score": 1.0, + "content": "sphere, cylinder, capsule, ellipsoid), giving us 40 combinations. We generated 100 variations for each", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 197, + 506, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 506, + 211 + ], + "score": 1.0, + "content": "of the 40 object type. Note that the position of the object varies in each image, changing the object", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "score": 1.0, + "content": "size and the orientation. Therefore even if the speaker and the listener are given the same object", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 233 + ], + "score": 1.0, + "content": "type, the actual images are very likely to be different, preventing the agents from using pixel-specific", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 230, + 380, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 380, + 244 + ], + "score": 1.0, + "content": "information, rather than object-related information to win the game.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 9.5 + }, + { + "type": "title", + "bbox": [ + 107, + 262, + 234, + 273 + ], + "lines": [ + { + "bbox": [ + 106, + 262, + 235, + 274 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 235, + 274 + ], + "score": 1.0, + "content": "2.2 MODEL ARCHITECTURE", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "image", + "bbox": [ + 135, + 296, + 471, + 423 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 135, + 296, + 471, + 423 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 135, + 296, + 471, + 423 + ], + "spans": [ + { + "bbox": [ + 135, + 296, + 471, + 423 + ], + "score": 0.969, + "type": "image", + "image_path": "7902c027c72b5a000bf12271e28b3cfff9c03cda8af5899e656377dae25107a7.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 135, + 296, + 471, + 338.3333333333333 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 135, + 338.3333333333333, + 471, + 380.66666666666663 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 135, + 380.66666666666663, + 471, + 422.99999999999994 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 433, + 505, + 478 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 434, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 505, + 446 + ], + "score": 1.0, + "content": "Figure 3: Agent model architecture. The visual module processes the image, and the language module", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 444, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 506, + 456 + ], + "score": 1.0, + "content": "generates or consumes messages. The decision module accepts embeddings from both modules and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 456, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 468 + ], + "score": 1.0, + "content": "produces the output. The solid arrows indicate modifying the output from the previous layer. The", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 466, + 372, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 372, + 479 + ], + "score": 1.0, + "content": "dotted arrows indicate copying the output from the previous layer.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5 + } + ], + "index": 17.75 + }, + { + "type": "text", + "bbox": [ + 107, + 497, + 505, + 597 + ], + "lines": [ + { + "bbox": [ + 106, + 498, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 506, + 510 + ], + "score": 1.0, + "content": "Aside from using disentangled input, another strong assumption made in previous works(Batali, 1998;", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 508, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 506, + 522 + ], + "score": 1.0, + "content": "Mordatch & Abbeel, 2017) was that the agents had access to the true intention of the speaker. In", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 520, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 505, + 532 + ], + "score": 1.0, + "content": "Batali (1998), the listener was trained to modify its RNN hidden vector as closely to the speaker’s", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 531, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 505, + 544 + ], + "score": 1.0, + "content": "intention (meaning vector; please see Table 5 in Appendix A) as possible. In Mordatch & Abbeel", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 542, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 506, + 555 + ], + "score": 1.0, + "content": "(2017), each agent had an auxiliary task to predict the goals of all other agents. In both cases, the true", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 553, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 505, + 566 + ], + "score": 1.0, + "content": "meaning/goal vector was used to update the model parameters, exposing the disentangled information", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 563, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 577 + ], + "score": 1.0, + "content": "to the agents. In order to relax this assumption and encourage the agents to develop communication", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "score": 1.0, + "content": "with minimal guidance, our model uses no other signal than whether the listener made a correct", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 585, + 145, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 145, + 599 + ], + "score": 1.0, + "content": "decision.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 602, + 505, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 603, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 505, + 615 + ], + "score": 1.0, + "content": "Figure 3 depicts the agent model architecture. We use a convolutional neural network followed", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 613, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 506, + 627 + ], + "score": 1.0, + "content": "by a fully-connected layer to process the image. A single RNN, specifically the gated recurrent", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 624, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 505, + 639 + ], + "score": 1.0, + "content": "units (GRU) (Cho et al., 2014), is used for both generating and consuming messages (the message", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 635, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 506, + 649 + ], + "score": 1.0, + "content": "generation using the obverter strategy is described in the next section). When consuming a message,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 647, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 647, + 505, + 660 + ], + "score": 1.0, + "content": "the image embedding from the visual module and the message embedding from the language module", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 658, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 505, + 670 + ], + "score": 1.0, + "content": "are concatenated and processed by another fully-connected layers (i.e. decision module) with the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 171, + 681 + ], + "score": 1.0, + "content": "sigmoid output", + "type": "text" + }, + { + "bbox": [ + 171, + 669, + 177, + 680 + ], + "score": 0.77, + "content": "\\hat { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 668, + 505, + 681 + ], + "score": 1.0, + "content": ", 0 being “My (listener) image is different from the speaker’s” and 1 being “My", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 678, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 506, + 693 + ], + "score": 1.0, + "content": "image is the same as the speaker’s”. Further details of the model architecture (e.g. number of layers)", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 690, + 225, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 225, + 703 + ], + "score": 1.0, + "content": "are described in Appendix C.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 120, + 722, + 249, + 731 + ], + "lines": [ + { + "bbox": [ + 119, + 719, + 250, + 734 + ], + "spans": [ + { + "bbox": [ + 119, + 719, + 250, + 734 + ], + "score": 1.0, + "content": "1http://www.mujoco.org/index.html", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 149 + ], + "lines": [], + "index": 2.5, + "bbox_fs": [ + 105, + 82, + 506, + 150 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 154, + 505, + 243 + ], + "lines": [ + { + "bbox": [ + 105, + 153, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 506, + 167 + ], + "score": 1.0, + "content": "We generated synthetic images using Mujoco physics simulator1. The example images are shown in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 422, + 178 + ], + "score": 1.0, + "content": "Figure 2. Each image depicts a single object with a specific color and shape in", + "type": "text" + }, + { + "bbox": [ + 422, + 165, + 461, + 176 + ], + "score": 0.89, + "content": "1 2 8 \\times 1 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 165, + 506, + 178 + ], + "score": 1.0, + "content": "resolution.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 175, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 189 + ], + "score": 1.0, + "content": "There are eight colors (blue, red, white, gray, yellow, green, cyan, magenta) and five shapes (box,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 199 + ], + "score": 1.0, + "content": "sphere, cylinder, capsule, ellipsoid), giving us 40 combinations. We generated 100 variations for each", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 197, + 506, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 506, + 211 + ], + "score": 1.0, + "content": "of the 40 object type. Note that the position of the object varies in each image, changing the object", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "score": 1.0, + "content": "size and the orientation. Therefore even if the speaker and the listener are given the same object", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 233 + ], + "score": 1.0, + "content": "type, the actual images are very likely to be different, preventing the agents from using pixel-specific", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 230, + 380, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 380, + 244 + ], + "score": 1.0, + "content": "information, rather than object-related information to win the game.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 153, + 506, + 244 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 262, + 234, + 273 + ], + "lines": [ + { + "bbox": [ + 106, + 262, + 235, + 274 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 235, + 274 + ], + "score": 1.0, + "content": "2.2 MODEL ARCHITECTURE", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "image", + "bbox": [ + 135, + 296, + 471, + 423 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 135, + 296, + 471, + 423 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 135, + 296, + 471, + 423 + ], + "spans": [ + { + "bbox": [ + 135, + 296, + 471, + 423 + ], + "score": 0.969, + "type": "image", + "image_path": "7902c027c72b5a000bf12271e28b3cfff9c03cda8af5899e656377dae25107a7.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 135, + 296, + 471, + 338.3333333333333 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 135, + 338.3333333333333, + 471, + 380.66666666666663 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 135, + 380.66666666666663, + 471, + 422.99999999999994 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 433, + 505, + 478 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 434, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 505, + 446 + ], + "score": 1.0, + "content": "Figure 3: Agent model architecture. The visual module processes the image, and the language module", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 444, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 506, + 456 + ], + "score": 1.0, + "content": "generates or consumes messages. The decision module accepts embeddings from both modules and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 456, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 468 + ], + "score": 1.0, + "content": "produces the output. The solid arrows indicate modifying the output from the previous layer. The", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 466, + 372, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 372, + 479 + ], + "score": 1.0, + "content": "dotted arrows indicate copying the output from the previous layer.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5 + } + ], + "index": 17.75 + }, + { + "type": "text", + "bbox": [ + 107, + 497, + 505, + 597 + ], + "lines": [ + { + "bbox": [ + 106, + 498, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 506, + 510 + ], + "score": 1.0, + "content": "Aside from using disentangled input, another strong assumption made in previous works(Batali, 1998;", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 508, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 506, + 522 + ], + "score": 1.0, + "content": "Mordatch & Abbeel, 2017) was that the agents had access to the true intention of the speaker. In", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 520, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 505, + 532 + ], + "score": 1.0, + "content": "Batali (1998), the listener was trained to modify its RNN hidden vector as closely to the speaker’s", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 531, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 505, + 544 + ], + "score": 1.0, + "content": "intention (meaning vector; please see Table 5 in Appendix A) as possible. In Mordatch & Abbeel", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 542, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 506, + 555 + ], + "score": 1.0, + "content": "(2017), each agent had an auxiliary task to predict the goals of all other agents. In both cases, the true", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 553, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 505, + 566 + ], + "score": 1.0, + "content": "meaning/goal vector was used to update the model parameters, exposing the disentangled information", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 563, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 577 + ], + "score": 1.0, + "content": "to the agents. In order to relax this assumption and encourage the agents to develop communication", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "score": 1.0, + "content": "with minimal guidance, our model uses no other signal than whether the listener made a correct", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 585, + 145, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 145, + 599 + ], + "score": 1.0, + "content": "decision.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 498, + 506, + 599 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 602, + 505, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 603, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 505, + 615 + ], + "score": 1.0, + "content": "Figure 3 depicts the agent model architecture. We use a convolutional neural network followed", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 613, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 506, + 627 + ], + "score": 1.0, + "content": "by a fully-connected layer to process the image. A single RNN, specifically the gated recurrent", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 624, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 505, + 639 + ], + "score": 1.0, + "content": "units (GRU) (Cho et al., 2014), is used for both generating and consuming messages (the message", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 635, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 506, + 649 + ], + "score": 1.0, + "content": "generation using the obverter strategy is described in the next section). When consuming a message,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 647, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 647, + 505, + 660 + ], + "score": 1.0, + "content": "the image embedding from the visual module and the message embedding from the language module", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 658, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 505, + 670 + ], + "score": 1.0, + "content": "are concatenated and processed by another fully-connected layers (i.e. decision module) with the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 171, + 681 + ], + "score": 1.0, + "content": "sigmoid output", + "type": "text" + }, + { + "bbox": [ + 171, + 669, + 177, + 680 + ], + "score": 0.77, + "content": "\\hat { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 668, + 505, + 681 + ], + "score": 1.0, + "content": ", 0 being “My (listener) image is different from the speaker’s” and 1 being “My", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 678, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 506, + 693 + ], + "score": 1.0, + "content": "image is the same as the speaker’s”. Further details of the model architecture (e.g. number of layers)", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 690, + 225, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 225, + 703 + ], + "score": 1.0, + "content": "are described in Appendix C.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 603, + 506, + 703 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 231, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 233, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 233, + 95 + ], + "score": 1.0, + "content": "2.3 OBVERTER TECHNIQUE", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 103, + 505, + 235 + ], + "lines": [ + { + "bbox": [ + 105, + 103, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 505, + 117 + ], + "score": 1.0, + "content": "Although our work is inspired by Batali (1998) (see Appendix A for the description of Batali", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 128 + ], + "score": 1.0, + "content": "(1998)), obverter technique is a general message generation philosophy used/discussed in a number", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 126, + 506, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 138 + ], + "score": 1.0, + "content": "of communication and language evolution studies (Hurford, 1989; Oliphant & Batali, 1997; Smith,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 136, + 506, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 506, + 149 + ], + "score": 1.0, + "content": "2001; Kirby & Hurford, 2002), which has its root in the theory of mind. Theory of mind (Premack", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 147, + 506, + 159 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 506, + 159 + ], + "score": 1.0, + "content": "& Woodruff, 1978) observes that a human has direct access only to one’s own mind and not to", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 158, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 505, + 171 + ], + "score": 1.0, + "content": "the others’. Therefore we typically assume that the mind of others is analogous to ours, and such", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 169, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 506, + 182 + ], + "score": 1.0, + "content": "assumption is reflected in the functional use of language (Bruner, 1981). For example, if we want to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 180, + 506, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 506, + 192 + ], + "score": 1.0, + "content": "convey a piece of information to the listener2, it is best to speak in a way that maximizes the listener’s", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 191, + 506, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 191, + 506, + 204 + ], + "score": 1.0, + "content": "understanding. However, since we cannot directly observe the listener’s state of mind, we cannot", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 202, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 506, + 214 + ], + "score": 1.0, + "content": "exactly solve this optimization problem. Therefore we posit that the listener’s mind operates in a", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 212, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 505, + 226 + ], + "score": 1.0, + "content": "similar manner as ours, and speak in a way that maximizes our understanding, thus approximately", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 225, + 483, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 483, + 237 + ], + "score": 1.0, + "content": "solving the optimization problem. This is exactly what the obverter technique tries to achieve.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 107, + 241, + 505, + 361 + ], + "lines": [ + { + "bbox": [ + 106, + 241, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 505, + 253 + ], + "score": 1.0, + "content": "When an agent becomes the teacher (i.e. speaker), the model parameters are fixed. The image is", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 251, + 507, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 507, + 265 + ], + "score": 1.0, + "content": "converted to an embedding via the visual module. After initializing its RNN hidden layer to zeros,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 262, + 503, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 255, + 276 + ], + "score": 1.0, + "content": "the teacher at each timestep evaluates", + "type": "text" + }, + { + "bbox": [ + 255, + 263, + 262, + 274 + ], + "score": 0.84, + "content": "\\hat { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 262, + 496, + 276 + ], + "score": 1.0, + "content": "for all possible symbols and selects the one that maximizes", + "type": "text" + }, + { + "bbox": [ + 497, + 264, + 503, + 274 + ], + "score": 0.82, + "content": "\\hat { y }", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "score": 1.0, + "content": "The RNN hidden vector induced by the chosen symbol is used in the next timestep. This is repeated", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 284, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 126, + 298 + ], + "score": 1.0, + "content": "until", + "type": "text" + }, + { + "bbox": [ + 127, + 285, + 133, + 296 + ], + "score": 0.84, + "content": "\\hat { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 284, + 505, + 298 + ], + "score": 1.0, + "content": "becomes bigger than the predefined threshold, or the maximum message length is reached (see", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 295, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 506, + 309 + ], + "score": 1.0, + "content": "Appendix D for algorithm). Therefore the teacher, through introspection, greedily selects characters", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 306, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 104, + 306, + 505, + 321 + ], + "score": 1.0, + "content": "at each timestep to generate a message such that the consistency between the image and the message", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 505, + 330 + ], + "score": 1.0, + "content": "is as clear to itself as possible. When an agent becomes the learner (i.e. listener), its parameters", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 328, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 414, + 342 + ], + "score": 1.0, + "content": "are updated via back-propagating the cross entropy loss between its output", + "type": "text" + }, + { + "bbox": [ + 415, + 329, + 421, + 340 + ], + "score": 0.85, + "content": "\\hat { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 328, + 496, + 342 + ], + "score": 1.0, + "content": "and the true label", + "type": "text" + }, + { + "bbox": [ + 497, + 330, + 503, + 340 + ], + "score": 0.71, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 328, + 506, + 342 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 339, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 506, + 353 + ], + "score": 1.0, + "content": "Therefore the agents must learn to communicate only from the true label indicating whether the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 351, + 309, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 309, + 362 + ], + "score": 1.0, + "content": "teacher and the learner are seeing the same object.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 367, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 105, + 366, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 505, + 380 + ], + "score": 1.0, + "content": "We remind the reader that only the learner’s RNN parameters are updated, and the teacher uses its", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 377, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 505, + 392 + ], + "score": 1.0, + "content": "fixed RNN. Therefore an agent uses only one RNN for both speaking and listening, guaranteeing", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 390, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 505, + 402 + ], + "score": 1.0, + "content": "self-consistency (see Appendix B for a detailed comparison between the obverter technique and the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 400, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 505, + 413 + ], + "score": 1.0, + "content": "RL-based approach). Furthermore, because the teacher’s parameters are fixed, message generation", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 412, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 506, + 423 + ], + "score": 1.0, + "content": "can easily be extended to be more exploratory. Although in this work we deterministically selected a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 421, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 447, + 435 + ], + "score": 1.0, + "content": "character in each timestep, one can, for example, sample characters proportionally to", + "type": "text" + }, + { + "bbox": [ + 447, + 423, + 454, + 434 + ], + "score": 0.84, + "content": "\\hat { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 421, + 506, + 435 + ], + "score": 1.0, + "content": "and still use", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 433, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 506, + 447 + ], + "score": 1.0, + "content": "gradient descent for training the agents. Using a more exploratory message generation strategy could", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 444, + 477, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 477, + 456 + ], + "score": 1.0, + "content": "help us discover a more optimal communication language when dealing with complex tasks.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 461, + 505, + 516 + ], + "lines": [ + { + "bbox": [ + 105, + 460, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 474 + ], + "score": 1.0, + "content": "Another feature of the obverter technique is that it observes the principle of least effort (Zipf, 1949).", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 471, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 336, + 485 + ], + "score": 1.0, + "content": "Because the teacher stops generating symbols as soon as", + "type": "text" + }, + { + "bbox": [ + 337, + 473, + 344, + 484 + ], + "score": 0.84, + "content": "\\hat { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 471, + 506, + 485 + ], + "score": 1.0, + "content": "reaches the threshold, it does not waste", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 483, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 506, + 496 + ], + "score": 1.0, + "content": "any more effort trying to perfect the message. The same principle was implemented in one way", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 494, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 506, + 507 + ], + "score": 1.0, + "content": "or another in previous works, such as choosing the shortest among the generated strings (Kirby &", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 504, + 489, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 489, + 518 + ], + "score": 1.0, + "content": "Hurford, 2002) or imposing a small cost for generating a message (Mordatch & Abbeel, 2017).", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34 + }, + { + "type": "title", + "bbox": [ + 109, + 531, + 423, + 542 + ], + "lines": [ + { + "bbox": [ + 106, + 531, + 425, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 425, + 543 + ], + "score": 1.0, + "content": "2.4 ENVIRONMENTAL PRESSURE FOR COMPOSITIONAL COMMUNICATION", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 551, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 551, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 506, + 565 + ], + "score": 1.0, + "content": "During the early stages of research, we noticed that randomly sampling object pairs (one for the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 564, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 575 + ], + "score": 1.0, + "content": "teacher, one for the learner) lead to agents focusing only on colors and ignoring shapes. When the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 573, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 293, + 586 + ], + "score": 1.0, + "content": "teacher’s object is fixed, there are 40 (8 colors", + "type": "text" + }, + { + "bbox": [ + 294, + 574, + 311, + 584 + ], + "score": 0.72, + "content": "\\times 5", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 573, + 505, + 586 + ], + "score": 1.0, + "content": "shapes) possibilities on the learner’s side. If the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 584, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 505, + 596 + ], + "score": 1.0, + "content": "teacher only talks about the color of the object, the learner can correctly decide for 36 out of 40", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 595, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 506, + 609 + ], + "score": 1.0, + "content": "possible object types. The learner makes incorrect decisions only when the teacher and the learner", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 606, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 371, + 619 + ], + "score": 1.0, + "content": "are given objects of the same color but different shapes, resulting in", + "type": "text" + }, + { + "bbox": [ + 371, + 606, + 391, + 617 + ], + "score": 0.88, + "content": "9 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 606, + 506, + 619 + ], + "score": 1.0, + "content": "accuracy on average. This is", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "actually what we observed; the accuracy plateaued between 0.9 and 0.92 during the training, and the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 628, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 505, + 641 + ], + "score": 1.0, + "content": "messages were more or less the same for objects with the same color. Therefore when constructing a", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 639, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 224, + 652 + ], + "score": 1.0, + "content": "mini-batch of images, we set", + "type": "text" + }, + { + "bbox": [ + 224, + 640, + 244, + 650 + ], + "score": 0.87, + "content": "2 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 639, + 446, + 652 + ], + "score": 1.0, + "content": "to be the object pairs of the same color and shape,", + "type": "text" + }, + { + "bbox": [ + 447, + 640, + 466, + 650 + ], + "score": 0.86, + "content": "30 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 639, + 505, + 652 + ], + "score": 1.0, + "content": "the same", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 650, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 212, + 663 + ], + "score": 1.0, + "content": "shape but different colors,", + "type": "text" + }, + { + "bbox": [ + 212, + 650, + 231, + 660 + ], + "score": 0.86, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 650, + 435, + 663 + ], + "score": 1.0, + "content": "the same color but different shapes. The remaining", + "type": "text" + }, + { + "bbox": [ + 436, + 651, + 456, + 661 + ], + "score": 0.86, + "content": "2 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 650, + 505, + 663 + ], + "score": 1.0, + "content": "object pairs", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 661, + 205, + 674 + ], + "spans": [ + { + "bbox": [ + 106, + 661, + 205, + 674 + ], + "score": 1.0, + "content": "were picked randomly3.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 109, + 678, + 504, + 700 + ], + "lines": [ + { + "bbox": [ + 107, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 107, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "Vocabulary size (i.e. number of unique symbols) and the maximum message length were also", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 688, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 702 + ], + "score": 1.0, + "content": "influential to the final outcome. We noticed that a larger vocabulary and a longer message length", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 116, + 710, + 502, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 708, + 498, + 723 + ], + "spans": [ + { + "bbox": [ + 118, + 708, + 498, + 723 + ], + "score": 1.0, + "content": "2We assume the listener cannot speak but only listen. Therefore the listener’s mind is completely hidden.", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 118, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "3Other ratios could equally work well, but we empirically found this ratio to be effective in many experiments", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 231, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 233, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 233, + 95 + ], + "score": 1.0, + "content": "2.3 OBVERTER TECHNIQUE", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 103, + 505, + 235 + ], + "lines": [ + { + "bbox": [ + 105, + 103, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 505, + 117 + ], + "score": 1.0, + "content": "Although our work is inspired by Batali (1998) (see Appendix A for the description of Batali", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 128 + ], + "score": 1.0, + "content": "(1998)), obverter technique is a general message generation philosophy used/discussed in a number", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 126, + 506, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 138 + ], + "score": 1.0, + "content": "of communication and language evolution studies (Hurford, 1989; Oliphant & Batali, 1997; Smith,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 136, + 506, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 506, + 149 + ], + "score": 1.0, + "content": "2001; Kirby & Hurford, 2002), which has its root in the theory of mind. Theory of mind (Premack", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 147, + 506, + 159 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 506, + 159 + ], + "score": 1.0, + "content": "& Woodruff, 1978) observes that a human has direct access only to one’s own mind and not to", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 158, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 505, + 171 + ], + "score": 1.0, + "content": "the others’. Therefore we typically assume that the mind of others is analogous to ours, and such", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 169, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 506, + 182 + ], + "score": 1.0, + "content": "assumption is reflected in the functional use of language (Bruner, 1981). For example, if we want to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 180, + 506, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 506, + 192 + ], + "score": 1.0, + "content": "convey a piece of information to the listener2, it is best to speak in a way that maximizes the listener’s", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 191, + 506, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 191, + 506, + 204 + ], + "score": 1.0, + "content": "understanding. However, since we cannot directly observe the listener’s state of mind, we cannot", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 202, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 506, + 214 + ], + "score": 1.0, + "content": "exactly solve this optimization problem. Therefore we posit that the listener’s mind operates in a", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 212, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 505, + 226 + ], + "score": 1.0, + "content": "similar manner as ours, and speak in a way that maximizes our understanding, thus approximately", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 225, + 483, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 483, + 237 + ], + "score": 1.0, + "content": "solving the optimization problem. This is exactly what the obverter technique tries to achieve.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 103, + 506, + 237 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 241, + 505, + 361 + ], + "lines": [ + { + "bbox": [ + 106, + 241, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 505, + 253 + ], + "score": 1.0, + "content": "When an agent becomes the teacher (i.e. speaker), the model parameters are fixed. The image is", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 251, + 507, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 507, + 265 + ], + "score": 1.0, + "content": "converted to an embedding via the visual module. After initializing its RNN hidden layer to zeros,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 262, + 503, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 255, + 276 + ], + "score": 1.0, + "content": "the teacher at each timestep evaluates", + "type": "text" + }, + { + "bbox": [ + 255, + 263, + 262, + 274 + ], + "score": 0.84, + "content": "\\hat { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 262, + 496, + 276 + ], + "score": 1.0, + "content": "for all possible symbols and selects the one that maximizes", + "type": "text" + }, + { + "bbox": [ + 497, + 264, + 503, + 274 + ], + "score": 0.82, + "content": "\\hat { y }", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "score": 1.0, + "content": "The RNN hidden vector induced by the chosen symbol is used in the next timestep. This is repeated", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 284, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 126, + 298 + ], + "score": 1.0, + "content": "until", + "type": "text" + }, + { + "bbox": [ + 127, + 285, + 133, + 296 + ], + "score": 0.84, + "content": "\\hat { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 284, + 505, + 298 + ], + "score": 1.0, + "content": "becomes bigger than the predefined threshold, or the maximum message length is reached (see", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 295, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 506, + 309 + ], + "score": 1.0, + "content": "Appendix D for algorithm). Therefore the teacher, through introspection, greedily selects characters", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 306, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 104, + 306, + 505, + 321 + ], + "score": 1.0, + "content": "at each timestep to generate a message such that the consistency between the image and the message", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 505, + 330 + ], + "score": 1.0, + "content": "is as clear to itself as possible. When an agent becomes the learner (i.e. listener), its parameters", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 328, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 414, + 342 + ], + "score": 1.0, + "content": "are updated via back-propagating the cross entropy loss between its output", + "type": "text" + }, + { + "bbox": [ + 415, + 329, + 421, + 340 + ], + "score": 0.85, + "content": "\\hat { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 328, + 496, + 342 + ], + "score": 1.0, + "content": "and the true label", + "type": "text" + }, + { + "bbox": [ + 497, + 330, + 503, + 340 + ], + "score": 0.71, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 328, + 506, + 342 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 339, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 506, + 353 + ], + "score": 1.0, + "content": "Therefore the agents must learn to communicate only from the true label indicating whether the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 351, + 309, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 309, + 362 + ], + "score": 1.0, + "content": "teacher and the learner are seeing the same object.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 18, + "bbox_fs": [ + 104, + 241, + 507, + 362 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 367, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 105, + 366, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 505, + 380 + ], + "score": 1.0, + "content": "We remind the reader that only the learner’s RNN parameters are updated, and the teacher uses its", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 377, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 505, + 392 + ], + "score": 1.0, + "content": "fixed RNN. Therefore an agent uses only one RNN for both speaking and listening, guaranteeing", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 390, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 505, + 402 + ], + "score": 1.0, + "content": "self-consistency (see Appendix B for a detailed comparison between the obverter technique and the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 400, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 505, + 413 + ], + "score": 1.0, + "content": "RL-based approach). Furthermore, because the teacher’s parameters are fixed, message generation", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 412, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 506, + 423 + ], + "score": 1.0, + "content": "can easily be extended to be more exploratory. Although in this work we deterministically selected a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 421, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 447, + 435 + ], + "score": 1.0, + "content": "character in each timestep, one can, for example, sample characters proportionally to", + "type": "text" + }, + { + "bbox": [ + 447, + 423, + 454, + 434 + ], + "score": 0.84, + "content": "\\hat { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 421, + 506, + 435 + ], + "score": 1.0, + "content": "and still use", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 433, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 506, + 447 + ], + "score": 1.0, + "content": "gradient descent for training the agents. Using a more exploratory message generation strategy could", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 444, + 477, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 477, + 456 + ], + "score": 1.0, + "content": "help us discover a more optimal communication language when dealing with complex tasks.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 366, + 506, + 456 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 461, + 505, + 516 + ], + "lines": [ + { + "bbox": [ + 105, + 460, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 474 + ], + "score": 1.0, + "content": "Another feature of the obverter technique is that it observes the principle of least effort (Zipf, 1949).", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 471, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 336, + 485 + ], + "score": 1.0, + "content": "Because the teacher stops generating symbols as soon as", + "type": "text" + }, + { + "bbox": [ + 337, + 473, + 344, + 484 + ], + "score": 0.84, + "content": "\\hat { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 471, + 506, + 485 + ], + "score": 1.0, + "content": "reaches the threshold, it does not waste", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 483, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 506, + 496 + ], + "score": 1.0, + "content": "any more effort trying to perfect the message. The same principle was implemented in one way", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 494, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 506, + 507 + ], + "score": 1.0, + "content": "or another in previous works, such as choosing the shortest among the generated strings (Kirby &", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 504, + 489, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 489, + 518 + ], + "score": 1.0, + "content": "Hurford, 2002) or imposing a small cost for generating a message (Mordatch & Abbeel, 2017).", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 460, + 506, + 518 + ] + }, + { + "type": "title", + "bbox": [ + 109, + 531, + 423, + 542 + ], + "lines": [ + { + "bbox": [ + 106, + 531, + 425, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 425, + 543 + ], + "score": 1.0, + "content": "2.4 ENVIRONMENTAL PRESSURE FOR COMPOSITIONAL COMMUNICATION", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 551, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 551, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 506, + 565 + ], + "score": 1.0, + "content": "During the early stages of research, we noticed that randomly sampling object pairs (one for the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 564, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 575 + ], + "score": 1.0, + "content": "teacher, one for the learner) lead to agents focusing only on colors and ignoring shapes. When the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 573, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 293, + 586 + ], + "score": 1.0, + "content": "teacher’s object is fixed, there are 40 (8 colors", + "type": "text" + }, + { + "bbox": [ + 294, + 574, + 311, + 584 + ], + "score": 0.72, + "content": "\\times 5", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 573, + 505, + 586 + ], + "score": 1.0, + "content": "shapes) possibilities on the learner’s side. If the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 584, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 505, + 596 + ], + "score": 1.0, + "content": "teacher only talks about the color of the object, the learner can correctly decide for 36 out of 40", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 595, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 506, + 609 + ], + "score": 1.0, + "content": "possible object types. The learner makes incorrect decisions only when the teacher and the learner", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 606, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 371, + 619 + ], + "score": 1.0, + "content": "are given objects of the same color but different shapes, resulting in", + "type": "text" + }, + { + "bbox": [ + 371, + 606, + 391, + 617 + ], + "score": 0.88, + "content": "9 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 606, + 506, + 619 + ], + "score": 1.0, + "content": "accuracy on average. This is", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "actually what we observed; the accuracy plateaued between 0.9 and 0.92 during the training, and the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 628, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 505, + 641 + ], + "score": 1.0, + "content": "messages were more or less the same for objects with the same color. Therefore when constructing a", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 639, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 224, + 652 + ], + "score": 1.0, + "content": "mini-batch of images, we set", + "type": "text" + }, + { + "bbox": [ + 224, + 640, + 244, + 650 + ], + "score": 0.87, + "content": "2 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 639, + 446, + 652 + ], + "score": 1.0, + "content": "to be the object pairs of the same color and shape,", + "type": "text" + }, + { + "bbox": [ + 447, + 640, + 466, + 650 + ], + "score": 0.86, + "content": "30 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 639, + 505, + 652 + ], + "score": 1.0, + "content": "the same", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 650, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 212, + 663 + ], + "score": 1.0, + "content": "shape but different colors,", + "type": "text" + }, + { + "bbox": [ + 212, + 650, + 231, + 660 + ], + "score": 0.86, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 650, + 435, + 663 + ], + "score": 1.0, + "content": "the same color but different shapes. The remaining", + "type": "text" + }, + { + "bbox": [ + 436, + 651, + 456, + 661 + ], + "score": 0.86, + "content": "2 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 650, + 505, + 663 + ], + "score": 1.0, + "content": "object pairs", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 661, + 205, + 674 + ], + "spans": [ + { + "bbox": [ + 106, + 661, + 205, + 674 + ], + "score": 1.0, + "content": "were picked randomly3.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 551, + 506, + 674 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 678, + 504, + 700 + ], + "lines": [ + { + "bbox": [ + 107, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 107, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "Vocabulary size (i.e. number of unique symbols) and the maximum message length were also", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 688, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 702 + ], + "score": 1.0, + "content": "influential to the final outcome. We noticed that a larger vocabulary and a longer message length", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "helped the agents achieve a high communication accuracy more easily. But the resulting messages", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "were more challenging to analyze for compositional patterns. In all our experiments we used 5 and", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "20 respectively for the vocabulary size and the maximum message length, similar to what Batali", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 129 + ], + "score": 1.0, + "content": "(1998) used. This suggests that the environment plays as important, if not more, role as the model", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 505, + 140 + ], + "score": 1.0, + "content": "architecture in the emergence of complex communication as discussed by previous studies (Kirby", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 505, + 149 + ], + "score": 1.0, + "content": "et al., 2014; Bratman et al., 2010; Kottur et al., 2017) and should be a main consideration for future", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 426, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 426, + 162 + ], + "score": 1.0, + "content": "efforts. Further details regarding hyperparameters are described in Appendix E.", + "type": "text", + "cross_page": true + } + ], + "index": 6 + } + ], + "index": 49.5, + "bbox_fs": [ + 106, + 678, + 505, + 702 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 160 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "helped the agents achieve a high communication accuracy more easily. But the resulting messages", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "were more challenging to analyze for compositional patterns. In all our experiments we used 5 and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "20 respectively for the vocabulary size and the maximum message length, similar to what Batali", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 129 + ], + "score": 1.0, + "content": "(1998) used. This suggests that the environment plays as important, if not more, role as the model", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 505, + 140 + ], + "score": 1.0, + "content": "architecture in the emergence of complex communication as discussed by previous studies (Kirby", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 505, + 149 + ], + "score": 1.0, + "content": "et al., 2014; Bratman et al., 2010; Kottur et al., 2017) and should be a main consideration for future", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 426, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 426, + 162 + ], + "score": 1.0, + "content": "efforts. Further details regarding hyperparameters are described in Appendix E.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 108, + 178, + 200, + 190 + ], + "lines": [ + { + "bbox": [ + 104, + 176, + 202, + 193 + ], + "spans": [ + { + "bbox": [ + 104, + 176, + 202, + 193 + ], + "score": 1.0, + "content": "3 EXPERIMENTS", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 505, + 303 + ], + "lines": [ + { + "bbox": [ + 106, + 204, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 505, + 217 + ], + "score": 1.0, + "content": "In this section, we first study the convergence behavior during the training phase. Then we analyze", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 215, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 506, + 228 + ], + "score": 1.0, + "content": "the language developed by the agents in terms of compositionality. As stated in the introduction,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 226, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 506, + 239 + ], + "score": 1.0, + "content": "in compositional language, the meaning of a complex expression is determined by its structure", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 236, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 506, + 250 + ], + "score": 1.0, + "content": "and the meanings of its constituents. With this definition in mind, we focus on two aspects of the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 248, + 506, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 506, + 261 + ], + "score": 1.0, + "content": "inter-agent communication to evaluate its compositional properties: the structure (i.e. grammar) of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 258, + 507, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 507, + 272 + ], + "score": 1.0, + "content": "the communication, and zero-shot performance (i.e. generalizing to novel stimuli). These two aspects,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 270, + 506, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 506, + 283 + ], + "score": 1.0, + "content": "which are both necessary conditions for any language to be considered compositional, have been", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 281, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 506, + 294 + ], + "score": 1.0, + "content": "used by previous works to study the compositional nature of artificial communication (Batali, 1998;", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 292, + 297, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 297, + 304 + ], + "score": 1.0, + "content": "Mordatch & Abbeel, 2017; Kottur et al., 2017).", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 308, + 505, + 375 + ], + "lines": [ + { + "bbox": [ + 105, + 307, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 506, + 322 + ], + "score": 1.0, + "content": "To evaluate the structure of the messages, we study the evolution of the communication as training", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 320, + 506, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 506, + 332 + ], + "score": 1.0, + "content": "proceeds, and try to derive a grammar for expressing colors and shapes. To evaluate the zero-shot", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 331, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 505, + 343 + ], + "score": 1.0, + "content": "capabilities, we test if the agents can compose consistent messages for objects they have not seen", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 342, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 353 + ], + "score": 1.0, + "content": "during the training. Moreover, we visualize the image embeddings from the visual modules of both", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 352, + 507, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 507, + 365 + ], + "score": 1.0, + "content": "agents to understand how they are recognizing colors and shapes, the results of which, for a better", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 363, + 302, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 302, + 375 + ], + "score": 1.0, + "content": "view of the figures, are provided in Appendix H.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5 + }, + { + "type": "title", + "bbox": [ + 107, + 390, + 244, + 401 + ], + "lines": [ + { + "bbox": [ + 106, + 390, + 245, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 245, + 402 + ], + "score": 1.0, + "content": "3.1 CONVERGENCE BEHAVIOR", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "image", + "bbox": [ + 117, + 417, + 495, + 573 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 417, + 495, + 573 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 417, + 495, + 573 + ], + "spans": [ + { + "bbox": [ + 117, + 417, + 495, + 573 + ], + "score": 0.97, + "type": "image", + "image_path": "e4918ef563341b6e90dc729d2d56d92b62fe35943fcf79abaaa0650a641662d6.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 117, + 417, + 495, + 469.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 117, + 469.0, + 495, + 521.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 117, + 521.0, + 495, + 573.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 583, + 506, + 638 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 582, + 507, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 507, + 596 + ], + "score": 1.0, + "content": "Figure 4: Progress during the training (best seen in color). (Top) We plot the training accuracy,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "training loss, average message length and average message distinctness in each round. (Bottom) We", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 605, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 617 + ], + "score": 1.0, + "content": "plot the perplexities and the Jaccard similarity of the messages spoken by both agents in each round.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 613, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 104, + 613, + 506, + 631 + ], + "score": 1.0, + "content": "Note that the average message length and the perplexities are divided by 20 to match the y-axis range", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 626, + 184, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 184, + 639 + ], + "score": 1.0, + "content": "with other metrics.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29 + } + ], + "index": 27.0 + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "Figure 4 shows the convergence behavior during the training. Training accuracy was calculated by", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "rounding the learner’s sigmoid output by 0.5. Message distinctness was calculated by dividing the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 676, + 507, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 507, + 690 + ], + "score": 1.0, + "content": "number of unique messages in the mini-batch by the size of the mini-batch. Ideally there should be,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "on average, 40 distinct messages in the mini-batch of 50 images, therefore giving us 0.8 distinctness.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Every 10 round, both agents were given the same 1, 000 randomly sampled images to generate 1, 000", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "message pairs. Then perplexity was calculated for each object type and averaged, thus indicating the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "score": 1.0, + "content": "average number of distinct messages used by the agents to describe a single object type (note that", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35 + } + ], + "page_idx": 4, + "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, + 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, + 160 + ], + "lines": [], + "index": 3, + "bbox_fs": [ + 105, + 81, + 506, + 162 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 178, + 200, + 190 + ], + "lines": [ + { + "bbox": [ + 104, + 176, + 202, + 193 + ], + "spans": [ + { + "bbox": [ + 104, + 176, + 202, + 193 + ], + "score": 1.0, + "content": "3 EXPERIMENTS", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 505, + 303 + ], + "lines": [ + { + "bbox": [ + 106, + 204, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 505, + 217 + ], + "score": 1.0, + "content": "In this section, we first study the convergence behavior during the training phase. Then we analyze", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 215, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 506, + 228 + ], + "score": 1.0, + "content": "the language developed by the agents in terms of compositionality. As stated in the introduction,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 226, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 506, + 239 + ], + "score": 1.0, + "content": "in compositional language, the meaning of a complex expression is determined by its structure", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 236, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 506, + 250 + ], + "score": 1.0, + "content": "and the meanings of its constituents. With this definition in mind, we focus on two aspects of the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 248, + 506, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 506, + 261 + ], + "score": 1.0, + "content": "inter-agent communication to evaluate its compositional properties: the structure (i.e. grammar) of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 258, + 507, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 507, + 272 + ], + "score": 1.0, + "content": "the communication, and zero-shot performance (i.e. generalizing to novel stimuli). These two aspects,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 270, + 506, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 506, + 283 + ], + "score": 1.0, + "content": "which are both necessary conditions for any language to be considered compositional, have been", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 281, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 506, + 294 + ], + "score": 1.0, + "content": "used by previous works to study the compositional nature of artificial communication (Batali, 1998;", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 292, + 297, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 297, + 304 + ], + "score": 1.0, + "content": "Mordatch & Abbeel, 2017; Kottur et al., 2017).", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 204, + 507, + 304 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 308, + 505, + 375 + ], + "lines": [ + { + "bbox": [ + 105, + 307, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 506, + 322 + ], + "score": 1.0, + "content": "To evaluate the structure of the messages, we study the evolution of the communication as training", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 320, + 506, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 506, + 332 + ], + "score": 1.0, + "content": "proceeds, and try to derive a grammar for expressing colors and shapes. To evaluate the zero-shot", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 331, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 505, + 343 + ], + "score": 1.0, + "content": "capabilities, we test if the agents can compose consistent messages for objects they have not seen", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 342, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 353 + ], + "score": 1.0, + "content": "during the training. Moreover, we visualize the image embeddings from the visual modules of both", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 352, + 507, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 507, + 365 + ], + "score": 1.0, + "content": "agents to understand how they are recognizing colors and shapes, the results of which, for a better", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 363, + 302, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 302, + 375 + ], + "score": 1.0, + "content": "view of the figures, are provided in Appendix H.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 307, + 507, + 375 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 390, + 244, + 401 + ], + "lines": [ + { + "bbox": [ + 106, + 390, + 245, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 245, + 402 + ], + "score": 1.0, + "content": "3.1 CONVERGENCE BEHAVIOR", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "image", + "bbox": [ + 117, + 417, + 495, + 573 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 417, + 495, + 573 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 417, + 495, + 573 + ], + "spans": [ + { + "bbox": [ + 117, + 417, + 495, + 573 + ], + "score": 0.97, + "type": "image", + "image_path": "e4918ef563341b6e90dc729d2d56d92b62fe35943fcf79abaaa0650a641662d6.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 117, + 417, + 495, + 469.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 117, + 469.0, + 495, + 521.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 117, + 521.0, + 495, + 573.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 583, + 506, + 638 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 582, + 507, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 507, + 596 + ], + "score": 1.0, + "content": "Figure 4: Progress during the training (best seen in color). (Top) We plot the training accuracy,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "training loss, average message length and average message distinctness in each round. (Bottom) We", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 605, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 617 + ], + "score": 1.0, + "content": "plot the perplexities and the Jaccard similarity of the messages spoken by both agents in each round.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 613, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 104, + 613, + 506, + 631 + ], + "score": 1.0, + "content": "Note that the average message length and the perplexities are divided by 20 to match the y-axis range", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 626, + 184, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 184, + 639 + ], + "score": 1.0, + "content": "with other metrics.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29 + } + ], + "index": 27.0 + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "Figure 4 shows the convergence behavior during the training. Training accuracy was calculated by", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "rounding the learner’s sigmoid output by 0.5. Message distinctness was calculated by dividing the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 676, + 507, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 507, + 690 + ], + "score": 1.0, + "content": "number of unique messages in the mini-batch by the size of the mini-batch. Ideally there should be,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "on average, 40 distinct messages in the mini-batch of 50 images, therefore giving us 0.8 distinctness.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Every 10 round, both agents were given the same 1, 000 randomly sampled images to generate 1, 000", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "message pairs. Then perplexity was calculated for each object type and averaged, thus indicating the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "score": 1.0, + "content": "average number of distinct messages used by the agents to describe a single object type (note that", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "perplexities in the plot was divided by 20). Jaccard similarity between both agents’ messages was", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 306, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 306, + 106 + ], + "score": 1.0, + "content": "also calculated for each object type and averaged.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 655, + 507, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "perplexities in the plot was divided by 20). Jaccard similarity between both agents’ messages was", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 306, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 306, + 106 + ], + "score": 1.0, + "content": "also calculated for each object type and averaged.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 110, + 505, + 242 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 505, + 123 + ], + "score": 1.0, + "content": "At the beginning, the listener (i.e. learner) always decides it is not seeing the same object as the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 121, + 506, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 506, + 135 + ], + "score": 1.0, + "content": "speaker, giving us 0.75 accuracy4. But after 7, 000 rounds, accuracy starts to go beyond 0.9. Loss", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 131, + 507, + 146 + ], + "spans": [ + { + "bbox": [ + 104, + 131, + 507, + 146 + ], + "score": 1.0, + "content": "is negatively correlated with accuracy until round 15, 000, where it starts to fluctuate. Accuracy,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "score": 1.0, + "content": "however, remains high due to how accuracy is measured; by rounding the learner’s output by 0.5.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "score": 1.0, + "content": "Although we could occasionally observe some patterns in the messages when both accuracy and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 506, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 179 + ], + "score": 1.0, + "content": "loss were high, a lower loss generally resulted in a clearer communication structure (i.e. grammar)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 175, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 190 + ], + "score": 1.0, + "content": "and better zero-shot performance. The loss fluctuation also indicates some instability in the training", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 506, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 506, + 201 + ], + "score": 1.0, + "content": "process, which is a potential direction for future work. Message distinctness starts at near 0, indicating", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "the agents are generating the same message for all object types. After round 7, 000, where both", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 208, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 505, + 223 + ], + "score": 1.0, + "content": "message distinctness and message length reach their maximum, both start to decrease. But message", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 221, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 505, + 233 + ], + "score": 1.0, + "content": "distinctness never goes as high as the ideal 0.8, meaning that the agents are occasionally using the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 437, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 437, + 243 + ], + "score": 1.0, + "content": "same message for different object types, as will be shown in the following section.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 107, + 248, + 505, + 369 + ], + "lines": [ + { + "bbox": [ + 105, + 247, + 506, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 506, + 260 + ], + "score": 1.0, + "content": "Both perplexities and Jaccard similarity show seemingly meaningless fluctuation at early rounds.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 258, + 506, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 506, + 273 + ], + "score": 1.0, + "content": "After round 7, 000, perplexities and Jaccard similarity show negatively correlated behavior, meaning", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "that not only is each agent using consistent messages to describe each object type, but also both", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 281, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 505, + 293 + ], + "score": 1.0, + "content": "agents are using very similar messages to describe each object type. We found perplexity and Jaccard", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 293, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 505, + 304 + ], + "score": 1.0, + "content": "similarity to be an important indicator of the degree of the communication structure. During rounds", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 303, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 170, + 314 + ], + "score": 0.8, + "content": "7 , 0 0 0 \\sim 8 , 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 303, + 505, + 316 + ], + "score": 1.0, + "content": ", performance was excellent in terms of loss and accuracy, but perplexity was high", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "and Jaccard similarity low, indicating the agents were assigning incoherent strings to each object", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 325, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 505, + 338 + ], + "score": 1.0, + "content": "type just to win the game. Similar behavior was observed in the early stages of language evolution", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 335, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 349 + ], + "score": 1.0, + "content": "simulation in Kirby & Hurford (2002) where words represented some meanings but had no structure", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 347, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 506, + 359 + ], + "score": 1.0, + "content": "(i.e. protolanguage). It seems that artificial communication acquires compositional properties after", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 358, + 479, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 479, + 370 + ], + "score": 1.0, + "content": "the emergence of protolanguage regardless of whether the input is entangled or disentangled.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 19 + }, + { + "type": "title", + "bbox": [ + 108, + 383, + 223, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 383, + 225, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 225, + 395 + ], + "score": 1.0, + "content": "3.2 GRAMMAR ANALYSIS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 108, + 403, + 504, + 448 + ], + "lines": [ + { + "bbox": [ + 106, + 403, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 506, + 416 + ], + "score": 1.0, + "content": "We choose agents from different training rounds to highlight how the language becomes more", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 414, + 506, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 506, + 428 + ], + "score": 1.0, + "content": "structured over time. Table 1 shows agents’ messages in the beginning (round 40), when the training", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 425, + 506, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 230, + 439 + ], + "score": 1.0, + "content": "accuracy starts pushing beyond", + "type": "text" + }, + { + "bbox": [ + 230, + 425, + 249, + 437 + ], + "score": 0.87, + "content": "9 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 426, + 506, + 439 + ], + "score": 1.0, + "content": "(round 6, 940), when agents settle on a common language (round", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 437, + 144, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 144, + 449 + ], + "score": 1.0, + "content": "16, 760).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 453, + 505, + 618 + ], + "lines": [ + { + "bbox": [ + 105, + 454, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 505, + 466 + ], + "score": 1.0, + "content": "In round 40, both agents are respectively producing the same message for all object types as mentioned", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 464, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 505, + 478 + ], + "score": 1.0, + "content": "in section 3.1. We might say the messages are structured, but considering that the listener always", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 475, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 506, + 489 + ], + "score": 1.0, + "content": "answers 0 in early rounds, we cannot say the agents are communicating. In round 6, 940, which is", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "roughly when the agents begin to communicate more efficiently, training accuracy is significantly", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 496, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 506, + 511 + ], + "score": 1.0, + "content": "higher than round 40. However, perplexities show that both agents are assigning many names to a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 507, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 505, + 523 + ], + "score": 1.0, + "content": "single object type (40-80 names depending on the object type), indicating that the agents are focusing", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 519, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 506, + 533 + ], + "score": 1.0, + "content": "on pixel-level differences between images of the same object type. Table 1 shows, as an example,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 531, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 506, + 543 + ], + "score": 1.0, + "content": "the messages used by both agents to describe the red sphere. Due to high perplexity, it is difficult", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 542, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 506, + 554 + ], + "score": 1.0, + "content": "to capture the underlying grammar of the messages even with regular expression. Furthermore, as", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 551, + 506, + 566 + ], + "spans": [ + { + "bbox": [ + 104, + 551, + 506, + 566 + ], + "score": 1.0, + "content": "Jaccard similarity indicates, both agents are generating completely different messages for the same", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 563, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 576 + ], + "score": 1.0, + "content": "object type. In round 16, 760, as the perplexities and Jaccard similarity tell us, the agents came to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 573, + 507, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 507, + 588 + ], + "score": 1.0, + "content": "share a very narrow set of names for each object type (1-4 names depending on the object type).", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 585, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 506, + 598 + ], + "score": 1.0, + "content": "Moreover, the names of the same-colored objects and same-shaped objects clearly seem to follow a", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "pattern. Overall, each of the three phases (round 40, round 6,940, round 16,760) seem to represent", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 607, + 475, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 475, + 620 + ], + "score": 1.0, + "content": "the development of visual perception, learning to communicate, and emergence of structure.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 623, + 505, + 712 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 505, + 636 + ], + "score": 1.0, + "content": "We found the messages in round 16, 760 could be decomposed in a similar manner as Table 6 in", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 634, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 506, + 648 + ], + "score": 1.0, + "content": "Appendix A. The top of Table 2 shows a possible decomposition of the messages from round 16, 760", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 645, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 505, + 659 + ], + "score": 1.0, + "content": "and the bottom shows the rules for each color and shape derived from the decomposition. According", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 657, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 505, + 669 + ], + "score": 1.0, + "content": "to our analysis, the agents use the first part of the message (i.e. prefix) to specify a shape, and the", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 667, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 681 + ], + "score": 1.0, + "content": "second part (i.e. suffix) to specify a color. However, they use two different strings to specify a shape.", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 678, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 506, + 693 + ], + "score": 1.0, + "content": "For example, the agents use either aaaa or bbbbb to describe a box. The strings used for specifying", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 690, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 506, + 702 + ], + "score": 1.0, + "content": "colors show slightly weaker regularity. For example, red is always described by either the suffix c or", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 701, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 505, + 713 + ], + "score": 1.0, + "content": "suffix e, but magenta is described by the suffix bb, bd, and sometimes b or bc. a used for ¯ gray objects", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 48.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 118, + 721, + 417, + 731 + ], + "lines": [ + { + "bbox": [ + 118, + 720, + 418, + 733 + ], + "spans": [ + { + "bbox": [ + 118, + 720, + 183, + 733 + ], + "score": 1.0, + "content": "4Note that we set", + "type": "text" + }, + { + "bbox": [ + 183, + 721, + 201, + 731 + ], + "score": 0.87, + "content": "2 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 720, + 418, + 733 + ], + "score": 1.0, + "content": "of the mini-batch to be objects of the same color and shape.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 106 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 110, + 505, + 242 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 505, + 123 + ], + "score": 1.0, + "content": "At the beginning, the listener (i.e. learner) always decides it is not seeing the same object as the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 121, + 506, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 506, + 135 + ], + "score": 1.0, + "content": "speaker, giving us 0.75 accuracy4. But after 7, 000 rounds, accuracy starts to go beyond 0.9. Loss", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 131, + 507, + 146 + ], + "spans": [ + { + "bbox": [ + 104, + 131, + 507, + 146 + ], + "score": 1.0, + "content": "is negatively correlated with accuracy until round 15, 000, where it starts to fluctuate. Accuracy,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "score": 1.0, + "content": "however, remains high due to how accuracy is measured; by rounding the learner’s output by 0.5.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "score": 1.0, + "content": "Although we could occasionally observe some patterns in the messages when both accuracy and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 506, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 179 + ], + "score": 1.0, + "content": "loss were high, a lower loss generally resulted in a clearer communication structure (i.e. grammar)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 175, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 190 + ], + "score": 1.0, + "content": "and better zero-shot performance. The loss fluctuation also indicates some instability in the training", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 506, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 506, + 201 + ], + "score": 1.0, + "content": "process, which is a potential direction for future work. Message distinctness starts at near 0, indicating", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "the agents are generating the same message for all object types. After round 7, 000, where both", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 208, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 505, + 223 + ], + "score": 1.0, + "content": "message distinctness and message length reach their maximum, both start to decrease. But message", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 221, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 505, + 233 + ], + "score": 1.0, + "content": "distinctness never goes as high as the ideal 0.8, meaning that the agents are occasionally using the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 437, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 437, + 243 + ], + "score": 1.0, + "content": "same message for different object types, as will be shown in the following section.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 7.5, + "bbox_fs": [ + 104, + 111, + 507, + 243 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 248, + 505, + 369 + ], + "lines": [ + { + "bbox": [ + 105, + 247, + 506, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 506, + 260 + ], + "score": 1.0, + "content": "Both perplexities and Jaccard similarity show seemingly meaningless fluctuation at early rounds.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 258, + 506, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 506, + 273 + ], + "score": 1.0, + "content": "After round 7, 000, perplexities and Jaccard similarity show negatively correlated behavior, meaning", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "that not only is each agent using consistent messages to describe each object type, but also both", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 281, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 505, + 293 + ], + "score": 1.0, + "content": "agents are using very similar messages to describe each object type. We found perplexity and Jaccard", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 293, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 505, + 304 + ], + "score": 1.0, + "content": "similarity to be an important indicator of the degree of the communication structure. During rounds", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 303, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 170, + 314 + ], + "score": 0.8, + "content": "7 , 0 0 0 \\sim 8 , 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 303, + 505, + 316 + ], + "score": 1.0, + "content": ", performance was excellent in terms of loss and accuracy, but perplexity was high", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "and Jaccard similarity low, indicating the agents were assigning incoherent strings to each object", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 325, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 505, + 338 + ], + "score": 1.0, + "content": "type just to win the game. Similar behavior was observed in the early stages of language evolution", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 335, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 349 + ], + "score": 1.0, + "content": "simulation in Kirby & Hurford (2002) where words represented some meanings but had no structure", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 347, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 506, + 359 + ], + "score": 1.0, + "content": "(i.e. protolanguage). It seems that artificial communication acquires compositional properties after", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 358, + 479, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 479, + 370 + ], + "score": 1.0, + "content": "the emergence of protolanguage regardless of whether the input is entangled or disentangled.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 247, + 506, + 370 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 383, + 223, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 383, + 225, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 225, + 395 + ], + "score": 1.0, + "content": "3.2 GRAMMAR ANALYSIS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 108, + 403, + 504, + 448 + ], + "lines": [ + { + "bbox": [ + 106, + 403, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 506, + 416 + ], + "score": 1.0, + "content": "We choose agents from different training rounds to highlight how the language becomes more", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 414, + 506, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 506, + 428 + ], + "score": 1.0, + "content": "structured over time. Table 1 shows agents’ messages in the beginning (round 40), when the training", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 425, + 506, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 230, + 439 + ], + "score": 1.0, + "content": "accuracy starts pushing beyond", + "type": "text" + }, + { + "bbox": [ + 230, + 425, + 249, + 437 + ], + "score": 0.87, + "content": "9 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 426, + 506, + 439 + ], + "score": 1.0, + "content": "(round 6, 940), when agents settle on a common language (round", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 437, + 144, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 144, + 449 + ], + "score": 1.0, + "content": "16, 760).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 403, + 506, + 449 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 453, + 505, + 618 + ], + "lines": [ + { + "bbox": [ + 105, + 454, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 505, + 466 + ], + "score": 1.0, + "content": "In round 40, both agents are respectively producing the same message for all object types as mentioned", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 464, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 505, + 478 + ], + "score": 1.0, + "content": "in section 3.1. We might say the messages are structured, but considering that the listener always", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 475, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 506, + 489 + ], + "score": 1.0, + "content": "answers 0 in early rounds, we cannot say the agents are communicating. In round 6, 940, which is", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "roughly when the agents begin to communicate more efficiently, training accuracy is significantly", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 496, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 506, + 511 + ], + "score": 1.0, + "content": "higher than round 40. However, perplexities show that both agents are assigning many names to a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 507, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 505, + 523 + ], + "score": 1.0, + "content": "single object type (40-80 names depending on the object type), indicating that the agents are focusing", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 519, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 506, + 533 + ], + "score": 1.0, + "content": "on pixel-level differences between images of the same object type. Table 1 shows, as an example,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 531, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 506, + 543 + ], + "score": 1.0, + "content": "the messages used by both agents to describe the red sphere. Due to high perplexity, it is difficult", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 542, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 506, + 554 + ], + "score": 1.0, + "content": "to capture the underlying grammar of the messages even with regular expression. Furthermore, as", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 551, + 506, + 566 + ], + "spans": [ + { + "bbox": [ + 104, + 551, + 506, + 566 + ], + "score": 1.0, + "content": "Jaccard similarity indicates, both agents are generating completely different messages for the same", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 563, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 576 + ], + "score": 1.0, + "content": "object type. In round 16, 760, as the perplexities and Jaccard similarity tell us, the agents came to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 573, + 507, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 507, + 588 + ], + "score": 1.0, + "content": "share a very narrow set of names for each object type (1-4 names depending on the object type).", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 585, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 506, + 598 + ], + "score": 1.0, + "content": "Moreover, the names of the same-colored objects and same-shaped objects clearly seem to follow a", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "pattern. Overall, each of the three phases (round 40, round 6,940, round 16,760) seem to represent", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 607, + 475, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 475, + 620 + ], + "score": 1.0, + "content": "the development of visual perception, learning to communicate, and emergence of structure.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 37, + "bbox_fs": [ + 104, + 454, + 507, + 620 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 623, + 505, + 712 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 505, + 636 + ], + "score": 1.0, + "content": "We found the messages in round 16, 760 could be decomposed in a similar manner as Table 6 in", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 634, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 506, + 648 + ], + "score": 1.0, + "content": "Appendix A. The top of Table 2 shows a possible decomposition of the messages from round 16, 760", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 645, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 505, + 659 + ], + "score": 1.0, + "content": "and the bottom shows the rules for each color and shape derived from the decomposition. According", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 657, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 505, + 669 + ], + "score": 1.0, + "content": "to our analysis, the agents use the first part of the message (i.e. prefix) to specify a shape, and the", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 667, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 681 + ], + "score": 1.0, + "content": "second part (i.e. suffix) to specify a color. However, they use two different strings to specify a shape.", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 678, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 506, + 693 + ], + "score": 1.0, + "content": "For example, the agents use either aaaa or bbbbb to describe a box. The strings used for specifying", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 690, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 506, + 702 + ], + "score": 1.0, + "content": "colors show slightly weaker regularity. For example, red is always described by either the suffix c or", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 701, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 505, + 713 + ], + "score": 1.0, + "content": "suffix e, but magenta is described by the suffix bb, bd, and sometimes b or bc. a used for ¯ gray objects", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 48.5, + "bbox_fs": [ + 105, + 624, + 506, + 713 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 123, + 100, + 482, + 123 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 129, + 80, + 480, + 100 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 285, + 80, + 325, + 91 + ], + "spans": [ + { + "bbox": [ + 285, + 80, + 325, + 91 + ], + "score": 1.0, + "content": "Round 40", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 129, + 88, + 480, + 103 + ], + "spans": [ + { + "bbox": [ + 129, + 88, + 200, + 103 + ], + "score": 1.0, + "content": "(Training accuracy:", + "type": "text" + }, + { + "bbox": [ + 201, + 90, + 225, + 100 + ], + "score": 0.8, + "content": "6 6 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 88, + 480, + 103 + ], + "score": 1.0, + "content": ", Agent0 perplexity:1.0, Agent1 perplexity:1.0, Jaccard similarity:0.0)", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 123, + 100, + 482, + 123 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 123, + 100, + 482, + 123 + ], + "spans": [ + { + "bbox": [ + 123, + 100, + 482, + 123 + ], + "score": 0.944, + "html": "
All objectsdescribed by Agent 0All objectsdescribed byAgent1
Messageddddddddddddddddddddbbbbbbbbbbbbbbbbbbbb
", + "type": "table", + "image_path": "2c381fd8435b01fc87bc68d60455552c27183e5f39e5f786d9a4cfa16e943f4a.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 123, + 100, + 482, + 123 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1.25 + }, + { + "type": "title", + "bbox": [ + 279, + 134, + 330, + 143 + ], + "lines": [ + { + "bbox": [ + 279, + 133, + 330, + 145 + ], + "spans": [ + { + "bbox": [ + 279, + 133, + 330, + 145 + ], + "score": 1.0, + "content": "Round 6,940", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "table", + "bbox": [ + 118, + 154, + 490, + 266 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 121, + 144, + 486, + 154 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 123, + 142, + 487, + 157 + ], + "spans": [ + { + "bbox": [ + 123, + 142, + 193, + 157 + ], + "score": 1.0, + "content": "(Training accuracy:", + "type": "text" + }, + { + "bbox": [ + 194, + 144, + 218, + 154 + ], + "score": 0.73, + "content": "9 3 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 142, + 487, + 157 + ], + "score": 1.0, + "content": ", Agent0 perplexity:9.90, Agent1 perplexity:17.73, Jaccard similarity:0.0)", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "table_body", + "bbox": [ + 118, + 154, + 490, + 266 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 118, + 154, + 490, + 266 + ], + "spans": [ + { + "bbox": [ + 118, + 154, + 490, + 266 + ], + "score": 0.966, + "html": "
Redsphere described byagent 0Redspheredescribedbyagent1
Messagesaeceaeaeaaaeeeeeeeeeaaedacacaaaaaaaaaaaa
aacceeaaaaeeeeeeeeeeaaccdaacaaaaaaaaaaaa
aaccceaaaaaaaaeeeeeeaaabcdadaaaaaaaaaaaa
aeeeeaaaaeeeeeeeeeeeaaeeacaeaaaaaaaaaaaa
aeaceeaeaeeeeeeeeeeeaaccdadaaaaaaacaaaaa
aceacacaaaaaaeeeeeeeaaedaceaaaaaaaaaaaaa
abeeeeaeeeeeeeeeeeeeaaeaccaeaaaaaaaaaaaa
aacceeaeeeeeeeeeeeeeaaceacaacaaaaaaaaaaa
aacceeaeaaeeeeeeeeeeaacdacdaaaaaaaaaaaaa
aeeacacaaaeeccceeeeeaaccdadaaaaacaaaaaaa
", + "type": "table", + "image_path": "2e2f6d38361b624e84533ab1404050752c80d29d1359536ccff6bde3e0194449.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 118, + 154, + 490, + 191.33333333333334 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 118, + 191.33333333333334, + 490, + 228.66666666666669 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 118, + 228.66666666666669, + 490, + 266.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 5.0 + }, + { + "type": "table", + "bbox": [ + 117, + 297, + 492, + 389 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 121, + 276, + 487, + 297 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 276, + 276, + 333, + 287 + ], + "spans": [ + { + "bbox": [ + 276, + 276, + 333, + 287 + ], + "score": 1.0, + "content": "Round 16,760", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 123, + 285, + 487, + 300 + ], + "spans": [ + { + "bbox": [ + 123, + 285, + 193, + 300 + ], + "score": 1.0, + "content": "(Training accuracy:", + "type": "text" + }, + { + "bbox": [ + 193, + 286, + 218, + 297 + ], + "score": 0.76, + "content": "9 8 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 285, + 487, + 300 + ], + "score": 1.0, + "content": ", Agent0 perplexity:1.69, Agent1 perplexity:1.62, Jaccard similarity:0.82)", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "table_body", + "bbox": [ + 117, + 297, + 492, + 389 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 117, + 297, + 492, + 389 + ], + "spans": [ + { + "bbox": [ + 117, + 297, + 492, + 389 + ], + "score": 0.974, + "html": "
:BoxSphereCylinderCapsuleEllipsoid
Bluebbbbbbb{b.d}bb{b,d}bbbbbb{b,d}bbbbb{c,d}bbbb{-,c,d}
Red Whiteaaaa{c,e}aa{c,e}aaa{c,e}a{c,e}c,e
bbbbbbb,dbbbb{b,d}bbb{b.d}bb{-,c,d}
GrayaaaaaaCb,bd
Yellowaaaaaaaaaaaaaaaaaaa{a,e}
Greenaaaa{a,ad}aa{a,ad}aaa{a.ad}a{a,ad}a
Cyanax20bbb{b,d}bbbbbbb{b,d}bbbbbbdbbbbb{b.d}
Magentabbbbbbbb{b.dbbbbb{b,d}bbbbdbbb{-.c,d}
", + "type": "table", + "image_path": "517503722029e95167c4f50fb278299fcd9199e1a5f19f39b6c93f3be6ba0bfd.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 117, + 297, + 492, + 327.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 117, + 327.6666666666667, + 492, + 358.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 117, + 358.33333333333337, + 492, + 389.00000000000006 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 398, + 505, + 442 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 105, + 396, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 410 + ], + "score": 1.0, + "content": "Table 1: (Top) Messages used by both agents when speaking about any object in round 40. (Middle)", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 407, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 506, + 421 + ], + "score": 1.0, + "content": "Ten most frequent messages used by each agent to describe a red sphere in round 6, 940. (Bottom)", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "score": 1.0, + "content": "Messages most often used by both agents for each object type in round 16, 760. Brackets indicate the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 430, + 387, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 387, + 442 + ], + "score": 1.0, + "content": "variation often seen at the last character. Underscores indicate blanks.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 471, + 505, + 504 + ], + "lines": [ + { + "bbox": [ + 105, + 470, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 505, + 484 + ], + "score": 1.0, + "content": "represents deletion of the prefix a. Note that removing prefixes beyond their length causes the pattern", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 481, + 507, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 507, + 495 + ], + "score": 1.0, + "content": "to break. For example, gray box, gray sphere and gray cylinder use the same a¯aa to express the color, ¯", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 493, + 338, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 338, + 505 + ], + "score": 1.0, + "content": "but gray capsule and gray ellipsoid use irregular suffixes.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 510, + 505, + 576 + ], + "lines": [ + { + "bbox": [ + 105, + 509, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 505, + 523 + ], + "score": 1.0, + "content": "Despite some irregularities and one exceptional case (cyan box), the messages provide strong evidence", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 520, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 506, + 533 + ], + "score": 1.0, + "content": "that the agents learned to properly recognize color and shape from raw pixel input (see Appendix H for", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 532, + 506, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 506, + 544 + ], + "score": 1.0, + "content": "studying what the visual module learned), mapped each color and shape to prefixes and suffixes, and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 543, + 504, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 504, + 555 + ], + "score": 1.0, + "content": "are able to compose meaningful messages to describe a given image to one another. Communication", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "accuracy for each object type is described in Appendix F. Communication examples and their analysis", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 565, + 210, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 210, + 577 + ], + "score": 1.0, + "content": "are given in Appendix G.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22.5 + }, + { + "type": "title", + "bbox": [ + 108, + 598, + 238, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 597, + 240, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 240, + 610 + ], + "score": 1.0, + "content": "3.3 ZERO-SHOT EVALUATION", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 622, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 622, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 506, + 634 + ], + "score": 1.0, + "content": "If the agents have truly learned to compose a message that can be divided into a color part and a", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 633, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 505, + 646 + ], + "score": 1.0, + "content": "shape part, then they should be able to accurately describe an object they have not seen before, which", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "is another necessary condition for a compositional language. Therefore, we hold out five objects (the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "shaded cells in Table 3) from the dataset during the training and observe how agents describe five", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 666, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 506, + 679 + ], + "score": 1.0, + "content": "novel objects during the test phase. The agents were chosen from round 19, 980, which showed a", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 166, + 689 + ], + "score": 1.0, + "content": "high accuracy", + "type": "text" + }, + { + "bbox": [ + 167, + 677, + 199, + 688 + ], + "score": 0.85, + "content": "( 9 7 . 8 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 676, + 506, + 689 + ], + "score": 1.0, + "content": ", low perplexities (1.48, 1.65) and a high Jaccard similarity (0.75). Table 3", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "shows a potential decomposition of the messages used by the agents (original messages are described", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "by Table 8 in Appendix I). We can observe that there is clearly a structure in the communication,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 710, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 506, + 723 + ], + "score": 1.0, + "content": "although some messages show somewhat weaker patterns compared to when the agents were trained", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "score": 1.0, + "content": "with all object types (Table 2). Suffixes for specifying yellow and magenta are especially irregular,", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 123, + 100, + 482, + 123 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 129, + 80, + 480, + 100 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 285, + 80, + 325, + 91 + ], + "spans": [ + { + "bbox": [ + 285, + 80, + 325, + 91 + ], + "score": 1.0, + "content": "Round 40", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 129, + 88, + 480, + 103 + ], + "spans": [ + { + "bbox": [ + 129, + 88, + 200, + 103 + ], + "score": 1.0, + "content": "(Training accuracy:", + "type": "text" + }, + { + "bbox": [ + 201, + 90, + 225, + 100 + ], + "score": 0.8, + "content": "6 6 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 88, + 480, + 103 + ], + "score": 1.0, + "content": ", Agent0 perplexity:1.0, Agent1 perplexity:1.0, Jaccard similarity:0.0)", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 123, + 100, + 482, + 123 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 123, + 100, + 482, + 123 + ], + "spans": [ + { + "bbox": [ + 123, + 100, + 482, + 123 + ], + "score": 0.944, + "html": "
All objectsdescribed by Agent 0All objectsdescribed byAgent1
Messageddddddddddddddddddddbbbbbbbbbbbbbbbbbbbb
", + "type": "table", + "image_path": "2c381fd8435b01fc87bc68d60455552c27183e5f39e5f786d9a4cfa16e943f4a.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 123, + 100, + 482, + 123 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1.25 + }, + { + "type": "title", + "bbox": [ + 279, + 134, + 330, + 143 + ], + "lines": [ + { + "bbox": [ + 279, + 133, + 330, + 145 + ], + "spans": [ + { + "bbox": [ + 279, + 133, + 330, + 145 + ], + "score": 1.0, + "content": "Round 6,940", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "table", + "bbox": [ + 118, + 154, + 490, + 266 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 121, + 144, + 486, + 154 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 123, + 142, + 487, + 157 + ], + "spans": [ + { + "bbox": [ + 123, + 142, + 193, + 157 + ], + "score": 1.0, + "content": "(Training accuracy:", + "type": "text" + }, + { + "bbox": [ + 194, + 144, + 218, + 154 + ], + "score": 0.73, + "content": "9 3 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 142, + 487, + 157 + ], + "score": 1.0, + "content": ", Agent0 perplexity:9.90, Agent1 perplexity:17.73, Jaccard similarity:0.0)", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "table_body", + "bbox": [ + 118, + 154, + 490, + 266 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 118, + 154, + 490, + 266 + ], + "spans": [ + { + "bbox": [ + 118, + 154, + 490, + 266 + ], + "score": 0.966, + "html": "
Redsphere described byagent 0Redspheredescribedbyagent1
Messagesaeceaeaeaaaeeeeeeeeeaaedacacaaaaaaaaaaaa
aacceeaaaaeeeeeeeeeeaaccdaacaaaaaaaaaaaa
aaccceaaaaaaaaeeeeeeaaabcdadaaaaaaaaaaaa
aeeeeaaaaeeeeeeeeeeeaaeeacaeaaaaaaaaaaaa
aeaceeaeaeeeeeeeeeeeaaccdadaaaaaaacaaaaa
aceacacaaaaaaeeeeeeeaaedaceaaaaaaaaaaaaa
abeeeeaeeeeeeeeeeeeeaaeaccaeaaaaaaaaaaaa
aacceeaeeeeeeeeeeeeeaaceacaacaaaaaaaaaaa
aacceeaeaaeeeeeeeeeeaacdacdaaaaaaaaaaaaa
aeeacacaaaeeccceeeeeaaccdadaaaaacaaaaaaa
", + "type": "table", + "image_path": "2e2f6d38361b624e84533ab1404050752c80d29d1359536ccff6bde3e0194449.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 118, + 154, + 490, + 191.33333333333334 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 118, + 191.33333333333334, + 490, + 228.66666666666669 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 118, + 228.66666666666669, + 490, + 266.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 5.0 + }, + { + "type": "table", + "bbox": [ + 117, + 297, + 492, + 389 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 121, + 276, + 487, + 297 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 276, + 276, + 333, + 287 + ], + "spans": [ + { + "bbox": [ + 276, + 276, + 333, + 287 + ], + "score": 1.0, + "content": "Round 16,760", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 123, + 285, + 487, + 300 + ], + "spans": [ + { + "bbox": [ + 123, + 285, + 193, + 300 + ], + "score": 1.0, + "content": "(Training accuracy:", + "type": "text" + }, + { + "bbox": [ + 193, + 286, + 218, + 297 + ], + "score": 0.76, + "content": "9 8 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 285, + 487, + 300 + ], + "score": 1.0, + "content": ", Agent0 perplexity:1.69, Agent1 perplexity:1.62, Jaccard similarity:0.82)", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "table_body", + "bbox": [ + 117, + 297, + 492, + 389 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 117, + 297, + 492, + 389 + ], + "spans": [ + { + "bbox": [ + 117, + 297, + 492, + 389 + ], + "score": 0.974, + "html": "
:BoxSphereCylinderCapsuleEllipsoid
Bluebbbbbbb{b.d}bb{b,d}bbbbbb{b,d}bbbbb{c,d}bbbb{-,c,d}
Red Whiteaaaa{c,e}aa{c,e}aaa{c,e}a{c,e}c,e
bbbbbbb,dbbbb{b,d}bbb{b.d}bb{-,c,d}
GrayaaaaaaCb,bd
Yellowaaaaaaaaaaaaaaaaaaa{a,e}
Greenaaaa{a,ad}aa{a,ad}aaa{a.ad}a{a,ad}a
Cyanax20bbb{b,d}bbbbbbb{b,d}bbbbbbdbbbbb{b.d}
Magentabbbbbbbb{b.dbbbbb{b,d}bbbbdbbb{-.c,d}
", + "type": "table", + "image_path": "517503722029e95167c4f50fb278299fcd9199e1a5f19f39b6c93f3be6ba0bfd.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 117, + 297, + 492, + 327.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 117, + 327.6666666666667, + 492, + 358.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 117, + 358.33333333333337, + 492, + 389.00000000000006 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 398, + 505, + 442 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 105, + 396, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 410 + ], + "score": 1.0, + "content": "Table 1: (Top) Messages used by both agents when speaking about any object in round 40. (Middle)", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 407, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 506, + 421 + ], + "score": 1.0, + "content": "Ten most frequent messages used by each agent to describe a red sphere in round 6, 940. (Bottom)", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "score": 1.0, + "content": "Messages most often used by both agents for each object type in round 16, 760. Brackets indicate the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 430, + 387, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 387, + 442 + ], + "score": 1.0, + "content": "variation often seen at the last character. Underscores indicate blanks.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 471, + 505, + 504 + ], + "lines": [ + { + "bbox": [ + 105, + 470, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 505, + 484 + ], + "score": 1.0, + "content": "represents deletion of the prefix a. Note that removing prefixes beyond their length causes the pattern", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 481, + 507, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 507, + 495 + ], + "score": 1.0, + "content": "to break. For example, gray box, gray sphere and gray cylinder use the same a¯aa to express the color, ¯", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 493, + 338, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 338, + 505 + ], + "score": 1.0, + "content": "but gray capsule and gray ellipsoid use irregular suffixes.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 470, + 507, + 505 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 510, + 505, + 576 + ], + "lines": [ + { + "bbox": [ + 105, + 509, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 505, + 523 + ], + "score": 1.0, + "content": "Despite some irregularities and one exceptional case (cyan box), the messages provide strong evidence", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 520, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 506, + 533 + ], + "score": 1.0, + "content": "that the agents learned to properly recognize color and shape from raw pixel input (see Appendix H for", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 532, + 506, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 506, + 544 + ], + "score": 1.0, + "content": "studying what the visual module learned), mapped each color and shape to prefixes and suffixes, and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 543, + 504, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 504, + 555 + ], + "score": 1.0, + "content": "are able to compose meaningful messages to describe a given image to one another. Communication", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "accuracy for each object type is described in Appendix F. Communication examples and their analysis", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 565, + 210, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 210, + 577 + ], + "score": 1.0, + "content": "are given in Appendix G.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 509, + 506, + 577 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 598, + 238, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 597, + 240, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 240, + 610 + ], + "score": 1.0, + "content": "3.3 ZERO-SHOT EVALUATION", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 622, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 622, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 506, + 634 + ], + "score": 1.0, + "content": "If the agents have truly learned to compose a message that can be divided into a color part and a", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 633, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 505, + 646 + ], + "score": 1.0, + "content": "shape part, then they should be able to accurately describe an object they have not seen before, which", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "is another necessary condition for a compositional language. Therefore, we hold out five objects (the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "shaded cells in Table 3) from the dataset during the training and observe how agents describe five", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 666, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 506, + 679 + ], + "score": 1.0, + "content": "novel objects during the test phase. The agents were chosen from round 19, 980, which showed a", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 166, + 689 + ], + "score": 1.0, + "content": "high accuracy", + "type": "text" + }, + { + "bbox": [ + 167, + 677, + 199, + 688 + ], + "score": 0.85, + "content": "( 9 7 . 8 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 676, + 506, + 689 + ], + "score": 1.0, + "content": ", low perplexities (1.48, 1.65) and a high Jaccard similarity (0.75). Table 3", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "shows a potential decomposition of the messages used by the agents (original messages are described", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "by Table 8 in Appendix I). We can observe that there is clearly a structure in the communication,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 710, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 506, + 723 + ], + "score": 1.0, + "content": "although some messages show somewhat weaker patterns compared to when the agents were trained", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "score": 1.0, + "content": "with all object types (Table 2). Suffixes for specifying yellow and magenta are especially irregular,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 560, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 505, + 574 + ], + "score": 1.0, + "content": "even when we consider the effects of b and ¯ e. However, the messages describing the held-out object ¯", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 572, + 367, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 367, + 585 + ], + "score": 1.0, + "content": "types show clear structure with the exception of yellow ellipsoid.", + "type": "text", + "cross_page": true + } + ], + "index": 18 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 622, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 133, + 80, + 476, + 173 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 133, + 80, + 476, + 173 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 133, + 80, + 476, + 173 + ], + "spans": [ + { + "bbox": [ + 133, + 80, + 476, + 173 + ], + "score": 0.982, + "html": "
BoxSphereCylinderCapsuleEllipsoid
Blue Redbbbbb bb{b,d} aaaa {c,e}bb{b,d} aa {c,e}bbbb bb{b.d} aaa {c,e}bbb bb{c,d} a{c,e}bb bb{-.c,d} {c,e}
Whitebbbbbb{b.d}bbbb{b.d}bbb {b.d}bb{-c,d}
Grayaaaa aaaaa aaaaaa aaaa aacaa{b,bd}
Yellow
aaaa aaaaaaaaaaaaaaa{ae}
Greenaaaa {a,ad}aa {a,ad}aaa {a,ad}a{a,ad}a
Cyana×20bbb{b,d}bbbb bbb{b,d}bbb bbbdbb bbb{b.d}
Magentabbbbbbbb{b,d}bbbbb{b.d}bbb bdbbb{-c,d}
", + "type": "table", + "image_path": "dacd9fe559f2ed7b036c0b7cab2d949618cf2c40cf80ad45e099c0e858753566.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 133, + 80, + 476, + 111.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 133, + 111.0, + 476, + 142.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 133, + 142.0, + 476, + 173.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "table", + "bbox": [ + 151, + 192, + 457, + 333 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 156, + 181, + 426, + 191 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 156, + 179, + 428, + 194 + ], + "spans": [ + { + "bbox": [ + 156, + 179, + 428, + 194 + ], + "score": 1.0, + "content": "Define Blue, White, Cyan, Magenta as color group 0, rest as color group 1.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "table_body", + "bbox": [ + 151, + 192, + 457, + 333 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 151, + 192, + 457, + 333 + ], + "spans": [ + { + "bbox": [ + 151, + 192, + 457, + 333 + ], + "score": 0.981, + "html": "
Rule
BlueEnd with bbb or bbdEnd with c or eEnd with b or dEnd with aaaEnd with aaEnd with a or adEnd with bbbb or bbbdEnd with bb or bd
RedWhite
GrayGrayYellowGreenCyanMagenta
BoxSphereCylinderCapsuleEllipsoidStart with bbbbb for color group O, start with aaaa for color group 1Start with aa for color group 1Start with bbbb for color group O, start with aaa for color group 1Start with bbb for color group O,start with a for color group 1Start with bb for color group 0
", + "type": "table", + "image_path": "6f670dc99afe992b1e6c0df384ee179a8d2c33499e913f45b4b7f17f66ccdb8a.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 151, + 192, + 457, + 239.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 151, + 239.0, + 457, + 286.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 151, + 286.0, + 457, + 333.0 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 4.0 + }, + { + "type": "table", + "bbox": [ + 110, + 390, + 498, + 484 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 342, + 505, + 375 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 340, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 506, + 354 + ], + "score": 1.0, + "content": "Table 2: (Top) Potential composition analysis of the messages from round 16,760 (bottom of Table 1).", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 353, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 505, + 365 + ], + "score": 1.0, + "content": "Italic symbols are used to specify shapes and roman symbols are used to specify colors. a indicates ¯", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 364, + 482, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 364, + 482, + 376 + ], + "score": 1.0, + "content": "deleting a single prefix a. (Bottom) Rules for each color and shape derived from the top table.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "table_body", + "bbox": [ + 110, + 390, + 498, + 484 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 110, + 390, + 498, + 484 + ], + "spans": [ + { + "bbox": [ + 110, + 390, + 498, + 484 + ], + "score": 0.979, + "html": "
BoxSphereCylinderCapsuleEllipsoid
BlueRedWhiteGrayYellowGreeneeeeee e{e,ee}eeeeeeeeeee e{e,ed}eeeee eeee{e,a}eee e{e,ed}eee eeee{b,ba}bb {b.d}eee{e,a}ee eeee{a,c}bbb {d.c}ee eee{b.d}
eeeeee eeee{e.a}bbbbbeeeeeeeeeebbbb bb{c,d}eeeeee {e,a}eeee eeee{e,ea}eeee
bb
eeee eee{-,a}eeeee eee{e,a}eee eee{e,a}
bbbe{e,ec}eeee {e,a}eeee ee{e,a}bb{c.d
bbb bb{c,d}eeeee {e,a}eeeee ee{e,ea}bbbb{b.d}bb bb{a.c}eee{e,a}bbb bb{a,e}
eee{e,a}eee ee{e,a}bb bbee {e,a}ee eeabbb bb{c.a}
CyanMagentaeeeeee eeeabbbb b{b.d}
", + "type": "table", + "image_path": "33a781e3e5d4062ed9e9d59d3c69194abbcc7c1739d074727eba66f914b690dc.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 110, + 390, + 498, + 421.3333333333333 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 110, + 421.3333333333333, + 498, + 452.66666666666663 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 110, + 452.66666666666663, + 498, + 483.99999999999994 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 492, + 506, + 536 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 491, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 504 + ], + "score": 1.0, + "content": "Table 3: Potential analysis of the messages observed in the zero-shot test. Gray cells indicate", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 502, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 506, + 515 + ], + "score": 1.0, + "content": "object types unseen during the training phase. Italic symbols are used to specify shapes and roman", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 513, + 507, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 349, + 527 + ], + "score": 1.0, + "content": "symbols to specify colors. b indicates deleting a single prefix¯", + "type": "text" + }, + { + "bbox": [ + 350, + 514, + 356, + 523 + ], + "score": 0.27, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 513, + 497, + 527 + ], + "score": 1.0, + "content": ". e indicates deleting a single prefix ¯", + "type": "text" + }, + { + "bbox": [ + 497, + 516, + 503, + 523 + ], + "score": 0.51, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 504, + 513, + 507, + 527 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 525, + 223, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 223, + 536 + ], + "score": 1.0, + "content": "Underscores indicate blanks.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 108, + 560, + 503, + 583 + ], + "lines": [ + { + "bbox": [ + 106, + 560, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 505, + 574 + ], + "score": 1.0, + "content": "even when we consider the effects of b and ¯ e. However, the messages describing the held-out object ¯", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 572, + 367, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 367, + 585 + ], + "score": 1.0, + "content": "types show clear structure with the exception of yellow ellipsoid.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 589, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 590, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 505, + 601 + ], + "score": 1.0, + "content": "In order to assess the communication accuracy when held-out objects are involved, we conducted", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 599, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 613 + ], + "score": 1.0, + "content": "another test with the agents from round 19, 980. Each held-out object was given to the speaker, the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 611, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 506, + 624 + ], + "score": 1.0, + "content": "listener, or both. In the first two cases, the held-out object was paired with all 40 object types and each", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 622, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 506, + 634 + ], + "score": 1.0, + "content": "pair was tested 10 times. In the last case, the held-out object was tested against itself 10 times. In all", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 633, + 507, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 507, + 645 + ], + "score": 1.0, + "content": "cases, the agents switched roles after 5 times. Table 4 shows communication accuracies for each case.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 644, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 506, + 657 + ], + "score": 1.0, + "content": "We can see the agents can successfully communicate most of the time even when given novel objects.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "score": 1.0, + "content": "The last column shows that the listener is not simply producing 0 to maximize its chance to win the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 665, + 507, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 336, + 678 + ], + "score": 1.0, + "content": "game. It is also notable that the objects described without", + "type": "text" + }, + { + "bbox": [ + 336, + 665, + 343, + 676 + ], + "score": 0.54, + "content": "\\bar { \\mathsf b }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 665, + 507, + 678 + ], + "score": 1.0, + "content": "or e show better performance in general. ¯", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "We noticed the communication accuracy for held-out objects seems relatively weak considering the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "messages used to describe them strongly showed structure. (Table 3). This, however, results from the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "grammar (i.e. structure) being not as straightforward as Table 2, especially with short messages (i.e.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 169, + 722 + ], + "score": 1.0, + "content": "frequent use of", + "type": "text" + }, + { + "bbox": [ + 169, + 709, + 176, + 720 + ], + "score": 0.68, + "content": "\\bar { \\mathsf b }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "and e). The same tendency can be observed for non-held-out objects as described ¯", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 720, + 372, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 372, + 734 + ], + "score": 1.0, + "content": "by the per-object communication accuracy Table 9 in Appendix J.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 25 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 133, + 80, + 476, + 173 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 133, + 80, + 476, + 173 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 133, + 80, + 476, + 173 + ], + "spans": [ + { + "bbox": [ + 133, + 80, + 476, + 173 + ], + "score": 0.982, + "html": "
BoxSphereCylinderCapsuleEllipsoid
Blue Redbbbbb bb{b,d} aaaa {c,e}bb{b,d} aa {c,e}bbbb bb{b.d} aaa {c,e}bbb bb{c,d} a{c,e}bb bb{-.c,d} {c,e}
Whitebbbbbb{b.d}bbbb{b.d}bbb {b.d}bb{-c,d}
Grayaaaa aaaaa aaaaaa aaaa aacaa{b,bd}
Yellow
aaaa aaaaaaaaaaaaaaa{ae}
Greenaaaa {a,ad}aa {a,ad}aaa {a,ad}a{a,ad}a
Cyana×20bbb{b,d}bbbb bbb{b,d}bbb bbbdbb bbb{b.d}
Magentabbbbbbbb{b,d}bbbbb{b.d}bbb bdbbb{-c,d}
", + "type": "table", + "image_path": "dacd9fe559f2ed7b036c0b7cab2d949618cf2c40cf80ad45e099c0e858753566.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 133, + 80, + 476, + 111.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 133, + 111.0, + 476, + 142.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 133, + 142.0, + 476, + 173.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "table", + "bbox": [ + 151, + 192, + 457, + 333 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 156, + 181, + 426, + 191 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 156, + 179, + 428, + 194 + ], + "spans": [ + { + "bbox": [ + 156, + 179, + 428, + 194 + ], + "score": 1.0, + "content": "Define Blue, White, Cyan, Magenta as color group 0, rest as color group 1.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "table_body", + "bbox": [ + 151, + 192, + 457, + 333 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 151, + 192, + 457, + 333 + ], + "spans": [ + { + "bbox": [ + 151, + 192, + 457, + 333 + ], + "score": 0.981, + "html": "
Rule
BlueEnd with bbb or bbdEnd with c or eEnd with b or dEnd with aaaEnd with aaEnd with a or adEnd with bbbb or bbbdEnd with bb or bd
RedWhite
GrayGrayYellowGreenCyanMagenta
BoxSphereCylinderCapsuleEllipsoidStart with bbbbb for color group O, start with aaaa for color group 1Start with aa for color group 1Start with bbbb for color group O, start with aaa for color group 1Start with bbb for color group O,start with a for color group 1Start with bb for color group 0
", + "type": "table", + "image_path": "6f670dc99afe992b1e6c0df384ee179a8d2c33499e913f45b4b7f17f66ccdb8a.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 151, + 192, + 457, + 239.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 151, + 239.0, + 457, + 286.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 151, + 286.0, + 457, + 333.0 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 4.0 + }, + { + "type": "table", + "bbox": [ + 110, + 390, + 498, + 484 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 342, + 505, + 375 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 340, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 506, + 354 + ], + "score": 1.0, + "content": "Table 2: (Top) Potential composition analysis of the messages from round 16,760 (bottom of Table 1).", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 353, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 505, + 365 + ], + "score": 1.0, + "content": "Italic symbols are used to specify shapes and roman symbols are used to specify colors. a indicates ¯", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 364, + 482, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 364, + 482, + 376 + ], + "score": 1.0, + "content": "deleting a single prefix a. (Bottom) Rules for each color and shape derived from the top table.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "table_body", + "bbox": [ + 110, + 390, + 498, + 484 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 110, + 390, + 498, + 484 + ], + "spans": [ + { + "bbox": [ + 110, + 390, + 498, + 484 + ], + "score": 0.979, + "html": "
BoxSphereCylinderCapsuleEllipsoid
BlueRedWhiteGrayYellowGreeneeeeee e{e,ee}eeeeeeeeeee e{e,ed}eeeee eeee{e,a}eee e{e,ed}eee eeee{b,ba}bb {b.d}eee{e,a}ee eeee{a,c}bbb {d.c}ee eee{b.d}
eeeeee eeee{e.a}bbbbbeeeeeeeeeebbbb bb{c,d}eeeeee {e,a}eeee eeee{e,ea}eeee
bb
eeee eee{-,a}eeeee eee{e,a}eee eee{e,a}
bbbe{e,ec}eeee {e,a}eeee ee{e,a}bb{c.d
bbb bb{c,d}eeeee {e,a}eeeee ee{e,ea}bbbb{b.d}bb bb{a.c}eee{e,a}bbb bb{a,e}
eee{e,a}eee ee{e,a}bb bbee {e,a}ee eeabbb bb{c.a}
CyanMagentaeeeeee eeeabbbb b{b.d}
", + "type": "table", + "image_path": "33a781e3e5d4062ed9e9d59d3c69194abbcc7c1739d074727eba66f914b690dc.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 110, + 390, + 498, + 421.3333333333333 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 110, + 421.3333333333333, + 498, + 452.66666666666663 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 110, + 452.66666666666663, + 498, + 483.99999999999994 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 492, + 506, + 536 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 491, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 504 + ], + "score": 1.0, + "content": "Table 3: Potential analysis of the messages observed in the zero-shot test. Gray cells indicate", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 502, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 506, + 515 + ], + "score": 1.0, + "content": "object types unseen during the training phase. Italic symbols are used to specify shapes and roman", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 513, + 507, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 349, + 527 + ], + "score": 1.0, + "content": "symbols to specify colors. b indicates deleting a single prefix¯", + "type": "text" + }, + { + "bbox": [ + 350, + 514, + 356, + 523 + ], + "score": 0.27, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 513, + 497, + 527 + ], + "score": 1.0, + "content": ". e indicates deleting a single prefix ¯", + "type": "text" + }, + { + "bbox": [ + 497, + 516, + 503, + 523 + ], + "score": 0.51, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 504, + 513, + 507, + 527 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 525, + 223, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 223, + 536 + ], + "score": 1.0, + "content": "Underscores indicate blanks.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 108, + 560, + 503, + 583 + ], + "lines": [], + "index": 17.5, + "bbox_fs": [ + 106, + 560, + 505, + 585 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 589, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 590, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 505, + 601 + ], + "score": 1.0, + "content": "In order to assess the communication accuracy when held-out objects are involved, we conducted", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 599, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 613 + ], + "score": 1.0, + "content": "another test with the agents from round 19, 980. Each held-out object was given to the speaker, the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 611, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 506, + 624 + ], + "score": 1.0, + "content": "listener, or both. In the first two cases, the held-out object was paired with all 40 object types and each", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 622, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 506, + 634 + ], + "score": 1.0, + "content": "pair was tested 10 times. In the last case, the held-out object was tested against itself 10 times. In all", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 633, + 507, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 507, + 645 + ], + "score": 1.0, + "content": "cases, the agents switched roles after 5 times. Table 4 shows communication accuracies for each case.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 644, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 506, + 657 + ], + "score": 1.0, + "content": "We can see the agents can successfully communicate most of the time even when given novel objects.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "score": 1.0, + "content": "The last column shows that the listener is not simply producing 0 to maximize its chance to win the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 665, + 507, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 336, + 678 + ], + "score": 1.0, + "content": "game. It is also notable that the objects described without", + "type": "text" + }, + { + "bbox": [ + 336, + 665, + 343, + 676 + ], + "score": 0.54, + "content": "\\bar { \\mathsf b }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 665, + 507, + 678 + ], + "score": 1.0, + "content": "or e show better performance in general. ¯", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "We noticed the communication accuracy for held-out objects seems relatively weak considering the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "messages used to describe them strongly showed structure. (Table 3). This, however, results from the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "grammar (i.e. structure) being not as straightforward as Table 2, especially with short messages (i.e.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 169, + 722 + ], + "score": 1.0, + "content": "frequent use of", + "type": "text" + }, + { + "bbox": [ + 169, + 709, + 176, + 720 + ], + "score": 0.68, + "content": "\\bar { \\mathsf b }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "and e). The same tendency can be observed for non-held-out objects as described ¯", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 720, + 372, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 372, + 734 + ], + "score": 1.0, + "content": "by the per-object communication accuracy Table 9 in Appendix J.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 590, + 507, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 164, + 80, + 444, + 144 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 164, + 80, + 444, + 144 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 164, + 80, + 444, + 144 + ], + "spans": [ + { + "bbox": [ + 164, + 80, + 444, + 144 + ], + "score": 0.972, + "html": "
Given to speakerGiven to listenerGiven to both
BlueBox0.970.971.00
Red Sphere0.920.910.80
White Cylinder0.950.950.90
Gray Capsule0.910.911.00
Yellow Ellipsoid0.910.901.00
", + "type": "table", + "image_path": "b88809ab7238f10aacf21f76006badba3743f4dadd2459290f80dd87b5acee65.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 164, + 80, + 444, + 101.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 164, + 101.33333333333333, + 444, + 122.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 164, + 122.66666666666666, + 444, + 144.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 113, + 151, + 496, + 163 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 149, + 497, + 165 + ], + "spans": [ + { + "bbox": [ + 113, + 149, + 497, + 165 + ], + "score": 1.0, + "content": "Table 4: Communication accuracy when agents were given objects not seen during the training.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 107, + 186, + 505, + 252 + ], + "lines": [ + { + "bbox": [ + 105, + 184, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 505, + 200 + ], + "score": 1.0, + "content": "From the grammar analysis in the previous section, we have shown that the emerged language", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 197, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 505, + 210 + ], + "score": 1.0, + "content": "strongly follows a well-defined grammar. In the zero-shot test, the agents demonstrated that they", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 208, + 506, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 506, + 221 + ], + "score": 1.0, + "content": "can successfully describe novel object, although not perfectly, by also following a similar grammar.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 218, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 505, + 232 + ], + "score": 1.0, + "content": "Both are, as stated in the beginning of section 3, necessary conditions for any communication to be", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 230, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 506, + 243 + ], + "score": 1.0, + "content": "considered compositional. Therefore we can safely conclude that the emerged language in this work", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 241, + 356, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 356, + 253 + ], + "score": 1.0, + "content": "possesses some qualifications to be considered compositional.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6.5 + }, + { + "type": "title", + "bbox": [ + 108, + 270, + 190, + 283 + ], + "lines": [ + { + "bbox": [ + 104, + 268, + 192, + 285 + ], + "spans": [ + { + "bbox": [ + 104, + 268, + 192, + 285 + ], + "score": 1.0, + "content": "4 DISCUSSION", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 296, + 505, + 351 + ], + "lines": [ + { + "bbox": [ + 105, + 295, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 506, + 308 + ], + "score": 1.0, + "content": "In this work, we used the obverter technique to train neural network agents to communicate in a", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 307, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 505, + 319 + ], + "score": 1.0, + "content": "two-person image description game. Through qualitative analysis, visualization and the zero-shot", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 318, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 506, + 331 + ], + "score": 1.0, + "content": "test, we have shown that even though the agents receive raw perception in the form of image pixels,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 329, + 505, + 341 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 505, + 341 + ], + "score": 1.0, + "content": "under the right environment pressures, the emerged language had properties consistent with the ones", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 339, + 245, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 245, + 353 + ], + "score": 1.0, + "content": "found in compositional languages.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 357, + 505, + 499 + ], + "lines": [ + { + "bbox": [ + 105, + 355, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 506, + 371 + ], + "score": 1.0, + "content": "As an evaluation strategy, we followed previous works and focused on assessing the necessary", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 367, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 505, + 380 + ], + "score": 1.0, + "content": "conditions of compositional languages. However, the exact definition of compositional language is", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 379, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 505, + 391 + ], + "score": 1.0, + "content": "still somewhat debatable, and, to the best of our knowledge, there is no reliable way to mathematically", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "score": 1.0, + "content": "quantify the degree of compositionality of an arbitrary language. Therefore, in order to encourage", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 401, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 506, + 414 + ], + "score": 1.0, + "content": "active research and discussion among researchers in this domain, we propose for future work, a", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 411, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 506, + 425 + ], + "score": 1.0, + "content": "quantitatively measurable definition of compositionality. We believe compositionality of a language is", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 423, + 506, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 436 + ], + "score": 1.0, + "content": "not binary (e.g. language A is compositional/not compositional), but a spectrum. For example, human", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 434, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 506, + 447 + ], + "score": 1.0, + "content": "language has some aspects that are compositional (e.g., syntactic constructions, most morphological", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 444, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 506, + 457 + ], + "score": 1.0, + "content": "combinations) and some that are not (e.g., irregular verb tenses in English, character-level word", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 454, + 507, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 507, + 470 + ], + "score": 1.0, + "content": "composition). It is also important to clearly define grounded language and compositional language.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "If one agent says abc (eat red apple) and another says cba (apple red eat), and they both understand", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 477, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 506, + 491 + ], + "score": 1.0, + "content": "each other, are they speaking compositional language? We believe such questions should be asked", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 487, + 338, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 338, + 502 + ], + "score": 1.0, + "content": "and addressed to shape the definition of compositionality.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 505, + 505, + 560 + ], + "lines": [ + { + "bbox": [ + 106, + 505, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 505, + 518 + ], + "score": 1.0, + "content": "In addition to the definition/evaluation of compositional languages, there are numerous directions of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "score": 1.0, + "content": "future work. Observing the emergence of a compositional language among more than two agents is", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "score": 1.0, + "content": "an apparent next step. Designing an environment to motivate the agents to disentangle more than two", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "score": 1.0, + "content": "factors is also an interesting direction. Training agents to consider the context (i.e. pragmatics), such", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 549, + 439, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 439, + 562 + ], + "score": 1.0, + "content": "as giving each agent several images instead of one, is another exciting future work.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31 + }, + { + "type": "title", + "bbox": [ + 108, + 576, + 200, + 585 + ], + "lines": [ + { + "bbox": [ + 107, + 576, + 200, + 586 + ], + "spans": [ + { + "bbox": [ + 107, + 576, + 200, + 586 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 594, + 505, + 639 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "We would like to thank Scott Reed for discussions on pragmatics, Tom Le Paine for advising the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "visual module architecture, Jakob Foerster for discussions on grammar induction, Sookyung Kim and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 615, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 630 + ], + "score": 1.0, + "content": "Joonseok Lee for discussions on human language and compositionality, Phil Blunsom and Jimeng", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 627, + 289, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 289, + 640 + ], + "score": 1.0, + "content": "Sun for helpful comments on the manuscript.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36.5 + }, + { + "type": "title", + "bbox": [ + 108, + 657, + 175, + 669 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 176, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 176, + 670 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 109, + 676, + 505, + 710 + ], + "lines": [ + { + "bbox": [ + 107, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 107, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "Stanislaw Antol, Aishwarya Agrawal, Jiasen Lu, Margaret Mitchell, Dhruv Batra, C Lawrence Zitnick,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 116, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "and Devi Parikh. Vqa: Visual question answering. In Proceedings of the IEEE International", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 117, + 699, + 339, + 711 + ], + "spans": [ + { + "bbox": [ + 117, + 699, + 339, + 711 + ], + "score": 1.0, + "content": "Conference on Computer Vision, pp. 2425–2433, 2015.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 106, + 720, + 446, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 719, + 448, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 448, + 734 + ], + "score": 1.0, + "content": "John Langshaw Austin. How to do things with words. Oxford university press, 1975.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 761 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 164, + 80, + 444, + 144 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 164, + 80, + 444, + 144 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 164, + 80, + 444, + 144 + ], + "spans": [ + { + "bbox": [ + 164, + 80, + 444, + 144 + ], + "score": 0.972, + "html": "
Given to speakerGiven to listenerGiven to both
BlueBox0.970.971.00
Red Sphere0.920.910.80
White Cylinder0.950.950.90
Gray Capsule0.910.911.00
Yellow Ellipsoid0.910.901.00
", + "type": "table", + "image_path": "b88809ab7238f10aacf21f76006badba3743f4dadd2459290f80dd87b5acee65.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 164, + 80, + 444, + 101.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 164, + 101.33333333333333, + 444, + 122.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 164, + 122.66666666666666, + 444, + 144.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 113, + 151, + 496, + 163 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 149, + 497, + 165 + ], + "spans": [ + { + "bbox": [ + 113, + 149, + 497, + 165 + ], + "score": 1.0, + "content": "Table 4: Communication accuracy when agents were given objects not seen during the training.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 107, + 186, + 505, + 252 + ], + "lines": [ + { + "bbox": [ + 105, + 184, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 505, + 200 + ], + "score": 1.0, + "content": "From the grammar analysis in the previous section, we have shown that the emerged language", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 197, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 505, + 210 + ], + "score": 1.0, + "content": "strongly follows a well-defined grammar. In the zero-shot test, the agents demonstrated that they", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 208, + 506, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 506, + 221 + ], + "score": 1.0, + "content": "can successfully describe novel object, although not perfectly, by also following a similar grammar.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 218, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 505, + 232 + ], + "score": 1.0, + "content": "Both are, as stated in the beginning of section 3, necessary conditions for any communication to be", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 230, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 506, + 243 + ], + "score": 1.0, + "content": "considered compositional. Therefore we can safely conclude that the emerged language in this work", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 241, + 356, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 356, + 253 + ], + "score": 1.0, + "content": "possesses some qualifications to be considered compositional.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 184, + 506, + 253 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 270, + 190, + 283 + ], + "lines": [ + { + "bbox": [ + 104, + 268, + 192, + 285 + ], + "spans": [ + { + "bbox": [ + 104, + 268, + 192, + 285 + ], + "score": 1.0, + "content": "4 DISCUSSION", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 296, + 505, + 351 + ], + "lines": [ + { + "bbox": [ + 105, + 295, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 506, + 308 + ], + "score": 1.0, + "content": "In this work, we used the obverter technique to train neural network agents to communicate in a", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 307, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 505, + 319 + ], + "score": 1.0, + "content": "two-person image description game. Through qualitative analysis, visualization and the zero-shot", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 318, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 506, + 331 + ], + "score": 1.0, + "content": "test, we have shown that even though the agents receive raw perception in the form of image pixels,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 329, + 505, + 341 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 505, + 341 + ], + "score": 1.0, + "content": "under the right environment pressures, the emerged language had properties consistent with the ones", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 339, + 245, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 245, + 353 + ], + "score": 1.0, + "content": "found in compositional languages.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 295, + 506, + 353 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 357, + 505, + 499 + ], + "lines": [ + { + "bbox": [ + 105, + 355, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 506, + 371 + ], + "score": 1.0, + "content": "As an evaluation strategy, we followed previous works and focused on assessing the necessary", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 367, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 505, + 380 + ], + "score": 1.0, + "content": "conditions of compositional languages. However, the exact definition of compositional language is", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 379, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 505, + 391 + ], + "score": 1.0, + "content": "still somewhat debatable, and, to the best of our knowledge, there is no reliable way to mathematically", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "score": 1.0, + "content": "quantify the degree of compositionality of an arbitrary language. Therefore, in order to encourage", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 401, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 506, + 414 + ], + "score": 1.0, + "content": "active research and discussion among researchers in this domain, we propose for future work, a", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 411, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 506, + 425 + ], + "score": 1.0, + "content": "quantitatively measurable definition of compositionality. We believe compositionality of a language is", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 423, + 506, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 436 + ], + "score": 1.0, + "content": "not binary (e.g. language A is compositional/not compositional), but a spectrum. For example, human", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 434, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 506, + 447 + ], + "score": 1.0, + "content": "language has some aspects that are compositional (e.g., syntactic constructions, most morphological", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 444, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 506, + 457 + ], + "score": 1.0, + "content": "combinations) and some that are not (e.g., irregular verb tenses in English, character-level word", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 454, + 507, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 507, + 470 + ], + "score": 1.0, + "content": "composition). It is also important to clearly define grounded language and compositional language.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "If one agent says abc (eat red apple) and another says cba (apple red eat), and they both understand", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 477, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 506, + 491 + ], + "score": 1.0, + "content": "each other, are they speaking compositional language? We believe such questions should be asked", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 487, + 338, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 338, + 502 + ], + "score": 1.0, + "content": "and addressed to shape the definition of compositionality.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 355, + 507, + 502 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 505, + 505, + 560 + ], + "lines": [ + { + "bbox": [ + 106, + 505, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 505, + 518 + ], + "score": 1.0, + "content": "In addition to the definition/evaluation of compositional languages, there are numerous directions of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "score": 1.0, + "content": "future work. Observing the emergence of a compositional language among more than two agents is", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "score": 1.0, + "content": "an apparent next step. Designing an environment to motivate the agents to disentangle more than two", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "score": 1.0, + "content": "factors is also an interesting direction. Training agents to consider the context (i.e. pragmatics), such", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 549, + 439, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 439, + 562 + ], + "score": 1.0, + "content": "as giving each agent several images instead of one, is another exciting future work.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 505, + 506, + 562 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 576, + 200, + 585 + ], + "lines": [ + { + "bbox": [ + 107, + 576, + 200, + 586 + ], + "spans": [ + { + "bbox": [ + 107, + 576, + 200, + 586 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 594, + 505, + 639 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "We would like to thank Scott Reed for discussions on pragmatics, Tom Le Paine for advising the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "visual module architecture, Jakob Foerster for discussions on grammar induction, Sookyung Kim and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 615, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 630 + ], + "score": 1.0, + "content": "Joonseok Lee for discussions on human language and compositionality, Phil Blunsom and Jimeng", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 627, + 289, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 289, + 640 + ], + "score": 1.0, + "content": "Sun for helpful comments on the manuscript.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 594, + 505, + 640 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 657, + 175, + 669 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 176, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 176, + 670 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 109, + 676, + 505, + 710 + ], + "lines": [ + { + "bbox": [ + 107, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 107, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "Stanislaw Antol, Aishwarya Agrawal, Jiasen Lu, Margaret Mitchell, Dhruv Batra, C Lawrence Zitnick,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 116, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "and Devi Parikh. Vqa: Visual question answering. In Proceedings of the IEEE International", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 117, + 699, + 339, + 711 + ], + "spans": [ + { + "bbox": [ + 117, + 699, + 339, + 711 + ], + "score": 1.0, + "content": "Conference on Computer Vision, pp. 2425–2433, 2015.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 107, + 677, + 506, + 711 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 720, + 446, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 719, + 448, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 448, + 734 + ], + "score": 1.0, + "content": "John Langshaw Austin. How to do things with words. Oxford university press, 1975.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 719, + 448, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 303, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 303, + 106 + ], + "score": 1.0, + "content": "learning to align and translate. In ICLR, 2014.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 113, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 112, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 112, + 505, + 126 + ], + "score": 1.0, + "content": "John Batali. Computational simulations of the emergence of grammar. Approaches to the evolution", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 124, + 343, + 136 + ], + "spans": [ + { + "bbox": [ + 116, + 124, + 343, + 136 + ], + "score": 1.0, + "content": "of language: Social and cognitive bases, 405:426, 1998.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 143, + 505, + 177 + ], + "lines": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "Jeshua Bratman, Michael Shvartsman, Richard L Lewis, and Satinder Singh. A new approach to", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 117, + 155, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 117, + 155, + 505, + 168 + ], + "score": 1.0, + "content": "exploring language emergence as boundedly optimal control in the face of environmental and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 166, + 480, + 178 + ], + "spans": [ + { + "bbox": [ + 116, + 166, + 480, + 178 + ], + "score": 1.0, + "content": "cognitive constraints. In International Conference on Cognitive Modeling, pp. 7–12, 2010.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 185, + 504, + 208 + ], + "lines": [ + { + "bbox": [ + 105, + 184, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 505, + 198 + ], + "score": 1.0, + "content": "Jerome S Bruner. Intention in the structure of action and interaction. Advances in infancy research,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 114, + 195, + 142, + 209 + ], + "spans": [ + { + "bbox": [ + 114, + 195, + 142, + 209 + ], + "score": 1.0, + "content": "1981.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 107, + 216, + 506, + 250 + ], + "lines": [ + { + "bbox": [ + 106, + 215, + 506, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 506, + 230 + ], + "score": 1.0, + "content": "Kyunghyun Cho, Bart Van Merrienboer, Caglar Gulcehre, Dzmitry Bahdanau, Fethi Bougares, Holger ¨", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 228, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 116, + 228, + 505, + 240 + ], + "score": 1.0, + "content": "Schwenk, and Yoshua Bengio. Learning phrase representations using rnn encoder-decoder for", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 117, + 239, + 314, + 250 + ], + "spans": [ + { + "bbox": [ + 117, + 239, + 314, + 250 + ], + "score": 1.0, + "content": "statistical machine translation. In EMNLP, 2014.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 258, + 385, + 270 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 385, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 385, + 272 + ], + "score": 1.0, + "content": "Herbert H Clark. Using language. Cambridge university press, 1996.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 277, + 504, + 301 + ], + "lines": [ + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "score": 1.0, + "content": "Jakob Foerster, Yannis M Assael, Nando de Freitas, and Shimon Whiteson. Learning to communicate", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 289, + 429, + 301 + ], + "spans": [ + { + "bbox": [ + 115, + 289, + 429, + 301 + ], + "score": 1.0, + "content": "with deep multi-agent reinforcement learning. In NIPS, pp. 2137–2145, 2016.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 308, + 472, + 321 + ], + "lines": [ + { + "bbox": [ + 105, + 308, + 473, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 473, + 322 + ], + "score": 1.0, + "content": "Gottlob Frege. Zeitschrift fur philosophie und philosophische kritik. ¨ NF, 100:25–50, 1892.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 105, + 329, + 504, + 352 + ], + "lines": [ + { + "bbox": [ + 106, + 329, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 505, + 342 + ], + "score": 1.0, + "content": "Zhiting Hu, Zichao Yang, Xiaodan Liang, Ruslan Salakhutdinov, and Eric P Xing. Toward controlled", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 340, + 322, + 352 + ], + "spans": [ + { + "bbox": [ + 116, + 340, + 322, + 352 + ], + "score": 1.0, + "content": "generation of text. In ICML, pp. 1587–1596, 2017.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 104, + 359, + 505, + 383 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 374 + ], + "score": 1.0, + "content": "James R Hurford. Biological evolution of the saussurean sign as a component of the language", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 371, + 317, + 383 + ], + "spans": [ + { + "bbox": [ + 115, + 371, + 317, + 383 + ], + "score": 1.0, + "content": "acquisition device. Lingua, 77(2):187–222, 1989.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 104, + 390, + 504, + 413 + ], + "lines": [ + { + "bbox": [ + 105, + 390, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 505, + 403 + ], + "score": 1.0, + "content": "Emilio Jorge, Mikael Kageb ˚ ack, and Emil Gustavsson. Learning to play guess who? and inventing a ¨", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 401, + 433, + 414 + ], + "spans": [ + { + "bbox": [ + 115, + 401, + 433, + 414 + ], + "score": 1.0, + "content": "grounded language as a consequence. arXiv preprint arXiv:1611.03218, 2016.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 105, + 420, + 505, + 444 + ], + "lines": [ + { + "bbox": [ + 105, + 420, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 434 + ], + "score": 1.0, + "content": "Andrej Karpathy and Li Fei-Fei. Deep visual-semantic alignments for generating image descriptions.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 432, + 247, + 444 + ], + "spans": [ + { + "bbox": [ + 115, + 432, + 247, + 444 + ], + "score": 1.0, + "content": "In CVPR, pp. 3128–3137, 2015.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 452, + 504, + 475 + ], + "lines": [ + { + "bbox": [ + 106, + 452, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 505, + 465 + ], + "score": 1.0, + "content": "Simon Kirby and James R Hurford. The emergence of linguistic structure: An overview of the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 463, + 496, + 476 + ], + "spans": [ + { + "bbox": [ + 116, + 463, + 496, + 476 + ], + "score": 1.0, + "content": "iterated learning model. In Simulating the evolution of language, pp. 121–147. Springer, 2002.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 108, + 482, + 504, + 506 + ], + "lines": [ + { + "bbox": [ + 105, + 481, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 506, + 497 + ], + "score": 1.0, + "content": "Simon Kirby, Tom Griffiths, and Kenny Smith. Iterated learning and the evolution of language.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 493, + 329, + 506 + ], + "spans": [ + { + "bbox": [ + 116, + 493, + 329, + 506 + ], + "score": 1.0, + "content": "Current opinion in neurobiology, 28:108–114, 2014.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 513, + 505, + 537 + ], + "lines": [ + { + "bbox": [ + 105, + 512, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 506, + 527 + ], + "score": 1.0, + "content": "Satwik Kottur, Jose MF Moura, Stefan Lee, and Dhruv Batra. Natural language does not ´", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 525, + 351, + 537 + ], + "spans": [ + { + "bbox": [ + 115, + 525, + 351, + 537 + ], + "score": 1.0, + "content": "emerge’naturally’in multi-agent dialog. In EMNLP, 2017.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 106, + 544, + 505, + 568 + ], + "lines": [ + { + "bbox": [ + 106, + 544, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 505, + 558 + ], + "score": 1.0, + "content": "Angeliki Lazaridou, Alexander Peysakhovich, and Marco Baroni. Multi-agent cooperation and the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 555, + 314, + 568 + ], + "spans": [ + { + "bbox": [ + 115, + 555, + 314, + 568 + ], + "score": 1.0, + "content": "emergence of (natural) language. In ICLR, 2017.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 574, + 505, + 598 + ], + "lines": [ + { + "bbox": [ + 105, + 573, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 506, + 588 + ], + "score": 1.0, + "content": "Yann LeCun, Yoshua Bengio, and Geoffrey Hinton. Deep learning. Nature, 521(7553):436–444,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 585, + 143, + 599 + ], + "spans": [ + { + "bbox": [ + 115, + 585, + 143, + 599 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 104, + 606, + 505, + 629 + ], + "lines": [ + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "score": 1.0, + "content": "Mike Lewis, Denis Yarats, Yann N Dauphin, Devi Parikh, and Dhruv Batra. Deal or no deal?", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 617, + 466, + 630 + ], + "spans": [ + { + "bbox": [ + 115, + 617, + 466, + 630 + ], + "score": 1.0, + "content": "end-to-end learning for negotiation dialogues. arXiv preprint arXiv:1706.05125, 2017.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 104, + 636, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 636, + 504, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 504, + 649 + ], + "score": 1.0, + "content": "Laurens van der Maaten and Geoffrey Hinton. Visualizing data using t-sne. Journal of Machine", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 648, + 302, + 660 + ], + "spans": [ + { + "bbox": [ + 116, + 648, + 302, + 660 + ], + "score": 1.0, + "content": "Learning Research, 9(Nov):2579–2605, 2008.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 106, + 667, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 506, + 681 + ], + "score": 1.0, + "content": "Karen Milligan, Janet Wilde Astington, and Lisa Ain Dack. Language and theory of mind: meta-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 678, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 115, + 678, + 506, + 691 + ], + "score": 1.0, + "content": "analysis of the relation between language ability and false-belief understanding. Child development,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 690, + 205, + 702 + ], + "spans": [ + { + "bbox": [ + 116, + 690, + 205, + 702 + ], + "score": 1.0, + "content": "78(2):622–646, 2007.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "Igor Mordatch and Pieter Abbeel. Emergence of grounded compositional language in multi-agent", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 721, + 331, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 331, + 732 + ], + "score": 1.0, + "content": "populations. arXiv preprint arXiv:1703.04908, 2017.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 303, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 303, + 106 + ], + "score": 1.0, + "content": "learning to align and translate. In ICLR, 2014.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 113, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 112, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 112, + 505, + 126 + ], + "score": 1.0, + "content": "John Batali. Computational simulations of the emergence of grammar. Approaches to the evolution", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 124, + 343, + 136 + ], + "spans": [ + { + "bbox": [ + 116, + 124, + 343, + 136 + ], + "score": 1.0, + "content": "of language: Social and cognitive bases, 405:426, 1998.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 112, + 505, + 136 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 143, + 505, + 177 + ], + "lines": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "Jeshua Bratman, Michael Shvartsman, Richard L Lewis, and Satinder Singh. A new approach to", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 117, + 155, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 117, + 155, + 505, + 168 + ], + "score": 1.0, + "content": "exploring language emergence as boundedly optimal control in the face of environmental and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 166, + 480, + 178 + ], + "spans": [ + { + "bbox": [ + 116, + 166, + 480, + 178 + ], + "score": 1.0, + "content": "cognitive constraints. In International Conference on Cognitive Modeling, pp. 7–12, 2010.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 143, + 505, + 178 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 185, + 504, + 208 + ], + "lines": [ + { + "bbox": [ + 105, + 184, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 505, + 198 + ], + "score": 1.0, + "content": "Jerome S Bruner. Intention in the structure of action and interaction. Advances in infancy research,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 114, + 195, + 142, + 209 + ], + "spans": [ + { + "bbox": [ + 114, + 195, + 142, + 209 + ], + "score": 1.0, + "content": "1981.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 184, + 505, + 209 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 216, + 506, + 250 + ], + "lines": [ + { + "bbox": [ + 106, + 215, + 506, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 506, + 230 + ], + "score": 1.0, + "content": "Kyunghyun Cho, Bart Van Merrienboer, Caglar Gulcehre, Dzmitry Bahdanau, Fethi Bougares, Holger ¨", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 228, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 116, + 228, + 505, + 240 + ], + "score": 1.0, + "content": "Schwenk, and Yoshua Bengio. Learning phrase representations using rnn encoder-decoder for", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 117, + 239, + 314, + 250 + ], + "spans": [ + { + "bbox": [ + 117, + 239, + 314, + 250 + ], + "score": 1.0, + "content": "statistical machine translation. In EMNLP, 2014.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 215, + 506, + 250 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 258, + 385, + 270 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 385, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 385, + 272 + ], + "score": 1.0, + "content": "Herbert H Clark. Using language. Cambridge university press, 1996.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 257, + 385, + 272 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 277, + 504, + 301 + ], + "lines": [ + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "score": 1.0, + "content": "Jakob Foerster, Yannis M Assael, Nando de Freitas, and Shimon Whiteson. Learning to communicate", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 289, + 429, + 301 + ], + "spans": [ + { + "bbox": [ + 115, + 289, + 429, + 301 + ], + "score": 1.0, + "content": "with deep multi-agent reinforcement learning. In NIPS, pp. 2137–2145, 2016.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 277, + 505, + 301 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 308, + 472, + 321 + ], + "lines": [ + { + "bbox": [ + 105, + 308, + 473, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 473, + 322 + ], + "score": 1.0, + "content": "Gottlob Frege. Zeitschrift fur philosophie und philosophische kritik. ¨ NF, 100:25–50, 1892.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 308, + 473, + 322 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 329, + 504, + 352 + ], + "lines": [ + { + "bbox": [ + 106, + 329, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 505, + 342 + ], + "score": 1.0, + "content": "Zhiting Hu, Zichao Yang, Xiaodan Liang, Ruslan Salakhutdinov, and Eric P Xing. Toward controlled", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 340, + 322, + 352 + ], + "spans": [ + { + "bbox": [ + 116, + 340, + 322, + 352 + ], + "score": 1.0, + "content": "generation of text. In ICML, pp. 1587–1596, 2017.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 106, + 329, + 505, + 352 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 359, + 505, + 383 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 374 + ], + "score": 1.0, + "content": "James R Hurford. Biological evolution of the saussurean sign as a component of the language", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 371, + 317, + 383 + ], + "spans": [ + { + "bbox": [ + 115, + 371, + 317, + 383 + ], + "score": 1.0, + "content": "acquisition device. Lingua, 77(2):187–222, 1989.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 358, + 505, + 383 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 390, + 504, + 413 + ], + "lines": [ + { + "bbox": [ + 105, + 390, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 505, + 403 + ], + "score": 1.0, + "content": "Emilio Jorge, Mikael Kageb ˚ ack, and Emil Gustavsson. Learning to play guess who? and inventing a ¨", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 401, + 433, + 414 + ], + "spans": [ + { + "bbox": [ + 115, + 401, + 433, + 414 + ], + "score": 1.0, + "content": "grounded language as a consequence. arXiv preprint arXiv:1611.03218, 2016.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 390, + 505, + 414 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 420, + 505, + 444 + ], + "lines": [ + { + "bbox": [ + 105, + 420, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 434 + ], + "score": 1.0, + "content": "Andrej Karpathy and Li Fei-Fei. Deep visual-semantic alignments for generating image descriptions.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 432, + 247, + 444 + ], + "spans": [ + { + "bbox": [ + 115, + 432, + 247, + 444 + ], + "score": 1.0, + "content": "In CVPR, pp. 3128–3137, 2015.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 420, + 506, + 444 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 452, + 504, + 475 + ], + "lines": [ + { + "bbox": [ + 106, + 452, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 505, + 465 + ], + "score": 1.0, + "content": "Simon Kirby and James R Hurford. The emergence of linguistic structure: An overview of the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 463, + 496, + 476 + ], + "spans": [ + { + "bbox": [ + 116, + 463, + 496, + 476 + ], + "score": 1.0, + "content": "iterated learning model. In Simulating the evolution of language, pp. 121–147. Springer, 2002.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 106, + 452, + 505, + 476 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 482, + 504, + 506 + ], + "lines": [ + { + "bbox": [ + 105, + 481, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 506, + 497 + ], + "score": 1.0, + "content": "Simon Kirby, Tom Griffiths, and Kenny Smith. Iterated learning and the evolution of language.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 493, + 329, + 506 + ], + "spans": [ + { + "bbox": [ + 116, + 493, + 329, + 506 + ], + "score": 1.0, + "content": "Current opinion in neurobiology, 28:108–114, 2014.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 481, + 506, + 506 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 513, + 505, + 537 + ], + "lines": [ + { + "bbox": [ + 105, + 512, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 506, + 527 + ], + "score": 1.0, + "content": "Satwik Kottur, Jose MF Moura, Stefan Lee, and Dhruv Batra. Natural language does not ´", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 525, + 351, + 537 + ], + "spans": [ + { + "bbox": [ + 115, + 525, + 351, + 537 + ], + "score": 1.0, + "content": "emerge’naturally’in multi-agent dialog. In EMNLP, 2017.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 512, + 506, + 537 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 544, + 505, + 568 + ], + "lines": [ + { + "bbox": [ + 106, + 544, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 505, + 558 + ], + "score": 1.0, + "content": "Angeliki Lazaridou, Alexander Peysakhovich, and Marco Baroni. Multi-agent cooperation and the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 555, + 314, + 568 + ], + "spans": [ + { + "bbox": [ + 115, + 555, + 314, + 568 + ], + "score": 1.0, + "content": "emergence of (natural) language. In ICLR, 2017.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 106, + 544, + 505, + 568 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 574, + 505, + 598 + ], + "lines": [ + { + "bbox": [ + 105, + 573, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 506, + 588 + ], + "score": 1.0, + "content": "Yann LeCun, Yoshua Bengio, and Geoffrey Hinton. Deep learning. Nature, 521(7553):436–444,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 585, + 143, + 599 + ], + "spans": [ + { + "bbox": [ + 115, + 585, + 143, + 599 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 573, + 506, + 599 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 606, + 505, + 629 + ], + "lines": [ + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "score": 1.0, + "content": "Mike Lewis, Denis Yarats, Yann N Dauphin, Devi Parikh, and Dhruv Batra. Deal or no deal?", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 617, + 466, + 630 + ], + "spans": [ + { + "bbox": [ + 115, + 617, + 466, + 630 + ], + "score": 1.0, + "content": "end-to-end learning for negotiation dialogues. arXiv preprint arXiv:1706.05125, 2017.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 106, + 606, + 505, + 630 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 636, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 636, + 504, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 504, + 649 + ], + "score": 1.0, + "content": "Laurens van der Maaten and Geoffrey Hinton. Visualizing data using t-sne. Journal of Machine", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 648, + 302, + 660 + ], + "spans": [ + { + "bbox": [ + 116, + 648, + 302, + 660 + ], + "score": 1.0, + "content": "Learning Research, 9(Nov):2579–2605, 2008.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 636, + 504, + 660 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 667, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 506, + 681 + ], + "score": 1.0, + "content": "Karen Milligan, Janet Wilde Astington, and Lisa Ain Dack. Language and theory of mind: meta-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 678, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 115, + 678, + 506, + 691 + ], + "score": 1.0, + "content": "analysis of the relation between language ability and false-belief understanding. Child development,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 690, + 205, + 702 + ], + "spans": [ + { + "bbox": [ + 116, + 690, + 205, + 702 + ], + "score": 1.0, + "content": "78(2):622–646, 2007.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 106, + 667, + 506, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "Igor Mordatch and Pieter Abbeel. Emergence of grounded compositional language in multi-agent", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 721, + 331, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 331, + 732 + ], + "score": 1.0, + "content": "populations. arXiv preprint arXiv:1703.04908, 2017.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 708, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "Michael Oliphant and John Batali. Learning and the emergence of coordinated communication.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 369, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 369, + 106 + ], + "score": 1.0, + "content": "Center for research on language newsletter, 11(1):1–46, 1997.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 105, + 111, + 505, + 135 + ], + "lines": [ + { + "bbox": [ + 106, + 112, + 506, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 112, + 506, + 125 + ], + "score": 1.0, + "content": "David Premack and Guy Woodruff. Does the chimpanzee have a theory of mind? Behavioral and", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 123, + 262, + 135 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 262, + 135 + ], + "score": 1.0, + "content": "brain sciences, 1(4):515–526, 1978.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 141, + 504, + 176 + ], + "lines": [ + { + "bbox": [ + 105, + 141, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 506, + 155 + ], + "score": 1.0, + "content": "Iulian Vlad Serban, Alessandro Sordoni, Yoshua Bengio, Aaron C Courville, and Joelle Pineau.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 153, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 115, + 153, + 505, + 166 + ], + "score": 1.0, + "content": "Building end-to-end dialogue systems using generative hierarchical neural network models. In", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 114, + 164, + 167, + 176 + ], + "spans": [ + { + "bbox": [ + 114, + 164, + 167, + 176 + ], + "score": 1.0, + "content": "AAAI, 2016.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 105, + 182, + 506, + 206 + ], + "lines": [ + { + "bbox": [ + 106, + 182, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 506, + 196 + ], + "score": 1.0, + "content": "Andrew Smith. Establishing communication systems without explicit meaning transmission. Ad-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 194, + 291, + 206 + ], + "spans": [ + { + "bbox": [ + 115, + 194, + 291, + 206 + ], + "score": 1.0, + "content": "vances in artificial life, pp. 381–390, 2001.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 105, + 212, + 505, + 236 + ], + "lines": [ + { + "bbox": [ + 106, + 213, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 506, + 226 + ], + "score": 1.0, + "content": "Sainbayar Sukhbaatar, Rob Fergus, et al. Learning multiagent communication with backpropagation.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 223, + 243, + 236 + ], + "spans": [ + { + "bbox": [ + 115, + 223, + 243, + 236 + ], + "score": 1.0, + "content": "In NIPS, pp. 2244–2252, 2016.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 243, + 504, + 266 + ], + "lines": [ + { + "bbox": [ + 105, + 241, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 257 + ], + "score": 1.0, + "content": "Oriol Vinyals, Alexander Toshev, Samy Bengio, and Dumitru Erhan. Show and tell: A neural image", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 254, + 322, + 266 + ], + "spans": [ + { + "bbox": [ + 115, + 254, + 322, + 266 + ], + "score": 1.0, + "content": "caption generator. In CVPR, pp. 3156–3164, 2015.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 272, + 439, + 285 + ], + "lines": [ + { + "bbox": [ + 105, + 272, + 439, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 439, + 286 + ], + "score": 1.0, + "content": "Ludwig Wittgenstein. Philosophical investigations. Blackwell, Oxford, UK, 1953.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 104, + 291, + 493, + 304 + ], + "lines": [ + { + "bbox": [ + 105, + 289, + 494, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 494, + 305 + ], + "score": 1.0, + "content": "George Kingsley Zipf. Human behavior and the principle of least effort. Addison-Wesley, 1949.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "Michael Oliphant and John Batali. Learning and the emergence of coordinated communication.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 369, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 369, + 106 + ], + "score": 1.0, + "content": "Center for research on language newsletter, 11(1):1–46, 1997.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 506, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 111, + 505, + 135 + ], + "lines": [ + { + "bbox": [ + 106, + 112, + 506, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 112, + 506, + 125 + ], + "score": 1.0, + "content": "David Premack and Guy Woodruff. Does the chimpanzee have a theory of mind? Behavioral and", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 123, + 262, + 135 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 262, + 135 + ], + "score": 1.0, + "content": "brain sciences, 1(4):515–526, 1978.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 106, + 112, + 506, + 135 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 141, + 504, + 176 + ], + "lines": [ + { + "bbox": [ + 105, + 141, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 506, + 155 + ], + "score": 1.0, + "content": "Iulian Vlad Serban, Alessandro Sordoni, Yoshua Bengio, Aaron C Courville, and Joelle Pineau.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 153, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 115, + 153, + 505, + 166 + ], + "score": 1.0, + "content": "Building end-to-end dialogue systems using generative hierarchical neural network models. In", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 114, + 164, + 167, + 176 + ], + "spans": [ + { + "bbox": [ + 114, + 164, + 167, + 176 + ], + "score": 1.0, + "content": "AAAI, 2016.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 141, + 506, + 176 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 182, + 506, + 206 + ], + "lines": [ + { + "bbox": [ + 106, + 182, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 506, + 196 + ], + "score": 1.0, + "content": "Andrew Smith. Establishing communication systems without explicit meaning transmission. Ad-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 194, + 291, + 206 + ], + "spans": [ + { + "bbox": [ + 115, + 194, + 291, + 206 + ], + "score": 1.0, + "content": "vances in artificial life, pp. 381–390, 2001.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 106, + 182, + 506, + 206 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 212, + 505, + 236 + ], + "lines": [ + { + "bbox": [ + 106, + 213, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 506, + 226 + ], + "score": 1.0, + "content": "Sainbayar Sukhbaatar, Rob Fergus, et al. Learning multiagent communication with backpropagation.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 223, + 243, + 236 + ], + "spans": [ + { + "bbox": [ + 115, + 223, + 243, + 236 + ], + "score": 1.0, + "content": "In NIPS, pp. 2244–2252, 2016.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 106, + 213, + 506, + 236 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 243, + 504, + 266 + ], + "lines": [ + { + "bbox": [ + 105, + 241, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 257 + ], + "score": 1.0, + "content": "Oriol Vinyals, Alexander Toshev, Samy Bengio, and Dumitru Erhan. Show and tell: A neural image", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 254, + 322, + 266 + ], + "spans": [ + { + "bbox": [ + 115, + 254, + 322, + 266 + ], + "score": 1.0, + "content": "caption generator. In CVPR, pp. 3156–3164, 2015.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 241, + 506, + 266 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 272, + 439, + 285 + ], + "lines": [ + { + "bbox": [ + 105, + 272, + 439, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 439, + 286 + ], + "score": 1.0, + "content": "Ludwig Wittgenstein. Philosophical investigations. Blackwell, Oxford, UK, 1953.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 272, + 439, + 286 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 291, + 493, + 304 + ], + "lines": [ + { + "bbox": [ + 105, + 289, + 494, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 494, + 305 + ], + "score": 1.0, + "content": "George Kingsley Zipf. Human behavior and the principle of least effort. Addison-Wesley, 1949.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 289, + 494, + 305 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 128, + 79, + 481, + 208 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 128, + 79, + 481, + 208 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 79, + 481, + 208 + ], + "spans": [ + { + "bbox": [ + 128, + 79, + 481, + 208 + ], + "score": 0.904, + "type": "image", + "image_path": "81623d6fa1690cf173bcc5d807c2fd91fc367f71b2d863a4604fa77be6c9f3a2.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 128, + 79, + 481, + 122.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 128, + 122.0, + 481, + 165.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 128, + 165.0, + 481, + 208.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 217, + 506, + 239 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 217, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 505, + 229 + ], + "score": 1.0, + "content": "Table 5: Meaning vectors are composed of (a) subject vectors and (b) predicate vectors. (c) shows 10", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 228, + 255, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 255, + 240 + ], + "score": 1.0, + "content": "out of 100 possible meaning vectors.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "title", + "bbox": [ + 107, + 262, + 352, + 276 + ], + "lines": [ + { + "bbox": [ + 105, + 261, + 352, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 352, + 278 + ], + "score": 1.0, + "content": "A EMERGENCE OF GRAMMAR, BATALI (1998)", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 289, + 505, + 367 + ], + "lines": [ + { + "bbox": [ + 106, + 290, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 506, + 302 + ], + "score": 1.0, + "content": "In Batali (1998), the author successfully trained neural agents to develop a structured (i.e. gram-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 300, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 313 + ], + "score": 1.0, + "content": "matical) language using disentangled meaning vectors as the input. Using 10 subject vectors and", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 312, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 505, + 325 + ], + "score": 1.0, + "content": "10 predicate vectors, all represented as explicit binary vectors, total 100 meaning vectors could be", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 322, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 506, + 336 + ], + "score": 1.0, + "content": "composed(Table 5). Each digit in the subject vector 5a serves a clear role, respectively representing", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 334, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 137, + 346 + ], + "score": 1.0, + "content": "speaker", + "type": "text" + }, + { + "bbox": [ + 138, + 334, + 153, + 345 + ], + "score": 0.63, + "content": "( s p )", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 334, + 183, + 346 + ], + "score": 1.0, + "content": ", hearer", + "type": "text" + }, + { + "bbox": [ + 183, + 334, + 199, + 345 + ], + "score": 0.46, + "content": "( h r )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 334, + 223, + 346 + ], + "score": 1.0, + "content": ", other", + "type": "text" + }, + { + "bbox": [ + 224, + 334, + 238, + 345 + ], + "score": 0.37, + "content": "( o t )", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 334, + 284, + 346 + ], + "score": 1.0, + "content": ", and plural", + "type": "text" + }, + { + "bbox": [ + 284, + 334, + 298, + 345 + ], + "score": 0.61, + "content": "( p l )", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 334, + 505, + 346 + ], + "score": 1.0, + "content": ". The predicate vector values, on the other hand, are", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 344, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 506, + 357 + ], + "score": 1.0, + "content": "randomly chosen so that each predicate vector will have three 1’s and three 0’s. The combination of", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 356, + 401, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 401, + 369 + ], + "score": 1.0, + "content": "ten subject vectors and ten predicate vectors allows 100 meaning vectors.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 372, + 505, + 471 + ], + "lines": [ + { + "bbox": [ + 106, + 373, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 505, + 385 + ], + "score": 1.0, + "content": "The author used twenty neural agents for the experiment. Each agent was implemented with the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 384, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 505, + 396 + ], + "score": 1.0, + "content": "vanilla recurrent neural networks (RNN), where the hidden vector h’s size was 10, same as the size", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 394, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 505, + 407 + ], + "score": 1.0, + "content": "of the meaning vector m in order to treat h as the agent’s understanding of m. In each training round", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 406, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 506, + 417 + ], + "score": 1.0, + "content": "a single learner (i.e. listener) and ten teachers (i.e. speaker) were randomly chosen. Each teacher,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 416, + 507, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 145, + 429 + ], + "score": 1.0, + "content": "given all", + "type": "text" + }, + { + "bbox": [ + 145, + 416, + 174, + 427 + ], + "score": 0.62, + "content": "1 0 0 \\mathbf { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 416, + 337, + 429 + ], + "score": 1.0, + "content": "’s in random order, generates a message", + "type": "text" + }, + { + "bbox": [ + 337, + 416, + 348, + 426 + ], + "score": 0.84, + "content": "\\mathbf { s } ^ { 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 416, + 384, + 429 + ], + "score": 1.0, + "content": "for each", + "type": "text" + }, + { + "bbox": [ + 385, + 417, + 396, + 426 + ], + "score": 0.32, + "content": "\\mathbf { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 416, + 507, + 429 + ], + "score": 1.0, + "content": "and sends it to the learner.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 426, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 506, + 441 + ], + "score": 1.0, + "content": "The messages are generated using the obverter techinque, which is described in Algorithm 1. The", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 438, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 384, + 450 + ], + "score": 1.0, + "content": "learner is trained to minimize the mean squared error (MSE) between", + "type": "text" + }, + { + "bbox": [ + 384, + 439, + 393, + 449 + ], + "score": 0.25, + "content": "\\mathbf { h }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 438, + 505, + 450 + ], + "score": 1.0, + "content": "(after consuming the s) and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 448, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 462 + ], + "score": 1.0, + "content": "m. After the learner has learned from all ten teachers, the next round begins, repeating the process", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 460, + 276, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 276, + 472 + ], + "score": 1.0, + "content": "until the error goes below some threshold.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 97, + 497, + 372, + 642 + ], + "lines": [ + { + "bbox": [ + 97, + 495, + 310, + 510 + ], + "spans": [ + { + "bbox": [ + 97, + 495, + 106, + 510 + ], + "score": 1.0, + "content": "1", + "type": "text" + }, + { + "bbox": [ + 106, + 496, + 143, + 508 + ], + "score": 0.78, + "content": "\\mathbf { h } ^ { ( 0 ) } = \\mathbf { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 495, + 310, + 510 + ], + "score": 1.0, + "content": "//Initialize RNN hidden layer with zeros;", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 97, + 507, + 261, + 522 + ], + "spans": [ + { + "bbox": [ + 97, + 507, + 106, + 522 + ], + "score": 1.0, + "content": "2", + "type": "text" + }, + { + "bbox": [ + 106, + 509, + 135, + 520 + ], + "score": 0.8, + "content": "\\mathbf { s } = \\left[ \\mathbf { \\epsilon } \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 507, + 261, + 522 + ], + "score": 1.0, + "content": "//Initialize the message vector;", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 97, + 519, + 203, + 531 + ], + "spans": [ + { + "bbox": [ + 97, + 519, + 106, + 531 + ], + "score": 1.0, + "content": "3", + "type": "text" + }, + { + "bbox": [ + 106, + 520, + 130, + 530 + ], + "score": 0.86, + "content": "t = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 519, + 203, + 531 + ], + "score": 1.0, + "content": "//Timestep index;", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 96, + 529, + 372, + 546 + ], + "spans": [ + { + "bbox": [ + 96, + 529, + 106, + 546 + ], + "score": 1.0, + "content": "4", + "type": "text" + }, + { + "bbox": [ + 107, + 531, + 168, + 542 + ], + "score": 0.89, + "content": "\\mathbf { V } = \\mathbf { I } \\in \\mathbb { R } ^ { 4 \\times 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 529, + 215, + 546 + ], + "score": 1.0, + "content": "//Each row", + "type": "text" + }, + { + "bbox": [ + 215, + 534, + 272, + 543 + ], + "score": 0.89, + "content": "\\mathbf { v } _ { 0 } , \\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } , \\mathbf { v } _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 529, + 334, + 546 + ], + "score": 1.0, + "content": "corresponds to", + "type": "text" + }, + { + "bbox": [ + 334, + 532, + 367, + 544 + ], + "score": 0.9, + "content": "a , b , c , d", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 529, + 372, + 546 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 97, + 542, + 251, + 556 + ], + "spans": [ + { + "bbox": [ + 97, + 542, + 132, + 556 + ], + "score": 1.0, + "content": "5 while", + "type": "text" + }, + { + "bbox": [ + 132, + 543, + 173, + 555 + ], + "score": 0.58, + "content": "| \\mathbf { s } | < m a x", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 542, + 251, + 556 + ], + "score": 1.0, + "content": "message length do", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 98, + 550, + 272, + 573 + ], + "spans": [ + { + "bbox": [ + 98, + 559, + 105, + 568 + ], + "score": 1.0, + "content": "6", + "type": "text" + }, + { + "bbox": [ + 117, + 550, + 120, + 573 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 120, + 555, + 265, + 569 + ], + "score": 0.87, + "content": "\\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) } = \\sigma ( \\mathbf { v } _ { i } \\mathbf { W } _ { i } + \\mathbf { h } ^ { ( t - 1 ) } \\mathbf { W } _ { h } + \\mathbf { b } )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 550, + 272, + 573 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 98, + 569, + 234, + 584 + ], + "spans": [ + { + "bbox": [ + 98, + 574, + 104, + 582 + ], + "score": 1.0, + "content": "7", + "type": "text" + }, + { + "bbox": [ + 122, + 569, + 228, + 583 + ], + "score": 0.78, + "content": "i = \\mathrm { a r g m i n } _ { i } \\vert \\vert \\mathbf { m } - \\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) } \\vert \\vert ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 569, + 234, + 584 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 98, + 578, + 177, + 603 + ], + "spans": [ + { + "bbox": [ + 98, + 589, + 104, + 597 + ], + "score": 1.0, + "content": "8", + "type": "text" + }, + { + "bbox": [ + 122, + 583, + 168, + 597 + ], + "score": 0.86, + "content": "\\mathbf { h } ^ { ( t ) } = \\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 578, + 177, + 603 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 98, + 596, + 183, + 610 + ], + "spans": [ + { + "bbox": [ + 98, + 600, + 104, + 608 + ], + "score": 1.0, + "content": "9", + "type": "text" + }, + { + "bbox": [ + 121, + 596, + 155, + 610 + ], + "score": 1.0, + "content": "Append", + "type": "text" + }, + { + "bbox": [ + 156, + 598, + 161, + 607 + ], + "score": 0.65, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 596, + 183, + 610 + ], + "score": 1.0, + "content": "to s;", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 95, + 608, + 264, + 622 + ], + "spans": [ + { + "bbox": [ + 95, + 613, + 105, + 622 + ], + "score": 1.0, + "content": "10", + "type": "text" + }, + { + "bbox": [ + 120, + 608, + 131, + 622 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 131, + 609, + 249, + 622 + ], + "score": 0.42, + "content": "| | \\mathbf { m } - \\mathbf { h } ^ { ( t ) } | | ^ { 2 } < t h r e s h o l d \\mathbf { t } 1", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 608, + 264, + 622 + ], + "score": 1.0, + "content": "hen", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 95, + 621, + 183, + 633 + ], + "spans": [ + { + "bbox": [ + 95, + 624, + 104, + 632 + ], + "score": 1.0, + "content": "11", + "type": "text" + }, + { + "bbox": [ + 128, + 621, + 183, + 633 + ], + "score": 1.0, + "content": "Terminate;", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 651, + 505, + 707 + ], + "lines": [ + { + "bbox": [ + 105, + 651, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 505, + 664 + ], + "score": 1.0, + "content": "When the training was complete, the author was able to find strong patterns in the messages used", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 662, + 505, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 505, + 676 + ], + "score": 1.0, + "content": "by the agents (Table 6). Note that the messages using predicates tired, scared, sick and happy", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 673, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 104, + 673, + 506, + 687 + ], + "score": 1.0, + "content": "especially follow a very clear pattern. Batali also conducted a zero-shot test where the agents were", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 684, + 506, + 697 + ], + "spans": [ + { + "bbox": [ + 106, + 684, + 506, + 697 + ], + "score": 1.0, + "content": "trained without the diagonal elements in Table 6 and tested with all 100 meaning vectors. The agents", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 695, + 505, + 709 + ], + "spans": [ + { + "bbox": [ + 106, + 695, + 505, + 709 + ], + "score": 1.0, + "content": "were able to successfully communicate even when held-out meaning vectors were used, but the", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 115, + 721, + 479, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 720, + 479, + 733 + ], + "spans": [ + { + "bbox": [ + 119, + 720, + 306, + 733 + ], + "score": 1.0, + "content": "5A message is a sequence of alphabets chosen from", + "type": "text" + }, + { + "bbox": [ + 307, + 724, + 312, + 730 + ], + "score": 0.32, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 720, + 315, + 733 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 315, + 722, + 320, + 730 + ], + "score": 0.4, + "content": "^ b", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 720, + 324, + 733 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 324, + 723, + 329, + 730 + ], + "score": 0.48, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 720, + 340, + 733 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 340, + 722, + 346, + 730 + ], + "score": 0.49, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 720, + 479, + 733 + ], + "score": 1.0, + "content": ". The maximum length was set to 20.", + "type": "text" + } + ] + } + ] + }, + { + "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": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 128, + 79, + 481, + 208 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 128, + 79, + 481, + 208 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 79, + 481, + 208 + ], + "spans": [ + { + "bbox": [ + 128, + 79, + 481, + 208 + ], + "score": 0.904, + "type": "image", + "image_path": "81623d6fa1690cf173bcc5d807c2fd91fc367f71b2d863a4604fa77be6c9f3a2.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 128, + 79, + 481, + 122.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 128, + 122.0, + 481, + 165.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 128, + 165.0, + 481, + 208.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 217, + 506, + 239 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 217, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 505, + 229 + ], + "score": 1.0, + "content": "Table 5: Meaning vectors are composed of (a) subject vectors and (b) predicate vectors. (c) shows 10", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 228, + 255, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 255, + 240 + ], + "score": 1.0, + "content": "out of 100 possible meaning vectors.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "title", + "bbox": [ + 107, + 262, + 352, + 276 + ], + "lines": [ + { + "bbox": [ + 105, + 261, + 352, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 352, + 278 + ], + "score": 1.0, + "content": "A EMERGENCE OF GRAMMAR, BATALI (1998)", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 289, + 505, + 367 + ], + "lines": [ + { + "bbox": [ + 106, + 290, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 506, + 302 + ], + "score": 1.0, + "content": "In Batali (1998), the author successfully trained neural agents to develop a structured (i.e. gram-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 300, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 313 + ], + "score": 1.0, + "content": "matical) language using disentangled meaning vectors as the input. Using 10 subject vectors and", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 312, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 505, + 325 + ], + "score": 1.0, + "content": "10 predicate vectors, all represented as explicit binary vectors, total 100 meaning vectors could be", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 322, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 506, + 336 + ], + "score": 1.0, + "content": "composed(Table 5). Each digit in the subject vector 5a serves a clear role, respectively representing", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 334, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 137, + 346 + ], + "score": 1.0, + "content": "speaker", + "type": "text" + }, + { + "bbox": [ + 138, + 334, + 153, + 345 + ], + "score": 0.63, + "content": "( s p )", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 334, + 183, + 346 + ], + "score": 1.0, + "content": ", hearer", + "type": "text" + }, + { + "bbox": [ + 183, + 334, + 199, + 345 + ], + "score": 0.46, + "content": "( h r )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 334, + 223, + 346 + ], + "score": 1.0, + "content": ", other", + "type": "text" + }, + { + "bbox": [ + 224, + 334, + 238, + 345 + ], + "score": 0.37, + "content": "( o t )", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 334, + 284, + 346 + ], + "score": 1.0, + "content": ", and plural", + "type": "text" + }, + { + "bbox": [ + 284, + 334, + 298, + 345 + ], + "score": 0.61, + "content": "( p l )", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 334, + 505, + 346 + ], + "score": 1.0, + "content": ". The predicate vector values, on the other hand, are", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 344, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 506, + 357 + ], + "score": 1.0, + "content": "randomly chosen so that each predicate vector will have three 1’s and three 0’s. The combination of", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 356, + 401, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 401, + 369 + ], + "score": 1.0, + "content": "ten subject vectors and ten predicate vectors allows 100 meaning vectors.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 290, + 506, + 369 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 372, + 505, + 471 + ], + "lines": [ + { + "bbox": [ + 106, + 373, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 505, + 385 + ], + "score": 1.0, + "content": "The author used twenty neural agents for the experiment. Each agent was implemented with the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 384, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 505, + 396 + ], + "score": 1.0, + "content": "vanilla recurrent neural networks (RNN), where the hidden vector h’s size was 10, same as the size", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 394, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 505, + 407 + ], + "score": 1.0, + "content": "of the meaning vector m in order to treat h as the agent’s understanding of m. In each training round", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 406, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 506, + 417 + ], + "score": 1.0, + "content": "a single learner (i.e. listener) and ten teachers (i.e. speaker) were randomly chosen. Each teacher,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 416, + 507, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 145, + 429 + ], + "score": 1.0, + "content": "given all", + "type": "text" + }, + { + "bbox": [ + 145, + 416, + 174, + 427 + ], + "score": 0.62, + "content": "1 0 0 \\mathbf { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 416, + 337, + 429 + ], + "score": 1.0, + "content": "’s in random order, generates a message", + "type": "text" + }, + { + "bbox": [ + 337, + 416, + 348, + 426 + ], + "score": 0.84, + "content": "\\mathbf { s } ^ { 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 416, + 384, + 429 + ], + "score": 1.0, + "content": "for each", + "type": "text" + }, + { + "bbox": [ + 385, + 417, + 396, + 426 + ], + "score": 0.32, + "content": "\\mathbf { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 416, + 507, + 429 + ], + "score": 1.0, + "content": "and sends it to the learner.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 426, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 506, + 441 + ], + "score": 1.0, + "content": "The messages are generated using the obverter techinque, which is described in Algorithm 1. The", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 438, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 384, + 450 + ], + "score": 1.0, + "content": "learner is trained to minimize the mean squared error (MSE) between", + "type": "text" + }, + { + "bbox": [ + 384, + 439, + 393, + 449 + ], + "score": 0.25, + "content": "\\mathbf { h }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 438, + 505, + 450 + ], + "score": 1.0, + "content": "(after consuming the s) and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 448, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 462 + ], + "score": 1.0, + "content": "m. After the learner has learned from all ten teachers, the next round begins, repeating the process", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 460, + 276, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 276, + 472 + ], + "score": 1.0, + "content": "until the error goes below some threshold.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 373, + 507, + 472 + ] + }, + { + "type": "index", + "bbox": [ + 97, + 497, + 372, + 642 + ], + "lines": [ + { + "bbox": [ + 97, + 495, + 310, + 510 + ], + "spans": [ + { + "bbox": [ + 97, + 495, + 106, + 510 + ], + "score": 1.0, + "content": "1", + "type": "text" + }, + { + "bbox": [ + 106, + 496, + 143, + 508 + ], + "score": 0.78, + "content": "\\mathbf { h } ^ { ( 0 ) } = \\mathbf { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 495, + 310, + 510 + ], + "score": 1.0, + "content": "//Initialize RNN hidden layer with zeros;", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 97, + 507, + 261, + 522 + ], + "spans": [ + { + "bbox": [ + 97, + 507, + 106, + 522 + ], + "score": 1.0, + "content": "2", + "type": "text" + }, + { + "bbox": [ + 106, + 509, + 135, + 520 + ], + "score": 0.8, + "content": "\\mathbf { s } = \\left[ \\mathbf { \\epsilon } \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 507, + 261, + 522 + ], + "score": 1.0, + "content": "//Initialize the message vector;", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 97, + 519, + 203, + 531 + ], + "spans": [ + { + "bbox": [ + 97, + 519, + 106, + 531 + ], + "score": 1.0, + "content": "3", + "type": "text" + }, + { + "bbox": [ + 106, + 520, + 130, + 530 + ], + "score": 0.86, + "content": "t = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 519, + 203, + 531 + ], + "score": 1.0, + "content": "//Timestep index;", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 96, + 529, + 372, + 546 + ], + "spans": [ + { + "bbox": [ + 96, + 529, + 106, + 546 + ], + "score": 1.0, + "content": "4", + "type": "text" + }, + { + "bbox": [ + 107, + 531, + 168, + 542 + ], + "score": 0.89, + "content": "\\mathbf { V } = \\mathbf { I } \\in \\mathbb { R } ^ { 4 \\times 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 529, + 215, + 546 + ], + "score": 1.0, + "content": "//Each row", + "type": "text" + }, + { + "bbox": [ + 215, + 534, + 272, + 543 + ], + "score": 0.89, + "content": "\\mathbf { v } _ { 0 } , \\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } , \\mathbf { v } _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 529, + 334, + 546 + ], + "score": 1.0, + "content": "corresponds to", + "type": "text" + }, + { + "bbox": [ + 334, + 532, + 367, + 544 + ], + "score": 0.9, + "content": "a , b , c , d", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 529, + 372, + 546 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 97, + 542, + 251, + 556 + ], + "spans": [ + { + "bbox": [ + 97, + 542, + 132, + 556 + ], + "score": 1.0, + "content": "5 while", + "type": "text" + }, + { + "bbox": [ + 132, + 543, + 173, + 555 + ], + "score": 0.58, + "content": "| \\mathbf { s } | < m a x", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 542, + 251, + 556 + ], + "score": 1.0, + "content": "message length do", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 98, + 550, + 272, + 573 + ], + "spans": [ + { + "bbox": [ + 98, + 559, + 105, + 568 + ], + "score": 1.0, + "content": "6", + "type": "text" + }, + { + "bbox": [ + 117, + 550, + 120, + 573 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 120, + 555, + 265, + 569 + ], + "score": 0.87, + "content": "\\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) } = \\sigma ( \\mathbf { v } _ { i } \\mathbf { W } _ { i } + \\mathbf { h } ^ { ( t - 1 ) } \\mathbf { W } _ { h } + \\mathbf { b } )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 550, + 272, + 573 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 98, + 569, + 234, + 584 + ], + "spans": [ + { + "bbox": [ + 98, + 574, + 104, + 582 + ], + "score": 1.0, + "content": "7", + "type": "text" + }, + { + "bbox": [ + 122, + 569, + 228, + 583 + ], + "score": 0.78, + "content": "i = \\mathrm { a r g m i n } _ { i } \\vert \\vert \\mathbf { m } - \\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) } \\vert \\vert ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 569, + 234, + 584 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 98, + 578, + 177, + 603 + ], + "spans": [ + { + "bbox": [ + 98, + 589, + 104, + 597 + ], + "score": 1.0, + "content": "8", + "type": "text" + }, + { + "bbox": [ + 122, + 583, + 168, + 597 + ], + "score": 0.86, + "content": "\\mathbf { h } ^ { ( t ) } = \\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 578, + 177, + 603 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 98, + 596, + 183, + 610 + ], + "spans": [ + { + "bbox": [ + 98, + 600, + 104, + 608 + ], + "score": 1.0, + "content": "9", + "type": "text" + }, + { + "bbox": [ + 121, + 596, + 155, + 610 + ], + "score": 1.0, + "content": "Append", + "type": "text" + }, + { + "bbox": [ + 156, + 598, + 161, + 607 + ], + "score": 0.65, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 596, + 183, + 610 + ], + "score": 1.0, + "content": "to s;", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 95, + 608, + 264, + 622 + ], + "spans": [ + { + "bbox": [ + 95, + 613, + 105, + 622 + ], + "score": 1.0, + "content": "10", + "type": "text" + }, + { + "bbox": [ + 120, + 608, + 131, + 622 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 131, + 609, + 249, + 622 + ], + "score": 0.42, + "content": "| | \\mathbf { m } - \\mathbf { h } ^ { ( t ) } | | ^ { 2 } < t h r e s h o l d \\mathbf { t } 1", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 608, + 264, + 622 + ], + "score": 1.0, + "content": "hen", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 95, + 621, + 183, + 633 + ], + "spans": [ + { + "bbox": [ + 95, + 624, + 104, + 632 + ], + "score": 1.0, + "content": "11", + "type": "text" + }, + { + "bbox": [ + 128, + 621, + 183, + 633 + ], + "score": 1.0, + "content": "Terminate;", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + } + ], + "index": 27, + "bbox_fs": [ + 95, + 495, + 372, + 633 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 651, + 505, + 707 + ], + "lines": [ + { + "bbox": [ + 105, + 651, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 505, + 664 + ], + "score": 1.0, + "content": "When the training was complete, the author was able to find strong patterns in the messages used", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 662, + 505, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 505, + 676 + ], + "score": 1.0, + "content": "by the agents (Table 6). Note that the messages using predicates tired, scared, sick and happy", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 673, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 104, + 673, + 506, + 687 + ], + "score": 1.0, + "content": "especially follow a very clear pattern. Batali also conducted a zero-shot test where the agents were", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 684, + 506, + 697 + ], + "spans": [ + { + "bbox": [ + 106, + 684, + 506, + 697 + ], + "score": 1.0, + "content": "trained without the diagonal elements in Table 6 and tested with all 100 meaning vectors. The agents", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 695, + 505, + 709 + ], + "spans": [ + { + "bbox": [ + 106, + 695, + 505, + 709 + ], + "score": 1.0, + "content": "were able to successfully communicate even when held-out meaning vectors were used, but the", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35, + "bbox_fs": [ + 104, + 651, + 506, + 709 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 136, + 80, + 473, + 192 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 136, + 80, + 473, + 192 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 136, + 80, + 473, + 192 + ], + "spans": [ + { + "bbox": [ + 136, + 80, + 473, + 192 + ], + "score": 0.911, + "html": "
=onetheyyouyallyupmewemipyumiall
tiredcdacdabcdccdcbcdbacdcddcddbcdcdcdb
scaredcaacaabcaccacbcabacacadcadbcacdcab
sickdaadaabdacdacbdabadadaddadbdacddab
happy sadbaabaab ababbcabcabbaacbabadcbabbacbabc
excitedaba cbacbabacacb cacbabac cbcaaabdc ccdcabbabcabbc
angrybbbbbcca bcccbccbcbc
bcbbbcbbddcbdbbdcbdbc
sillyaaaaabacaacabadbaaddaddcadadadcadbc
thirstydbaadbabdcadcbadbcaddaddacdbaddcaddbacd
hungrydbbdbbddcdcbdbcddddcdbddcddbcd
", + "type": "table", + "image_path": "004fdabe8b0e0e6a8ff74df89bf7550173c82bf401750b5a2790f081cd9bf041.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 136, + 80, + 473, + 117.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 136, + 117.33333333333334, + 473, + 154.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 136, + 154.66666666666669, + 473, + 192.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "table", + "bbox": [ + 128, + 201, + 479, + 313 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 128, + 201, + 479, + 313 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 128, + 201, + 479, + 313 + ], + "spans": [ + { + "bbox": [ + 128, + 201, + 479, + 313 + ], + "score": 0.934, + "html": "
-onetheyyouyallyupmewemipyumiall
tiredcdacdabcdccdcbcdbacdcddcddbcdcdcdb
scaredcaacaabcaccacbcabacacadcadbcacdcab
sickdaadaabdacdacbdabadadaddadbdacddab
happybaabaabbcabcabbaacbabadcbabbacbabc
sad excitedabaababacacbabacaabdcabbabcabbc
cbacbabccacacbcbcaCccdccbccbcbc
angrycbcbbCCccbcbcCcddccdbcdccdbc
silly(aa)(aaab)(aca)(acab)adbaaddaddcadadadcadbc
thirstydbaadbabdcadcbadbcaddaddacdbaddcaddbacd
hungrydbbdbbddcdcbdbcddddcdbddcddbcd
", + "type": "table", + "image_path": "41a1513b8f0051663e2b6f09172f21f3ea517adf28bdd283c3cc3c0bb5f347b6.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 128, + 201, + 479, + 238.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 128, + 238.33333333333334, + 479, + 275.6666666666667 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 128, + 275.6666666666667, + 479, + 313.0 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 321, + 505, + 366 + ], + "lines": [ + { + "bbox": [ + 104, + 320, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 104, + 320, + 506, + 334 + ], + "score": 1.0, + "content": "Table 6: (Top) Messages used by a majority of the population for each of the given meanings.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 333, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 505, + 345 + ], + "score": 1.0, + "content": "(Bottom) A potential analysis of the system in terms of a root plus modifications. Italic symbols are", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 505, + 356 + ], + "score": 1.0, + "content": "used to specify predicates and roman symbols are used to specify subjects. Messages in parentheses", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 354, + 264, + 366 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 264, + 366 + ], + "score": 1.0, + "content": "cannot be made to fit into this analysis.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 108, + 389, + 504, + 411 + ], + "lines": [ + { + "bbox": [ + 105, + 388, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 402 + ], + "score": 1.0, + "content": "messages used for the held-out meaning vectors did not show as strong compositional patterns as the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 400, + 187, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 187, + 412 + ], + "score": 1.0, + "content": "non-zero-shot case.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "title", + "bbox": [ + 107, + 429, + 443, + 455 + ], + "lines": [ + { + "bbox": [ + 105, + 429, + 444, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 444, + 444 + ], + "score": 1.0, + "content": "B COMPARISON BETWEEN THE OBVERTER TECHINQUE AND THE", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 126, + 445, + 370, + 457 + ], + "spans": [ + { + "bbox": [ + 126, + 445, + 370, + 457 + ], + "score": 1.0, + "content": "REINFORCEMENT LEARNING-BASED APPROACH", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 469, + 504, + 491 + ], + "lines": [ + { + "bbox": [ + 106, + 468, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 505, + 481 + ], + "score": 1.0, + "content": "The obverter technique allows us to generate messages that encourage the agents to use a shared", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 478, + 489, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 489, + 493 + ], + "score": 1.0, + "content": "language, even a highly structured one, via using a single RNN for both speaking and listening.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 496, + 505, + 650 + ], + "lines": [ + { + "bbox": [ + 106, + 496, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 505, + 507 + ], + "score": 1.0, + "content": "This is quite different from other RL-based related works (Lazaridou et al., 2017; Mordatch &", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 507, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 506, + 520 + ], + "score": 1.0, + "content": "Abbeel, 2017; Foerster et al., 2016; Jorge et al., 2016; Kottur et al., 2017) where each agent has", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 518, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 506, + 532 + ], + "score": 1.0, + "content": "separate components (e.g. two RNNs) for generating messages and consuming messages. This is", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 529, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 506, + 542 + ], + "score": 1.0, + "content": "necessary typically because the message generation module and the message consumption module", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 540, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 506, + 554 + ], + "score": 1.0, + "content": "have different input/output requirements. The message generation module accepts some input related", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 550, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 565 + ], + "score": 1.0, + "content": "to the task (e.g. goal description vector, question embedding, or image embedding) and generates", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 562, + 506, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 506, + 575 + ], + "score": 1.0, + "content": "discrete symbols. The message consumption module, on the other hand, accepts discrete symbols", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 573, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 506, + 587 + ], + "score": 1.0, + "content": "(i.e. the message) and generates some output related to the task (e.g. some prediction or some action", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 584, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 506, + 597 + ], + "score": 1.0, + "content": "to take). Therefore, when a neural agent speaks in the RL-based approach, its message generation", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 595, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 104, + 595, + 506, + 608 + ], + "score": 1.0, + "content": "process is completely separated from its own listening process, but tied to the listening process of", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 605, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 619 + ], + "score": 1.0, + "content": "another agent (i.e. listener)6. This means an agent may not have internal consistency; what an agent", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 617, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 506, + 630 + ], + "score": 1.0, + "content": "speaks may not make sense to itself. However, agents in the RL-based setting do converge on a", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 628, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 506, + 641 + ], + "score": 1.0, + "content": "common language because, during the training, the error signal flows from the listener to the speaker", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 638, + 142, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 142, + 652 + ], + "score": 1.0, + "content": "directly.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 656, + 504, + 700 + ], + "lines": [ + { + "bbox": [ + 106, + 656, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 506, + 669 + ], + "score": 1.0, + "content": "Obverter approach, on the other hand, requires that each agent has a single component for both", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 667, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 679 + ], + "score": 1.0, + "content": "message generation and message consumption. This single component accepts discrete symbols and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 679, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 506, + 690 + ], + "score": 1.0, + "content": "generates some output related to the task. This guarantees internal consistency because an agent’s", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 689, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 506, + 702 + ], + "score": 1.0, + "content": "message generation process is tied to its own message consumption process; it will only generate", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 712, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 118, + 709, + 505, + 724 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 505, + 724 + ], + "score": 1.0, + "content": "6Note that this is still true even when using tricks to replace the message sampling process with some", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 721, + 354, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 354, + 732 + ], + "score": 1.0, + "content": "approximation functions (Gumbel-softmax or Concrete distribution)", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 136, + 80, + 473, + 192 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 136, + 80, + 473, + 192 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 136, + 80, + 473, + 192 + ], + "spans": [ + { + "bbox": [ + 136, + 80, + 473, + 192 + ], + "score": 0.911, + "html": "
=onetheyyouyallyupmewemipyumiall
tiredcdacdabcdccdcbcdbacdcddcddbcdcdcdb
scaredcaacaabcaccacbcabacacadcadbcacdcab
sickdaadaabdacdacbdabadadaddadbdacddab
happy sadbaabaab ababbcabcabbaacbabadcbabbacbabc
excitedaba cbacbabacacb cacbabac cbcaaabdc ccdcabbabcabbc
angrybbbbbcca bcccbccbcbc
bcbbbcbbddcbdbbdcbdbc
sillyaaaaabacaacabadbaaddaddcadadadcadbc
thirstydbaadbabdcadcbadbcaddaddacdbaddcaddbacd
hungrydbbdbbddcdcbdbcddddcdbddcddbcd
", + "type": "table", + "image_path": "004fdabe8b0e0e6a8ff74df89bf7550173c82bf401750b5a2790f081cd9bf041.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 136, + 80, + 473, + 117.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 136, + 117.33333333333334, + 473, + 154.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 136, + 154.66666666666669, + 473, + 192.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "table", + "bbox": [ + 128, + 201, + 479, + 313 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 128, + 201, + 479, + 313 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 128, + 201, + 479, + 313 + ], + "spans": [ + { + "bbox": [ + 128, + 201, + 479, + 313 + ], + "score": 0.934, + "html": "
-onetheyyouyallyupmewemipyumiall
tiredcdacdabcdccdcbcdbacdcddcddbcdcdcdb
scaredcaacaabcaccacbcabacacadcadbcacdcab
sickdaadaabdacdacbdabadadaddadbdacddab
happybaabaabbcabcabbaacbabadcbabbacbabc
sad excitedabaababacacbabacaabdcabbabcabbc
cbacbabccacacbcbcaCccdccbccbcbc
angrycbcbbCCccbcbcCcddccdbcdccdbc
silly(aa)(aaab)(aca)(acab)adbaaddaddcadadadcadbc
thirstydbaadbabdcadcbadbcaddaddacdbaddcaddbacd
hungrydbbdbbddcdcbdbcddddcdbddcddbcd
", + "type": "table", + "image_path": "41a1513b8f0051663e2b6f09172f21f3ea517adf28bdd283c3cc3c0bb5f347b6.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 128, + 201, + 479, + 238.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 128, + 238.33333333333334, + 479, + 275.6666666666667 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 128, + 275.6666666666667, + 479, + 313.0 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 321, + 505, + 366 + ], + "lines": [ + { + "bbox": [ + 104, + 320, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 104, + 320, + 506, + 334 + ], + "score": 1.0, + "content": "Table 6: (Top) Messages used by a majority of the population for each of the given meanings.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 333, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 505, + 345 + ], + "score": 1.0, + "content": "(Bottom) A potential analysis of the system in terms of a root plus modifications. Italic symbols are", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 505, + 356 + ], + "score": 1.0, + "content": "used to specify predicates and roman symbols are used to specify subjects. Messages in parentheses", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 354, + 264, + 366 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 264, + 366 + ], + "score": 1.0, + "content": "cannot be made to fit into this analysis.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5, + "bbox_fs": [ + 104, + 320, + 506, + 366 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 389, + 504, + 411 + ], + "lines": [ + { + "bbox": [ + 105, + 388, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 402 + ], + "score": 1.0, + "content": "messages used for the held-out meaning vectors did not show as strong compositional patterns as the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 400, + 187, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 187, + 412 + ], + "score": 1.0, + "content": "non-zero-shot case.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 388, + 505, + 412 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 429, + 443, + 455 + ], + "lines": [ + { + "bbox": [ + 105, + 429, + 444, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 444, + 444 + ], + "score": 1.0, + "content": "B COMPARISON BETWEEN THE OBVERTER TECHINQUE AND THE", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 126, + 445, + 370, + 457 + ], + "spans": [ + { + "bbox": [ + 126, + 445, + 370, + 457 + ], + "score": 1.0, + "content": "REINFORCEMENT LEARNING-BASED APPROACH", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 469, + 504, + 491 + ], + "lines": [ + { + "bbox": [ + 106, + 468, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 505, + 481 + ], + "score": 1.0, + "content": "The obverter technique allows us to generate messages that encourage the agents to use a shared", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 478, + 489, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 489, + 493 + ], + "score": 1.0, + "content": "language, even a highly structured one, via using a single RNN for both speaking and listening.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 468, + 505, + 493 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 496, + 505, + 650 + ], + "lines": [ + { + "bbox": [ + 106, + 496, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 505, + 507 + ], + "score": 1.0, + "content": "This is quite different from other RL-based related works (Lazaridou et al., 2017; Mordatch &", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 507, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 506, + 520 + ], + "score": 1.0, + "content": "Abbeel, 2017; Foerster et al., 2016; Jorge et al., 2016; Kottur et al., 2017) where each agent has", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 518, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 506, + 532 + ], + "score": 1.0, + "content": "separate components (e.g. two RNNs) for generating messages and consuming messages. This is", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 529, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 506, + 542 + ], + "score": 1.0, + "content": "necessary typically because the message generation module and the message consumption module", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 540, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 506, + 554 + ], + "score": 1.0, + "content": "have different input/output requirements. The message generation module accepts some input related", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 550, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 565 + ], + "score": 1.0, + "content": "to the task (e.g. goal description vector, question embedding, or image embedding) and generates", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 562, + 506, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 506, + 575 + ], + "score": 1.0, + "content": "discrete symbols. The message consumption module, on the other hand, accepts discrete symbols", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 573, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 506, + 587 + ], + "score": 1.0, + "content": "(i.e. the message) and generates some output related to the task (e.g. some prediction or some action", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 584, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 506, + 597 + ], + "score": 1.0, + "content": "to take). Therefore, when a neural agent speaks in the RL-based approach, its message generation", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 595, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 104, + 595, + 506, + 608 + ], + "score": 1.0, + "content": "process is completely separated from its own listening process, but tied to the listening process of", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 605, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 619 + ], + "score": 1.0, + "content": "another agent (i.e. listener)6. This means an agent may not have internal consistency; what an agent", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 617, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 506, + 630 + ], + "score": 1.0, + "content": "speaks may not make sense to itself. However, agents in the RL-based setting do converge on a", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 628, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 506, + 641 + ], + "score": 1.0, + "content": "common language because, during the training, the error signal flows from the listener to the speaker", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 638, + 142, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 142, + 652 + ], + "score": 1.0, + "content": "directly.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 22.5, + "bbox_fs": [ + 104, + 496, + 506, + 652 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 656, + 504, + 700 + ], + "lines": [ + { + "bbox": [ + 106, + 656, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 506, + 669 + ], + "score": 1.0, + "content": "Obverter approach, on the other hand, requires that each agent has a single component for both", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 667, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 679 + ], + "score": 1.0, + "content": "message generation and message consumption. This single component accepts discrete symbols and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 679, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 506, + 690 + ], + "score": 1.0, + "content": "generates some output related to the task. This guarantees internal consistency because an agent’s", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 689, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 506, + 702 + ], + "score": 1.0, + "content": "message generation process is tied to its own message consumption process; it will only generate", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "messages that make sense to itself. In the obverter setting, the error signal does not flow between", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "agents directly, but agents converge on a common language by taking turns to be the listener; the", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "listener tries to understand what the speaker says, so that when the listener becomes the speaker, it", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "can generate messages that make sense to itself and, at the same time, will be understood by the", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 229, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 229, + 139 + ], + "score": 1.0, + "content": "former speaker (now listener).", + "type": "text", + "cross_page": true + } + ], + "index": 4 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 656, + 506, + 702 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 137 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "messages that make sense to itself. In the obverter setting, the error signal does not flow between", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "agents directly, but agents converge on a common language by taking turns to be the listener; the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "listener tries to understand what the speaker says, so that when the listener becomes the speaker, it", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "can generate messages that make sense to itself and, at the same time, will be understood by the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 229, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 229, + 139 + ], + "score": 1.0, + "content": "former speaker (now listener).", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 143, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "score": 1.0, + "content": "The advantage of obverter approach over RL-based approach is that it is motivated by the theory", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "score": 1.0, + "content": "of mind and more resembles the acquisition/development process of human language. Having a", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "score": 1.0, + "content": "single mechanism for both speaking and listening, and training oneself to be a good listener leads", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 177, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 505, + 188 + ], + "score": 1.0, + "content": "to the emergence of self-consistent, shared language. However, obverter technique requires that", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 507, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 507, + 200 + ], + "score": 1.0, + "content": "all agents perform the same task, which means all agents must have identical model architectures.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 197, + 506, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 506, + 212 + ], + "score": 1.0, + "content": "This is because, during the message generation process, the speaker internally simulates what the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "score": 1.0, + "content": "listener will go though when it hears the message. Therefore we cannot play an asymmetrical game", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 233 + ], + "score": 1.0, + "content": "such as where the speaker sees only one image and generates a message but the listener is given", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 232, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 505, + 243 + ], + "score": 1.0, + "content": "multiple images and must choose one after hearing the message. RL-based approaches do not have", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 399, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 399, + 256 + ], + "score": 1.0, + "content": "this problem since there are separate modules for speaking and listening.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 259, + 505, + 314 + ], + "lines": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "We believe obverter technique could be the better choice for certain tasks regarding human mind", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "emulation. But it certainly is not the tool for every occasion. The RL-based approach is a robust", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 281, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 505, + 293 + ], + "score": 1.0, + "content": "tool for any general task that may or may not involve human-like communication. We conclude this", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 291, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 305 + ], + "score": 1.0, + "content": "section with a possible future research direction that combines the strengths of both approaches to", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 303, + 369, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 369, + 315 + ], + "score": 1.0, + "content": "enable communication in more interesting and complicated tasks.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 108, + 330, + 296, + 342 + ], + "lines": [ + { + "bbox": [ + 105, + 328, + 298, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 298, + 344 + ], + "score": 1.0, + "content": "C MODEL ARCHITECTURE DETAILS", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 354, + 375, + 365 + ], + "lines": [ + { + "bbox": [ + 105, + 352, + 377, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 377, + 369 + ], + "score": 1.0, + "content": "We used TensorFlow and the Sonnet library for all implementation.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "title", + "bbox": [ + 108, + 378, + 206, + 389 + ], + "lines": [ + { + "bbox": [ + 105, + 376, + 208, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 208, + 392 + ], + "score": 1.0, + "content": "C.1 VISUAL MODULE", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 399, + 505, + 465 + ], + "lines": [ + { + "bbox": [ + 106, + 399, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 506, + 411 + ], + "score": 1.0, + "content": "We used an eight-layer convolutional neural network. We used 32 filters with the kernel size 3 for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 222, + 423 + ], + "score": 1.0, + "content": "every layer. The strides were", + "type": "text" + }, + { + "bbox": [ + 223, + 410, + 299, + 421 + ], + "score": 0.82, + "content": "[ 2 , 1 , 1 , 2 , 1 , 2 , 1 , 2 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "for each layer. We used rectified linear unit (ReLU)", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "score": 1.0, + "content": "as the activation function for every layer. Batch normalization was used for every layer. We did not", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 432, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 505, + 444 + ], + "score": 1.0, + "content": "use the bias parameters since we used Batch normalization. For padding, we used the TensorFlow", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "VALID padding option for every layer. The fully connected layer that follows the convolutional", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 454, + 417, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 417, + 466 + ], + "score": 1.0, + "content": "neural network was of 256 dimensions, with ReLU as the activation function.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25.5 + }, + { + "type": "title", + "bbox": [ + 108, + 478, + 222, + 489 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 223, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 223, + 491 + ], + "score": 1.0, + "content": "C.2 LANGUAGE MODULE", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 498, + 505, + 521 + ], + "lines": [ + { + "bbox": [ + 106, + 498, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 505, + 511 + ], + "score": 1.0, + "content": "We used a single layer Gated Recurrent Units (GRU) to implement the language module. The size of", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 510, + 206, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 206, + 523 + ], + "score": 1.0, + "content": "the hidden layer was 64.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "title", + "bbox": [ + 108, + 534, + 215, + 546 + ], + "lines": [ + { + "bbox": [ + 106, + 534, + 217, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 217, + 547 + ], + "score": 1.0, + "content": "C.3 DECISION MODULE", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 555, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "We used a two-layer feedforward neural network. The first layer reduces the dimensionality to 128", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 565, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 505, + 578 + ], + "score": 1.0, + "content": "with ReLU as the activation function, then the second layer generates a scalar value with sigmoid as", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 577, + 201, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 201, + 589 + ], + "score": 1.0, + "content": "the activation function.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "title", + "bbox": [ + 107, + 605, + 418, + 617 + ], + "lines": [ + { + "bbox": [ + 105, + 604, + 420, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 420, + 619 + ], + "score": 1.0, + "content": "D MESSAGE GENERATION ALGORITHM USED IN OUR WORK", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "title", + "bbox": [ + 108, + 630, + 226, + 642 + ], + "lines": [ + { + "bbox": [ + 105, + 629, + 228, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 228, + 645 + ], + "score": 1.0, + "content": "E TRAINING DETAILS", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "Both agents’ model parameters are randomly initialized. The training process consists of rounds", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "where teacher/learner roles are changed, and each round consists of multiple games where learner’s", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "model parameters are updated. In each game, the teacher, given a mini-batch of images, generates", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "corresponding messages. The learner, given a separate mini-batch of images and the messages", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "from the teacher, decides whether it is seeing the same object type as the teacher. Learner’s model", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "parameters are updated to minimize the cross entropy loss. After playing a predefined number of", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 721, + 406, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 406, + 733 + ], + "score": 1.0, + "content": "games, we move on to the next round where two agents change their roles.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 41 + } + ], + "page_idx": 13, + "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, + 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": [ + 107, + 82, + 505, + 137 + ], + "lines": [], + "index": 2, + "bbox_fs": [ + 105, + 83, + 505, + 139 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 143, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "score": 1.0, + "content": "The advantage of obverter approach over RL-based approach is that it is motivated by the theory", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "score": 1.0, + "content": "of mind and more resembles the acquisition/development process of human language. Having a", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "score": 1.0, + "content": "single mechanism for both speaking and listening, and training oneself to be a good listener leads", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 177, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 505, + 188 + ], + "score": 1.0, + "content": "to the emergence of self-consistent, shared language. However, obverter technique requires that", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 507, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 507, + 200 + ], + "score": 1.0, + "content": "all agents perform the same task, which means all agents must have identical model architectures.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 197, + 506, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 506, + 212 + ], + "score": 1.0, + "content": "This is because, during the message generation process, the speaker internally simulates what the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "score": 1.0, + "content": "listener will go though when it hears the message. Therefore we cannot play an asymmetrical game", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 233 + ], + "score": 1.0, + "content": "such as where the speaker sees only one image and generates a message but the listener is given", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 232, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 505, + 243 + ], + "score": 1.0, + "content": "multiple images and must choose one after hearing the message. RL-based approaches do not have", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 399, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 399, + 256 + ], + "score": 1.0, + "content": "this problem since there are separate modules for speaking and listening.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 142, + 507, + 256 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 259, + 505, + 314 + ], + "lines": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "We believe obverter technique could be the better choice for certain tasks regarding human mind", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "emulation. But it certainly is not the tool for every occasion. The RL-based approach is a robust", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 281, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 505, + 293 + ], + "score": 1.0, + "content": "tool for any general task that may or may not involve human-like communication. We conclude this", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 291, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 305 + ], + "score": 1.0, + "content": "section with a possible future research direction that combines the strengths of both approaches to", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 303, + 369, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 369, + 315 + ], + "score": 1.0, + "content": "enable communication in more interesting and complicated tasks.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 258, + 505, + 315 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 330, + 296, + 342 + ], + "lines": [ + { + "bbox": [ + 105, + 328, + 298, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 298, + 344 + ], + "score": 1.0, + "content": "C MODEL ARCHITECTURE DETAILS", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 354, + 375, + 365 + ], + "lines": [ + { + "bbox": [ + 105, + 352, + 377, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 377, + 369 + ], + "score": 1.0, + "content": "We used TensorFlow and the Sonnet library for all implementation.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 352, + 377, + 369 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 378, + 206, + 389 + ], + "lines": [ + { + "bbox": [ + 105, + 376, + 208, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 208, + 392 + ], + "score": 1.0, + "content": "C.1 VISUAL MODULE", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 399, + 505, + 465 + ], + "lines": [ + { + "bbox": [ + 106, + 399, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 506, + 411 + ], + "score": 1.0, + "content": "We used an eight-layer convolutional neural network. We used 32 filters with the kernel size 3 for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 222, + 423 + ], + "score": 1.0, + "content": "every layer. The strides were", + "type": "text" + }, + { + "bbox": [ + 223, + 410, + 299, + 421 + ], + "score": 0.82, + "content": "[ 2 , 1 , 1 , 2 , 1 , 2 , 1 , 2 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "for each layer. We used rectified linear unit (ReLU)", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "score": 1.0, + "content": "as the activation function for every layer. Batch normalization was used for every layer. We did not", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 432, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 505, + 444 + ], + "score": 1.0, + "content": "use the bias parameters since we used Batch normalization. For padding, we used the TensorFlow", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "VALID padding option for every layer. The fully connected layer that follows the convolutional", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 454, + 417, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 417, + 466 + ], + "score": 1.0, + "content": "neural network was of 256 dimensions, with ReLU as the activation function.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 399, + 506, + 466 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 478, + 222, + 489 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 223, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 223, + 491 + ], + "score": 1.0, + "content": "C.2 LANGUAGE MODULE", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 498, + 505, + 521 + ], + "lines": [ + { + "bbox": [ + 106, + 498, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 505, + 511 + ], + "score": 1.0, + "content": "We used a single layer Gated Recurrent Units (GRU) to implement the language module. The size of", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 510, + 206, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 206, + 523 + ], + "score": 1.0, + "content": "the hidden layer was 64.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 106, + 498, + 505, + 523 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 534, + 215, + 546 + ], + "lines": [ + { + "bbox": [ + 106, + 534, + 217, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 217, + 547 + ], + "score": 1.0, + "content": "C.3 DECISION MODULE", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 555, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "We used a two-layer feedforward neural network. The first layer reduces the dimensionality to 128", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 565, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 505, + 578 + ], + "score": 1.0, + "content": "with ReLU as the activation function, then the second layer generates a scalar value with sigmoid as", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 577, + 201, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 201, + 589 + ], + "score": 1.0, + "content": "the activation function.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 554, + 505, + 589 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 605, + 418, + 617 + ], + "lines": [ + { + "bbox": [ + 105, + 604, + 420, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 420, + 619 + ], + "score": 1.0, + "content": "D MESSAGE GENERATION ALGORITHM USED IN OUR WORK", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "title", + "bbox": [ + 108, + 630, + 226, + 642 + ], + "lines": [ + { + "bbox": [ + 105, + 629, + 228, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 228, + 645 + ], + "score": 1.0, + "content": "E TRAINING DETAILS", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "Both agents’ model parameters are randomly initialized. The training process consists of rounds", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "where teacher/learner roles are changed, and each round consists of multiple games where learner’s", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "model parameters are updated. In each game, the teacher, given a mini-batch of images, generates", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "corresponding messages. The learner, given a separate mini-batch of images and the messages", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "from the teacher, decides whether it is seeing the same object type as the teacher. Learner’s model", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "parameters are updated to minimize the cross entropy loss. After playing a predefined number of", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 721, + 406, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 406, + 733 + ], + "score": 1.0, + "content": "games, we move on to the next round where two agents change their roles.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 655, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 97, + 100, + 396, + 269 + ], + "lines": [ + { + "bbox": [ + 97, + 98, + 310, + 114 + ], + "spans": [ + { + "bbox": [ + 97, + 98, + 105, + 114 + ], + "score": 1.0, + "content": "1", + "type": "text" + }, + { + "bbox": [ + 106, + 99, + 143, + 111 + ], + "score": 0.78, + "content": "\\mathbf { h } ^ { ( 0 ) } = \\mathbf { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 98, + 310, + 114 + ], + "score": 1.0, + "content": "//Initialize GRU hidden layer with zeros;", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 97, + 111, + 261, + 125 + ], + "spans": [ + { + "bbox": [ + 97, + 111, + 106, + 125 + ], + "score": 1.0, + "content": "2", + "type": "text" + }, + { + "bbox": [ + 106, + 113, + 135, + 123 + ], + "score": 0.8, + "content": "\\mathbf { s } = \\left[ \\mathbf { \\epsilon } \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 111, + 261, + 125 + ], + "score": 1.0, + "content": "//Initialize the message vector;", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 97, + 122, + 203, + 135 + ], + "spans": [ + { + "bbox": [ + 97, + 122, + 106, + 135 + ], + "score": 1.0, + "content": "3", + "type": "text" + }, + { + "bbox": [ + 106, + 124, + 130, + 133 + ], + "score": 0.84, + "content": "t = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 122, + 203, + 135 + ], + "score": 1.0, + "content": "//Timestep index;", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 96, + 132, + 396, + 149 + ], + "spans": [ + { + "bbox": [ + 96, + 132, + 106, + 149 + ], + "score": 1.0, + "content": "4", + "type": "text" + }, + { + "bbox": [ + 107, + 134, + 168, + 146 + ], + "score": 0.89, + "content": "\\mathbf { V } = \\mathbf { I } \\in \\mathbb { R } ^ { 5 \\times 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 132, + 215, + 149 + ], + "score": 1.0, + "content": "//Each row", + "type": "text" + }, + { + "bbox": [ + 215, + 137, + 286, + 147 + ], + "score": 0.89, + "content": "\\mathbf { v } _ { 0 } , \\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } , \\mathbf { v } _ { 3 } , \\mathbf { v } _ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 132, + 349, + 149 + ], + "score": 1.0, + "content": "corresponds to", + "type": "text" + }, + { + "bbox": [ + 349, + 136, + 392, + 147 + ], + "score": 0.91, + "content": "a , b , c , d , e", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 132, + 396, + 149 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 96, + 146, + 156, + 159 + ], + "spans": [ + { + "bbox": [ + 96, + 146, + 106, + 159 + ], + "score": 1.0, + "content": "5", + "type": "text" + }, + { + "bbox": [ + 106, + 148, + 126, + 156 + ], + "score": 0.67, + "content": "\\mathbf { x } =", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 146, + 156, + 159 + ], + "score": 1.0, + "content": "image;", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 97, + 157, + 209, + 169 + ], + "spans": [ + { + "bbox": [ + 97, + 157, + 105, + 169 + ], + "score": 1.0, + "content": "6", + "type": "text" + }, + { + "bbox": [ + 106, + 157, + 205, + 168 + ], + "score": 0.79, + "content": "\\mathbf { z } = V i s u a l M o d u l e ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 157, + 209, + 169 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 97, + 168, + 250, + 180 + ], + "spans": [ + { + "bbox": [ + 97, + 168, + 132, + 180 + ], + "score": 1.0, + "content": "7 while", + "type": "text" + }, + { + "bbox": [ + 132, + 168, + 173, + 180 + ], + "score": 0.73, + "content": "| \\mathbf { s } | < m a x", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 168, + 250, + 180 + ], + "score": 1.0, + "content": "message length do", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 97, + 175, + 228, + 198 + ], + "spans": [ + { + "bbox": [ + 97, + 184, + 104, + 193 + ], + "score": 1.0, + "content": "8", + "type": "text" + }, + { + "bbox": [ + 121, + 180, + 223, + 194 + ], + "score": 0.86, + "content": "\\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) } = G R U ( \\mathbf { v } _ { i } , \\mathbf { h } ^ { ( t - 1 ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 175, + 228, + 198 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 95, + 193, + 295, + 229 + ], + "spans": [ + { + "bbox": [ + 95, + 199, + 105, + 223 + ], + "score": 1.0, + "content": "9", + "type": "text" + }, + { + "bbox": [ + 121, + 208, + 168, + 223 + ], + "score": 0.87, + "content": "\\mathbf { h } ^ { ( t ) } = \\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 122, + 197, + 176, + 208 + ], + "score": 0.41, + "content": "i = \\mathrm { a r g m a x } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 193, + 252, + 229 + ], + "score": 1.0, + "content": "DecisionModule", + "type": "text" + }, + { + "bbox": [ + 252, + 194, + 289, + 209 + ], + "score": 0.33, + "content": "( [ \\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) } , \\mathbf { z } ] )", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 193, + 295, + 229 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 95, + 221, + 182, + 235 + ], + "spans": [ + { + "bbox": [ + 95, + 225, + 104, + 235 + ], + "score": 1.0, + "content": "11", + "type": "text" + }, + { + "bbox": [ + 121, + 221, + 156, + 235 + ], + "score": 1.0, + "content": "Append", + "type": "text" + }, + { + "bbox": [ + 156, + 224, + 161, + 232 + ], + "score": 0.6, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 221, + 182, + 235 + ], + "score": 1.0, + "content": "to s;", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 94, + 234, + 324, + 250 + ], + "spans": [ + { + "bbox": [ + 94, + 239, + 105, + 249 + ], + "score": 1.0, + "content": "12", + "type": "text" + }, + { + "bbox": [ + 119, + 234, + 205, + 250 + ], + "score": 1.0, + "content": "if DecisionModule", + "type": "text" + }, + { + "bbox": [ + 206, + 234, + 256, + 249 + ], + "score": 0.71, + "content": "( [ \\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) } , \\mathbf { z } ] ) >", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 234, + 324, + 250 + ], + "score": 1.0, + "content": "threshold then", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 95, + 247, + 183, + 260 + ], + "spans": [ + { + "bbox": [ + 95, + 250, + 105, + 259 + ], + "score": 1.0, + "content": "13", + "type": "text" + }, + { + "bbox": [ + 135, + 247, + 183, + 260 + ], + "score": 1.0, + "content": "Terminate;", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 106, + 305, + 506, + 393 + ], + "lines": [ + { + "bbox": [ + 106, + 306, + 506, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 506, + 317 + ], + "score": 1.0, + "content": "We found twenty games per round, with fifty images per mini-batch to work well. We repeat", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 316, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 506, + 329 + ], + "score": 1.0, + "content": "the rounds for 20, 000 times. Further rounds did not improve the results, or even degraded the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 327, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 506, + 340 + ], + "score": 1.0, + "content": "performance. For vocabulary size (i.e. number of unique symbols) and the maximum message length,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 338, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 104, + 338, + 506, + 351 + ], + "score": 1.0, + "content": "we used 5 and 20 respectively, similar to what Batali (1998) used. Note that when generating a", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 349, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 506, + 362 + ], + "score": 1.0, + "content": "message using the obverter technique, the generation process stops as soon as the speaker’s (i.e.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 360, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 169, + 372 + ], + "score": 1.0, + "content": "teacher) output", + "type": "text" + }, + { + "bbox": [ + 169, + 361, + 176, + 372 + ], + "score": 0.84, + "content": "\\hat { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 360, + 506, + 372 + ], + "score": 1.0, + "content": "becomes bigger than some threshold. In our work, we experimented with various", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 371, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 505, + 383 + ], + "score": 1.0, + "content": "values from 0.5 to 0.95, and found higher values to work better than lower values. We used 0.95 for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 381, + 209, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 209, + 395 + ], + "score": 1.0, + "content": "all our final experiments.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 16.5 + }, + { + "type": "title", + "bbox": [ + 106, + 422, + 403, + 435 + ], + "lines": [ + { + "bbox": [ + 104, + 420, + 406, + 439 + ], + "spans": [ + { + "bbox": [ + 104, + 420, + 406, + 439 + ], + "score": 1.0, + "content": "F COMMUNICATION ACCURACY FOR EACH OBJECT TYPE", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "table", + "bbox": [ + 176, + 467, + 433, + 560 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 85, + 349, + 97 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 84, + 350, + 99 + ], + "spans": [ + { + "bbox": [ + 106, + 84, + 350, + 99 + ], + "score": 1.0, + "content": "Algorithm 2: Message generation process used in our work.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 176, + 467, + 433, + 560 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 176, + 467, + 433, + 560 + ], + "spans": [ + { + "bbox": [ + 176, + 467, + 433, + 560 + ], + "score": 0.98, + "html": "
BoxSphereCylinderCapsuleEllipsoid
Blue97.7597.0095.0093.7593.50
Red95.5093.0095.7595.2597.00
White95.2596.2593.5094.5097.00
Gray93.0095.0094.2596.7597.25
Yellow98.0095.0095.5094.2594.25
Green96.0093.5095.0094.5095.25
Cyan97.5094.5097.0094.0094.75
Magenta95.2596.7594.7594.5095.25
", + "type": "table", + "image_path": "2b0aae3d0c28893d77741dbe8bd14fdbc46cd11b53335f3d7760608d62e3e0c7.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 176, + 467, + 433, + 498.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 176, + 498.0, + 433, + 529.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 176, + 529.0, + 433, + 560.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 176, + 568, + 434, + 580 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 176, + 568, + 435, + 581 + ], + "spans": [ + { + "bbox": [ + 176, + 568, + 435, + 581 + ], + "score": 1.0, + "content": "Table 7: Accuracy when each object type is given to the speaker.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 604, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "We conducted a separate test with the agents from round 16, 760 to assess the communication", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 413, + 628 + ], + "score": 1.0, + "content": "accuracy for each object type. The agents were given 1, 600 total object pairs", + "type": "text" + }, + { + "bbox": [ + 414, + 616, + 451, + 627 + ], + "score": 0.9, + "content": "( 4 0 \\times 4 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 617, + 505, + 628 + ], + "score": 1.0, + "content": ". Each object", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 626, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 104, + 626, + 506, + 641 + ], + "score": 1.0, + "content": "pair was tested 10 times, where after 5 times the agents switched speaker/listener roles. The average", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 161, + 651 + ], + "score": 1.0, + "content": "accuracy was", + "type": "text" + }, + { + "bbox": [ + 162, + 638, + 189, + 649 + ], + "score": 0.87, + "content": "9 5 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 637, + 506, + 651 + ], + "score": 1.0, + "content": ", and only 88 out of 1, 600 object pairs were communicated with accuracy lower", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 649, + 144, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 144, + 661 + ], + "score": 1.0, + "content": "than 0.8.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 666, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "Table 7 describes the accuracy when each object type was given to the speaker. We can observe that", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "the accuracy is higher for objects that are described with less overlapping messages. For example,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 303, + 700 + ], + "score": 1.0, + "content": "yellow box is communicated with the accuracy of", + "type": "text" + }, + { + "bbox": [ + 303, + 687, + 322, + 698 + ], + "score": 0.89, + "content": "9 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 687, + 506, + 700 + ], + "score": 1.0, + "content": ", and it is described with aaaaaa, which is not", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 483, + 711 + ], + "score": 1.0, + "content": "used for any other object types. Gray box, on the other hand, is communicated with accuracy", + "type": "text" + }, + { + "bbox": [ + 483, + 699, + 503, + 709 + ], + "score": 0.87, + "content": "9 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 699, + 506, + 711 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "It is described with aaa, which is also used for yellow capsule and green sphere, both of which are", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 721, + 281, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 281, + 732 + ], + "score": 1.0, + "content": "communicated with low accuracies as well.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "index", + "bbox": [ + 97, + 100, + 396, + 269 + ], + "lines": [ + { + "bbox": [ + 97, + 98, + 310, + 114 + ], + "spans": [ + { + "bbox": [ + 97, + 98, + 105, + 114 + ], + "score": 1.0, + "content": "1", + "type": "text" + }, + { + "bbox": [ + 106, + 99, + 143, + 111 + ], + "score": 0.78, + "content": "\\mathbf { h } ^ { ( 0 ) } = \\mathbf { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 98, + 310, + 114 + ], + "score": 1.0, + "content": "//Initialize GRU hidden layer with zeros;", + "type": "text" + } + ], + "index": 1, + "is_list_start_line": true + }, + { + "bbox": [ + 97, + 111, + 261, + 125 + ], + "spans": [ + { + "bbox": [ + 97, + 111, + 106, + 125 + ], + "score": 1.0, + "content": "2", + "type": "text" + }, + { + "bbox": [ + 106, + 113, + 135, + 123 + ], + "score": 0.8, + "content": "\\mathbf { s } = \\left[ \\mathbf { \\epsilon } \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 111, + 261, + 125 + ], + "score": 1.0, + "content": "//Initialize the message vector;", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 97, + 122, + 203, + 135 + ], + "spans": [ + { + "bbox": [ + 97, + 122, + 106, + 135 + ], + "score": 1.0, + "content": "3", + "type": "text" + }, + { + "bbox": [ + 106, + 124, + 130, + 133 + ], + "score": 0.84, + "content": "t = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 122, + 203, + 135 + ], + "score": 1.0, + "content": "//Timestep index;", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 96, + 132, + 396, + 149 + ], + "spans": [ + { + "bbox": [ + 96, + 132, + 106, + 149 + ], + "score": 1.0, + "content": "4", + "type": "text" + }, + { + "bbox": [ + 107, + 134, + 168, + 146 + ], + "score": 0.89, + "content": "\\mathbf { V } = \\mathbf { I } \\in \\mathbb { R } ^ { 5 \\times 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 132, + 215, + 149 + ], + "score": 1.0, + "content": "//Each row", + "type": "text" + }, + { + "bbox": [ + 215, + 137, + 286, + 147 + ], + "score": 0.89, + "content": "\\mathbf { v } _ { 0 } , \\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } , \\mathbf { v } _ { 3 } , \\mathbf { v } _ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 132, + 349, + 149 + ], + "score": 1.0, + "content": "corresponds to", + "type": "text" + }, + { + "bbox": [ + 349, + 136, + 392, + 147 + ], + "score": 0.91, + "content": "a , b , c , d , e", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 132, + 396, + 149 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 96, + 146, + 156, + 159 + ], + "spans": [ + { + "bbox": [ + 96, + 146, + 106, + 159 + ], + "score": 1.0, + "content": "5", + "type": "text" + }, + { + "bbox": [ + 106, + 148, + 126, + 156 + ], + "score": 0.67, + "content": "\\mathbf { x } =", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 146, + 156, + 159 + ], + "score": 1.0, + "content": "image;", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 97, + 157, + 209, + 169 + ], + "spans": [ + { + "bbox": [ + 97, + 157, + 105, + 169 + ], + "score": 1.0, + "content": "6", + "type": "text" + }, + { + "bbox": [ + 106, + 157, + 205, + 168 + ], + "score": 0.79, + "content": "\\mathbf { z } = V i s u a l M o d u l e ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 157, + 209, + 169 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 97, + 168, + 250, + 180 + ], + "spans": [ + { + "bbox": [ + 97, + 168, + 132, + 180 + ], + "score": 1.0, + "content": "7 while", + "type": "text" + }, + { + "bbox": [ + 132, + 168, + 173, + 180 + ], + "score": 0.73, + "content": "| \\mathbf { s } | < m a x", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 168, + 250, + 180 + ], + "score": 1.0, + "content": "message length do", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 97, + 175, + 228, + 198 + ], + "spans": [ + { + "bbox": [ + 97, + 184, + 104, + 193 + ], + "score": 1.0, + "content": "8", + "type": "text" + }, + { + "bbox": [ + 121, + 180, + 223, + 194 + ], + "score": 0.86, + "content": "\\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) } = G R U ( \\mathbf { v } _ { i } , \\mathbf { h } ^ { ( t - 1 ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 175, + 228, + 198 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 95, + 193, + 295, + 229 + ], + "spans": [ + { + "bbox": [ + 95, + 199, + 105, + 223 + ], + "score": 1.0, + "content": "9", + "type": "text" + }, + { + "bbox": [ + 121, + 208, + 168, + 223 + ], + "score": 0.87, + "content": "\\mathbf { h } ^ { ( t ) } = \\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 122, + 197, + 176, + 208 + ], + "score": 0.41, + "content": "i = \\mathrm { a r g m a x } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 193, + 252, + 229 + ], + "score": 1.0, + "content": "DecisionModule", + "type": "text" + }, + { + "bbox": [ + 252, + 194, + 289, + 209 + ], + "score": 0.33, + "content": "( [ \\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) } , \\mathbf { z } ] )", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 193, + 295, + 229 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 95, + 221, + 182, + 235 + ], + "spans": [ + { + "bbox": [ + 95, + 225, + 104, + 235 + ], + "score": 1.0, + "content": "11", + "type": "text" + }, + { + "bbox": [ + 121, + 221, + 156, + 235 + ], + "score": 1.0, + "content": "Append", + "type": "text" + }, + { + "bbox": [ + 156, + 224, + 161, + 232 + ], + "score": 0.6, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 221, + 182, + 235 + ], + "score": 1.0, + "content": "to s;", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 94, + 234, + 324, + 250 + ], + "spans": [ + { + "bbox": [ + 94, + 239, + 105, + 249 + ], + "score": 1.0, + "content": "12", + "type": "text" + }, + { + "bbox": [ + 119, + 234, + 205, + 250 + ], + "score": 1.0, + "content": "if DecisionModule", + "type": "text" + }, + { + "bbox": [ + 206, + 234, + 256, + 249 + ], + "score": 0.71, + "content": "( [ \\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) } , \\mathbf { z } ] ) >", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 234, + 324, + 250 + ], + "score": 1.0, + "content": "threshold then", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 95, + 247, + 183, + 260 + ], + "spans": [ + { + "bbox": [ + 95, + 250, + 105, + 259 + ], + "score": 1.0, + "content": "13", + "type": "text" + }, + { + "bbox": [ + 135, + 247, + 183, + 260 + ], + "score": 1.0, + "content": "Terminate;", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + } + ], + "index": 6.5, + "bbox_fs": [ + 94, + 98, + 396, + 260 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 305, + 506, + 393 + ], + "lines": [ + { + "bbox": [ + 106, + 306, + 506, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 506, + 317 + ], + "score": 1.0, + "content": "We found twenty games per round, with fifty images per mini-batch to work well. We repeat", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 316, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 506, + 329 + ], + "score": 1.0, + "content": "the rounds for 20, 000 times. Further rounds did not improve the results, or even degraded the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 327, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 506, + 340 + ], + "score": 1.0, + "content": "performance. For vocabulary size (i.e. number of unique symbols) and the maximum message length,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 338, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 104, + 338, + 506, + 351 + ], + "score": 1.0, + "content": "we used 5 and 20 respectively, similar to what Batali (1998) used. Note that when generating a", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 349, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 506, + 362 + ], + "score": 1.0, + "content": "message using the obverter technique, the generation process stops as soon as the speaker’s (i.e.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 360, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 169, + 372 + ], + "score": 1.0, + "content": "teacher) output", + "type": "text" + }, + { + "bbox": [ + 169, + 361, + 176, + 372 + ], + "score": 0.84, + "content": "\\hat { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 360, + 506, + 372 + ], + "score": 1.0, + "content": "becomes bigger than some threshold. In our work, we experimented with various", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 371, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 505, + 383 + ], + "score": 1.0, + "content": "values from 0.5 to 0.95, and found higher values to work better than lower values. We used 0.95 for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 381, + 209, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 209, + 395 + ], + "score": 1.0, + "content": "all our final experiments.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 16.5, + "bbox_fs": [ + 104, + 306, + 506, + 395 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 422, + 403, + 435 + ], + "lines": [ + { + "bbox": [ + 104, + 420, + 406, + 439 + ], + "spans": [ + { + "bbox": [ + 104, + 420, + 406, + 439 + ], + "score": 1.0, + "content": "F COMMUNICATION ACCURACY FOR EACH OBJECT TYPE", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "table", + "bbox": [ + 176, + 467, + 433, + 560 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 85, + 349, + 97 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 84, + 350, + 99 + ], + "spans": [ + { + "bbox": [ + 106, + 84, + 350, + 99 + ], + "score": 1.0, + "content": "Algorithm 2: Message generation process used in our work.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 176, + 467, + 433, + 560 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 176, + 467, + 433, + 560 + ], + "spans": [ + { + "bbox": [ + 176, + 467, + 433, + 560 + ], + "score": 0.98, + "html": "
BoxSphereCylinderCapsuleEllipsoid
Blue97.7597.0095.0093.7593.50
Red95.5093.0095.7595.2597.00
White95.2596.2593.5094.5097.00
Gray93.0095.0094.2596.7597.25
Yellow98.0095.0095.5094.2594.25
Green96.0093.5095.0094.5095.25
Cyan97.5094.5097.0094.0094.75
Magenta95.2596.7594.7594.5095.25
", + "type": "table", + "image_path": "2b0aae3d0c28893d77741dbe8bd14fdbc46cd11b53335f3d7760608d62e3e0c7.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 176, + 467, + 433, + 498.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 176, + 498.0, + 433, + 529.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 176, + 529.0, + 433, + 560.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 176, + 568, + 434, + 580 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 176, + 568, + 435, + 581 + ], + "spans": [ + { + "bbox": [ + 176, + 568, + 435, + 581 + ], + "score": 1.0, + "content": "Table 7: Accuracy when each object type is given to the speaker.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 604, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "We conducted a separate test with the agents from round 16, 760 to assess the communication", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 413, + 628 + ], + "score": 1.0, + "content": "accuracy for each object type. The agents were given 1, 600 total object pairs", + "type": "text" + }, + { + "bbox": [ + 414, + 616, + 451, + 627 + ], + "score": 0.9, + "content": "( 4 0 \\times 4 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 617, + 505, + 628 + ], + "score": 1.0, + "content": ". Each object", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 626, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 104, + 626, + 506, + 641 + ], + "score": 1.0, + "content": "pair was tested 10 times, where after 5 times the agents switched speaker/listener roles. The average", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 161, + 651 + ], + "score": 1.0, + "content": "accuracy was", + "type": "text" + }, + { + "bbox": [ + 162, + 638, + 189, + 649 + ], + "score": 0.87, + "content": "9 5 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 637, + 506, + 651 + ], + "score": 1.0, + "content": ", and only 88 out of 1, 600 object pairs were communicated with accuracy lower", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 649, + 144, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 144, + 661 + ], + "score": 1.0, + "content": "than 0.8.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28, + "bbox_fs": [ + 104, + 605, + 506, + 661 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 666, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "Table 7 describes the accuracy when each object type was given to the speaker. We can observe that", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "the accuracy is higher for objects that are described with less overlapping messages. For example,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 303, + 700 + ], + "score": 1.0, + "content": "yellow box is communicated with the accuracy of", + "type": "text" + }, + { + "bbox": [ + 303, + 687, + 322, + 698 + ], + "score": 0.89, + "content": "9 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 687, + 506, + 700 + ], + "score": 1.0, + "content": ", and it is described with aaaaaa, which is not", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 483, + 711 + ], + "score": 1.0, + "content": "used for any other object types. Gray box, on the other hand, is communicated with accuracy", + "type": "text" + }, + { + "bbox": [ + 483, + 699, + 503, + 709 + ], + "score": 0.87, + "content": "9 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 699, + 506, + 711 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "It is described with aaa, which is also used for yellow capsule and green sphere, both of which are", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 721, + 281, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 281, + 732 + ], + "score": 1.0, + "content": "communicated with low accuracies as well.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 665, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 113, + 83, + 505, + 391 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 113, + 83, + 505, + 391 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 83, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 113, + 83, + 505, + 391 + ], + "score": 0.975, + "type": "image", + "image_path": "a3223aef4b5cd4670d5f3f12325fbeb3c69cf08d9078f75c33cd75f24d8f0912.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 113, + 83, + 505, + 185.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 113, + 185.66666666666669, + 505, + 288.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 113, + 288.33333333333337, + 505, + 391.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 401, + 505, + 434 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "Figure 5: Ten communication examples when the speaker is given a blue box. Five examples on the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 411, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 506, + 425 + ], + "score": 1.0, + "content": "left show when the listener is given blue objects. Five examples on the right show when the listener", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 424, + 248, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 248, + 435 + ], + "score": 1.0, + "content": "is given objects of different colors.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 107, + 458, + 352, + 470 + ], + "lines": [ + { + "bbox": [ + 106, + 456, + 353, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 353, + 472 + ], + "score": 1.0, + "content": "G COMMUNICATION EXAMPLE AND ANALYSIS", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 483, + 505, + 560 + ], + "lines": [ + { + "bbox": [ + 105, + 483, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 505, + 496 + ], + "score": 1.0, + "content": "Figure 5 provides ten examples of communication when the speaker is given a blue box and the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 493, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 506, + 507 + ], + "score": 1.0, + "content": "listener is given various object types. The listener’s belief (i.e. score) that it is seeing the same", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 505, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 505, + 517 + ], + "score": 1.0, + "content": "image as the speaker changes each time it consumes a symbol. It is notable that most of the time the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 516, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 529 + ], + "score": 1.0, + "content": "score jumps between 0 and 1, rather than gradually changing in between. This is natural given that", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "score": 1.0, + "content": "messages that differ by only a single character can mean different objects (e.g. blue box and blue", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 538, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 505, + 550 + ], + "score": 1.0, + "content": "cylinder). This phenomenon can also be seen in human language. For example, blue can and blue cat", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 549, + 387, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 387, + 562 + ], + "score": 1.0, + "content": "differ by a single alphabet, but the semantics are completely different.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 566, + 505, + 665 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 506, + 579 + ], + "score": 1.0, + "content": "Object types that are described by similar messages as blue box, such as blue cylinder and magenta", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 576, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 506, + 590 + ], + "score": 1.0, + "content": "box cause marginal confusion to the listener such that prediction scores for both objects are not", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "complete zeros. There are also cases where two completely different objects are described by the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 599, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 612 + ], + "score": 1.0, + "content": "same message as mentioned in Section 3.1. From Table 2 we can see that blue box and cyan cylinder", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 608, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 254, + 624 + ], + "score": 1.0, + "content": "are described by the same message", + "type": "text" + }, + { + "bbox": [ + 254, + 610, + 313, + 622 + ], + "score": 0.37, + "content": "b b b b b b \\{ b , d \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 608, + 505, + 624 + ], + "score": 1.0, + "content": ", although the messages were composed using", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 620, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 505, + 633 + ], + "score": 1.0, + "content": "different rules. Therefore the listener generates high scores for both objects, occasionally losing the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 632, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 506, + 645 + ], + "score": 1.0, + "content": "game when the agents are given this specific object pair (1 out of 40 chance). This can be seen as a", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 642, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 506, + 655 + ], + "score": 1.0, + "content": "side effect coming from the principle of least effort which motivates the agents to win the game most", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 653, + 352, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 352, + 666 + ], + "score": 1.0, + "content": "of the time while minimizing the effort to generate messages.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 107, + 684, + 336, + 696 + ], + "lines": [ + { + "bbox": [ + 105, + 682, + 337, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 337, + 698 + ], + "score": 1.0, + "content": "H VISUALIZATION OF IMAGE EMBEDDINGS", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "Section 3.2 provides strong evidence that the agents are properly recognizing the color and shape of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 719, + 506, + 735 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 506, + 735 + ], + "score": 1.0, + "content": "an object. In this section, we study the visual module of both agents to study how they are processing", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + } + ], + "page_idx": 15, + "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, + 752, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 113, + 83, + 505, + 391 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 113, + 83, + 505, + 391 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 83, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 113, + 83, + 505, + 391 + ], + "score": 0.975, + "type": "image", + "image_path": "a3223aef4b5cd4670d5f3f12325fbeb3c69cf08d9078f75c33cd75f24d8f0912.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 113, + 83, + 505, + 185.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 113, + 185.66666666666669, + 505, + 288.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 113, + 288.33333333333337, + 505, + 391.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 401, + 505, + 434 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "Figure 5: Ten communication examples when the speaker is given a blue box. Five examples on the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 411, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 506, + 425 + ], + "score": 1.0, + "content": "left show when the listener is given blue objects. Five examples on the right show when the listener", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 424, + 248, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 248, + 435 + ], + "score": 1.0, + "content": "is given objects of different colors.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 107, + 458, + 352, + 470 + ], + "lines": [ + { + "bbox": [ + 106, + 456, + 353, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 353, + 472 + ], + "score": 1.0, + "content": "G COMMUNICATION EXAMPLE AND ANALYSIS", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 483, + 505, + 560 + ], + "lines": [ + { + "bbox": [ + 105, + 483, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 505, + 496 + ], + "score": 1.0, + "content": "Figure 5 provides ten examples of communication when the speaker is given a blue box and the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 493, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 506, + 507 + ], + "score": 1.0, + "content": "listener is given various object types. The listener’s belief (i.e. score) that it is seeing the same", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 505, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 505, + 517 + ], + "score": 1.0, + "content": "image as the speaker changes each time it consumes a symbol. It is notable that most of the time the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 516, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 529 + ], + "score": 1.0, + "content": "score jumps between 0 and 1, rather than gradually changing in between. This is natural given that", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "score": 1.0, + "content": "messages that differ by only a single character can mean different objects (e.g. blue box and blue", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 538, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 505, + 550 + ], + "score": 1.0, + "content": "cylinder). This phenomenon can also be seen in human language. For example, blue can and blue cat", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 549, + 387, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 387, + 562 + ], + "score": 1.0, + "content": "differ by a single alphabet, but the semantics are completely different.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 483, + 506, + 562 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 566, + 505, + 665 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 506, + 579 + ], + "score": 1.0, + "content": "Object types that are described by similar messages as blue box, such as blue cylinder and magenta", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 576, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 506, + 590 + ], + "score": 1.0, + "content": "box cause marginal confusion to the listener such that prediction scores for both objects are not", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "complete zeros. There are also cases where two completely different objects are described by the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 599, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 612 + ], + "score": 1.0, + "content": "same message as mentioned in Section 3.1. From Table 2 we can see that blue box and cyan cylinder", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 608, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 254, + 624 + ], + "score": 1.0, + "content": "are described by the same message", + "type": "text" + }, + { + "bbox": [ + 254, + 610, + 313, + 622 + ], + "score": 0.37, + "content": "b b b b b b \\{ b , d \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 608, + 505, + 624 + ], + "score": 1.0, + "content": ", although the messages were composed using", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 620, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 505, + 633 + ], + "score": 1.0, + "content": "different rules. Therefore the listener generates high scores for both objects, occasionally losing the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 632, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 506, + 645 + ], + "score": 1.0, + "content": "game when the agents are given this specific object pair (1 out of 40 chance). This can be seen as a", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 642, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 506, + 655 + ], + "score": 1.0, + "content": "side effect coming from the principle of least effort which motivates the agents to win the game most", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 653, + 352, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 352, + 666 + ], + "score": 1.0, + "content": "of the time while minimizing the effort to generate messages.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 565, + 506, + 666 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 684, + 336, + 696 + ], + "lines": [ + { + "bbox": [ + 105, + 682, + 337, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 337, + 698 + ], + "score": 1.0, + "content": "H VISUALIZATION OF IMAGE EMBEDDINGS", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "Section 3.2 provides strong evidence that the agents are properly recognizing the color and shape of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 719, + 506, + 735 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 506, + 735 + ], + "score": 1.0, + "content": "an object. In this section, we study the visual module of both agents to study how they are processing", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 354, + 504, + 366 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 504, + 366 + ], + "score": 1.0, + "content": "the pixel input. We give each agent 1600 images, 40 per object type, and take their image embeddings", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 364, + 506, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 506, + 377 + ], + "score": 1.0, + "content": "(output of the fully-connected layer in the visual module). We use t-SNE (Maaten & Hinton, 2008) to", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 376, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 505, + 388 + ], + "score": 1.0, + "content": "reduce the dimensionality to 2D, and generate scatter plots as shown by Figure 6. The top row and", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 385, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 399 + ], + "score": 1.0, + "content": "the bottom row are the same scatter plots, but the dots are colored with different labels; the top row", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 397, + 439, + 409 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 439, + 409 + ], + "score": 1.0, + "content": "shows the color of each object, and the bottom row shows the shape of each object.", + "type": "text", + "cross_page": true + } + ], + "index": 9 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 709, + 506, + 735 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 82, + 502, + 297 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 82, + 502, + 297 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 82, + 502, + 297 + ], + "spans": [ + { + "bbox": [ + 108, + 82, + 502, + 297 + ], + "score": 0.973, + "type": "image", + "image_path": "2bfef7d4a774b0f9d6527840974612b010564b9945e307d3641516c2479550bc.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 82, + 502, + 153.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 153.66666666666669, + 502, + 225.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 225.33333333333337, + 502, + 297.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 309, + 504, + 331 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 308, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 505, + 321 + ], + "score": 1.0, + "content": "Figure 6: Scatter plots of the image embedding from the agents’ visual module. T-SNE was used to", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 321, + 221, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 221, + 332 + ], + "score": 1.0, + "content": "reduce the dimension to 2D.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 107, + 353, + 505, + 408 + ], + "lines": [ + { + "bbox": [ + 106, + 354, + 504, + 366 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 504, + 366 + ], + "score": 1.0, + "content": "the pixel input. We give each agent 1600 images, 40 per object type, and take their image embeddings", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 364, + 506, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 506, + 377 + ], + "score": 1.0, + "content": "(output of the fully-connected layer in the visual module). We use t-SNE (Maaten & Hinton, 2008) to", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 376, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 505, + 388 + ], + "score": 1.0, + "content": "reduce the dimensionality to 2D, and generate scatter plots as shown by Figure 6. The top row and", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 385, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 399 + ], + "score": 1.0, + "content": "the bottom row are the same scatter plots, but the dots are colored with different labels; the top row", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 397, + 439, + 409 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 439, + 409 + ], + "score": 1.0, + "content": "shows the color of each object, and the bottom row shows the shape of each object.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 414, + 505, + 524 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 426 + ], + "score": 1.0, + "content": "It is notable that the image embeddings form clear clusters, and all clusters are quite disentangled", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 426, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 505, + 437 + ], + "score": 1.0, + "content": "from one another. This means that the agents have learned to differentiate objects by their color and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 436, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 506, + 449 + ], + "score": 1.0, + "content": "shape, and each color and shape have a specific place in the agents’ mind. It is also impressive that", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "score": 1.0, + "content": "not only both agents learned similar relationships between colors and shapes(Figure 6 (a) and (b)", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 458, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 506, + 472 + ], + "score": 1.0, + "content": "show similar clusters, as do (d) and (e)), but also they learned similar absolute values for colors and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 469, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 506, + 482 + ], + "score": 1.0, + "content": "shapes. Even when we plot image embeddings from both agents together (Figure 6 (c) and (f)) the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "score": 1.0, + "content": "cluster qualities are kept almost identical (with slightly higher number of clusters) to when we plot", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 491, + 506, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 506, + 504 + ], + "score": 1.0, + "content": "them separately. Therefore when one agent thinks of color red, and utters a message to describe it,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 502, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 506, + 515 + ], + "score": 1.0, + "content": "the other agent hears the message and think of something red as well. This is, of course, what we", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 514, + 309, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 309, + 525 + ], + "score": 1.0, + "content": "wanted to achieve by using the obverter technique.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 530, + 505, + 651 + ], + "lines": [ + { + "bbox": [ + 105, + 529, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 505, + 543 + ], + "score": 1.0, + "content": "The fact that a couple of color or shapes are occasionally in the same cluster suggests the agents", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 541, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 505, + 553 + ], + "score": 1.0, + "content": "have not perfectly disentangled colors and shapes. For perfect disentanglement, we believe some", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 551, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 565 + ], + "score": 1.0, + "content": "modifications to the image description game is required, which can be an important topic for future", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 562, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 506, + 577 + ], + "score": 1.0, + "content": "work. However, studying the cluster sheds some light on why the agents generate specific messages", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 573, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 506, + 587 + ], + "score": 1.0, + "content": "for each object type. For example, in Figure 6 (a) and (b), blue, white, cyan and magenta are often", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 584, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 104, + 584, + 506, + 597 + ], + "score": 1.0, + "content": "intertwined or their respective clusters are located nearby, as is the case for red, gray, yellow and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 595, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 104, + 595, + 307, + 609 + ], + "score": 1.0, + "content": "green. This suggests the reason agents use prefix", + "type": "text" + }, + { + "bbox": [ + 307, + 596, + 314, + 606 + ], + "score": 0.64, + "content": "^ b", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 595, + 506, + 609 + ], + "score": 1.0, + "content": "’s to specify shapes for former color group and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 606, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 619 + ], + "score": 1.0, + "content": "prefix a’s to specify shapes for the latter color group. Additionally, in Figure 6 (d) and (e), Box and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 616, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 506, + 631 + ], + "score": 1.0, + "content": "cylinder are often located nearby, and sphere and ellipsoid show similar behavior7. We conjecture", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 628, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 642 + ], + "score": 1.0, + "content": "that this is the reason the messages describing box and cylinder are similarly long, and the messages", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 640, + 338, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 338, + 652 + ], + "score": 1.0, + "content": "describing sphere and ellipsoid tend to be similarly short.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 25 + } + ], + "page_idx": 16, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 115, + 721, + 492, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 720, + 493, + 733 + ], + "spans": [ + { + "bbox": [ + 119, + 720, + 493, + 733 + ], + "score": 1.0, + "content": "7Incidentally, boxes and cylinders are of similar shape, which is also the case for spheres and ellipsoids.", + "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": [ + 108, + 82, + 502, + 297 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 82, + 502, + 297 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 82, + 502, + 297 + ], + "spans": [ + { + "bbox": [ + 108, + 82, + 502, + 297 + ], + "score": 0.973, + "type": "image", + "image_path": "2bfef7d4a774b0f9d6527840974612b010564b9945e307d3641516c2479550bc.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 82, + 502, + 153.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 153.66666666666669, + 502, + 225.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 225.33333333333337, + 502, + 297.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 309, + 504, + 331 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 308, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 505, + 321 + ], + "score": 1.0, + "content": "Figure 6: Scatter plots of the image embedding from the agents’ visual module. T-SNE was used to", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 321, + 221, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 221, + 332 + ], + "score": 1.0, + "content": "reduce the dimension to 2D.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 107, + 353, + 505, + 408 + ], + "lines": [], + "index": 7, + "bbox_fs": [ + 105, + 354, + 506, + 409 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 414, + 505, + 524 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 426 + ], + "score": 1.0, + "content": "It is notable that the image embeddings form clear clusters, and all clusters are quite disentangled", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 426, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 505, + 437 + ], + "score": 1.0, + "content": "from one another. This means that the agents have learned to differentiate objects by their color and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 436, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 506, + 449 + ], + "score": 1.0, + "content": "shape, and each color and shape have a specific place in the agents’ mind. It is also impressive that", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "score": 1.0, + "content": "not only both agents learned similar relationships between colors and shapes(Figure 6 (a) and (b)", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 458, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 506, + 472 + ], + "score": 1.0, + "content": "show similar clusters, as do (d) and (e)), but also they learned similar absolute values for colors and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 469, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 506, + 482 + ], + "score": 1.0, + "content": "shapes. Even when we plot image embeddings from both agents together (Figure 6 (c) and (f)) the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "score": 1.0, + "content": "cluster qualities are kept almost identical (with slightly higher number of clusters) to when we plot", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 491, + 506, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 506, + 504 + ], + "score": 1.0, + "content": "them separately. Therefore when one agent thinks of color red, and utters a message to describe it,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 502, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 506, + 515 + ], + "score": 1.0, + "content": "the other agent hears the message and think of something red as well. This is, of course, what we", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 514, + 309, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 309, + 525 + ], + "score": 1.0, + "content": "wanted to achieve by using the obverter technique.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 415, + 506, + 525 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 530, + 505, + 651 + ], + "lines": [ + { + "bbox": [ + 105, + 529, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 505, + 543 + ], + "score": 1.0, + "content": "The fact that a couple of color or shapes are occasionally in the same cluster suggests the agents", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 541, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 505, + 553 + ], + "score": 1.0, + "content": "have not perfectly disentangled colors and shapes. For perfect disentanglement, we believe some", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 551, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 565 + ], + "score": 1.0, + "content": "modifications to the image description game is required, which can be an important topic for future", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 562, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 506, + 577 + ], + "score": 1.0, + "content": "work. However, studying the cluster sheds some light on why the agents generate specific messages", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 573, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 506, + 587 + ], + "score": 1.0, + "content": "for each object type. For example, in Figure 6 (a) and (b), blue, white, cyan and magenta are often", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 584, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 104, + 584, + 506, + 597 + ], + "score": 1.0, + "content": "intertwined or their respective clusters are located nearby, as is the case for red, gray, yellow and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 595, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 104, + 595, + 307, + 609 + ], + "score": 1.0, + "content": "green. This suggests the reason agents use prefix", + "type": "text" + }, + { + "bbox": [ + 307, + 596, + 314, + 606 + ], + "score": 0.64, + "content": "^ b", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 595, + 506, + 609 + ], + "score": 1.0, + "content": "’s to specify shapes for former color group and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 606, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 619 + ], + "score": 1.0, + "content": "prefix a’s to specify shapes for the latter color group. Additionally, in Figure 6 (d) and (e), Box and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 616, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 506, + 631 + ], + "score": 1.0, + "content": "cylinder are often located nearby, and sphere and ellipsoid show similar behavior7. We conjecture", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 628, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 642 + ], + "score": 1.0, + "content": "that this is the reason the messages describing box and cylinder are similarly long, and the messages", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 640, + 338, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 338, + 652 + ], + "score": 1.0, + "content": "describing sphere and ellipsoid tend to be similarly short.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 25, + "bbox_fs": [ + 104, + 529, + 506, + 652 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 133, + 109, + 475, + 202 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 105, + 82, + 379, + 94 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 104, + 80, + 381, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 381, + 96 + ], + "score": 1.0, + "content": "I ORIGINAL MESSAGES FROM THE ZERO-SHOT TEST", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 133, + 109, + 475, + 202 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 133, + 109, + 475, + 202 + ], + "spans": [ + { + "bbox": [ + 133, + 109, + 475, + 202 + ], + "score": 0.98, + "html": "
BoxSphereCylinderCapsuleEllipsoid
Blue Redeeeeeee{e,ee}eeeeeeeeeeee{e,ed}eeee{e,ed}eee{e,a}
Whiteee{e,a} bbbbbe,eae{e,a}b,baa,c
bb e,eabbb{b,d}bb{b,d}bbb{d.c}
Grayeeeee{e,ec}ee{e,a} b{c,d}e,ab,d
Yellowbb{c.d}eeee{e,a}eeeee{e,a}a,ca,e
Greeneeeeee{e,a}eee{e,a}ee{e,a}
Cyaneeeeeeeeea,a×20eeeeee{e,a}eeeeeee{e,ea}eeeee{e,a}eeeea
Magentabbb{b,d}c,dbb{b,d}bbb{c.a}
", + "type": "table", + "image_path": "4381fb9534e586f1c124e2c94e60600a3fa1ced6341dcf861bac5e549c080214.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 133, + 109, + 475, + 140.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 133, + 140.0, + 475, + 171.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 133, + 171.0, + 475, + 202.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 210, + 504, + 243 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 209, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 223 + ], + "score": 1.0, + "content": "Table 8: Messages most often used by the two agents when speaking about a given object. Shaded", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 221, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 505, + 233 + ], + "score": 1.0, + "content": "cells indicate the objects not seen during the training. Brackets indicate the variation often seen at the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 231, + 163, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 163, + 244 + ], + "score": 1.0, + "content": "last character.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + } + ], + "index": 2 + }, + { + "type": "table", + "bbox": [ + 176, + 296, + 433, + 389 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 105, + 269, + 504, + 281 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 268, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 506, + 282 + ], + "score": 1.0, + "content": "J COMMUNICATION ACCURACY FOR EACH OBJECT TYPE IN ZERO-SHOT TEST", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "table_body", + "bbox": [ + 176, + 296, + 433, + 389 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 176, + 296, + 433, + 389 + ], + "spans": [ + { + "bbox": [ + 176, + 296, + 433, + 389 + ], + "score": 0.981, + "html": "
BoxSphereCylinderCapsuleEllipsoid
Blue96.7595.0094.7595.7596.50
RedWhite94.2590.0094.2596.7591.2595.7596.00
99.0096.0095.7597.25
GrayYellow93.5098.7591.0094.7591.50
94.7595.7592.0091.50
Green95.0095.0095.0095.0094.50
CyanMagentaCyan92.0095.0097.5095.00
95.2596.0097.0096.0095.75
", + "type": "table", + "image_path": "a20c0aaf7f9221bafb1a13cbcfdbb633fec04b47610d7e533553f9733bbff3f3.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 176, + 296, + 433, + 327.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 176, + 327.0, + 433, + 358.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 176, + 358.0, + 433, + 389.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 397, + 504, + 420 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 396, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 505, + 410 + ], + "score": 1.0, + "content": "Table 9: Accuracy when each object type is given to the speaker. Shaded cells indicate the objects", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 407, + 221, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 221, + 421 + ], + "score": 1.0, + "content": "not seen during the training.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 434, + 505, + 489 + ], + "lines": [ + { + "bbox": [ + 105, + 434, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 446 + ], + "score": 1.0, + "content": "In the same manner as Appendix F, we conducted a separate test with the agents from round 19, 980", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 446, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 457 + ], + "score": 1.0, + "content": "to assess the communication accuracy for each object type. The agents were given 1, 600 total object", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 456, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 131, + 469 + ], + "score": 1.0, + "content": "pairs", + "type": "text" + }, + { + "bbox": [ + 131, + 456, + 170, + 467 + ], + "score": 0.86, + "content": "( 4 0 \\times 4 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 456, + 506, + 469 + ], + "score": 1.0, + "content": ". Each object pair was tested 10 times, where after 5 times the agents switched", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 466, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 308, + 481 + ], + "score": 1.0, + "content": "speaker/listener roles. The average accuracy was", + "type": "text" + }, + { + "bbox": [ + 308, + 467, + 340, + 478 + ], + "score": 0.88, + "content": "9 4 . 7 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 466, + 506, + 481 + ], + "score": 1.0, + "content": ", and 103 out of 1, 600 object pairs were", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 478, + 287, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 287, + 490 + ], + "score": 1.0, + "content": "communicated with accuracy lower than 0.8.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 495, + 505, + 528 + ], + "lines": [ + { + "bbox": [ + 105, + 493, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 505, + 508 + ], + "score": 1.0, + "content": "Table 9 describes the accuracy when each object type was given the speaker. Shaded cells indicate", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "score": 1.0, + "content": "objects not seen during the training. Here we can observe the same tendency as the one seen in", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 516, + 496, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 496, + 531 + ], + "score": 1.0, + "content": "Appendix F; the accuracy is higher for objects that are described with less overlapping messages.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "title", + "bbox": [ + 108, + 545, + 449, + 557 + ], + "lines": [ + { + "bbox": [ + 105, + 545, + 451, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 451, + 558 + ], + "score": 1.0, + "content": "K AN EXAMPLE OF USING NEGATION TO PASS A ZERO-SHOT TEST", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 569, + 506, + 624 + ], + "lines": [ + { + "bbox": [ + 105, + 569, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 582 + ], + "score": 1.0, + "content": "Lets assume agent0 is aware of red circle, blue square and green triangle. If agent0 came upon a blue", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 579, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 506, + 593 + ], + "score": 1.0, + "content": "circle for the first time and had to describe it to agent1, the efficient way would be to say blue circle.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 590, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 506, + 604 + ], + "score": 1.0, + "content": "But it could also say blue not square not triangle. If agent1 had a similar knowledge as agent0 did,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 599, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 617 + ], + "score": 1.0, + "content": "then both agents would have a successful communication. However, it is debatable whether saying", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 612, + 357, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 357, + 626 + ], + "score": 1.0, + "content": "blue not square not triangle is as compositional as blue circle.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24 + } + ], + "page_idx": 17, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "score": 1.0, + "content": "18", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 133, + 109, + 475, + 202 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 105, + 82, + 379, + 94 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 104, + 80, + 381, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 381, + 96 + ], + "score": 1.0, + "content": "I ORIGINAL MESSAGES FROM THE ZERO-SHOT TEST", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 133, + 109, + 475, + 202 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 133, + 109, + 475, + 202 + ], + "spans": [ + { + "bbox": [ + 133, + 109, + 475, + 202 + ], + "score": 0.98, + "html": "
BoxSphereCylinderCapsuleEllipsoid
Blue Redeeeeeee{e,ee}eeeeeeeeeeee{e,ed}eeee{e,ed}eee{e,a}
Whiteee{e,a} bbbbbe,eae{e,a}b,baa,c
bb e,eabbb{b,d}bb{b,d}bbb{d.c}
Grayeeeee{e,ec}ee{e,a} b{c,d}e,ab,d
Yellowbb{c.d}eeee{e,a}eeeee{e,a}a,ca,e
Greeneeeeee{e,a}eee{e,a}ee{e,a}
Cyaneeeeeeeeea,a×20eeeeee{e,a}eeeeeee{e,ea}eeeee{e,a}eeeea
Magentabbb{b,d}c,dbb{b,d}bbb{c.a}
", + "type": "table", + "image_path": "4381fb9534e586f1c124e2c94e60600a3fa1ced6341dcf861bac5e549c080214.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 133, + 109, + 475, + 140.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 133, + 140.0, + 475, + 171.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 133, + 171.0, + 475, + 202.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 210, + 504, + 243 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 209, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 223 + ], + "score": 1.0, + "content": "Table 8: Messages most often used by the two agents when speaking about a given object. Shaded", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 221, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 505, + 233 + ], + "score": 1.0, + "content": "cells indicate the objects not seen during the training. Brackets indicate the variation often seen at the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 231, + 163, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 163, + 244 + ], + "score": 1.0, + "content": "last character.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + } + ], + "index": 2 + }, + { + "type": "table", + "bbox": [ + 176, + 296, + 433, + 389 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 105, + 269, + 504, + 281 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 268, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 506, + 282 + ], + "score": 1.0, + "content": "J COMMUNICATION ACCURACY FOR EACH OBJECT TYPE IN ZERO-SHOT TEST", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "table_body", + "bbox": [ + 176, + 296, + 433, + 389 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 176, + 296, + 433, + 389 + ], + "spans": [ + { + "bbox": [ + 176, + 296, + 433, + 389 + ], + "score": 0.981, + "html": "
BoxSphereCylinderCapsuleEllipsoid
Blue96.7595.0094.7595.7596.50
RedWhite94.2590.0094.2596.7591.2595.7596.00
99.0096.0095.7597.25
GrayYellow93.5098.7591.0094.7591.50
94.7595.7592.0091.50
Green95.0095.0095.0095.0094.50
CyanMagentaCyan92.0095.0097.5095.00
95.2596.0097.0096.0095.75
", + "type": "table", + "image_path": "a20c0aaf7f9221bafb1a13cbcfdbb633fec04b47610d7e533553f9733bbff3f3.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 176, + 296, + 433, + 327.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 176, + 327.0, + 433, + 358.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 176, + 358.0, + 433, + 389.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 397, + 504, + 420 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 396, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 505, + 410 + ], + "score": 1.0, + "content": "Table 9: Accuracy when each object type is given to the speaker. Shaded cells indicate the objects", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 407, + 221, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 221, + 421 + ], + "score": 1.0, + "content": "not seen during the training.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 434, + 505, + 489 + ], + "lines": [ + { + "bbox": [ + 105, + 434, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 446 + ], + "score": 1.0, + "content": "In the same manner as Appendix F, we conducted a separate test with the agents from round 19, 980", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 446, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 457 + ], + "score": 1.0, + "content": "to assess the communication accuracy for each object type. The agents were given 1, 600 total object", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 456, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 131, + 469 + ], + "score": 1.0, + "content": "pairs", + "type": "text" + }, + { + "bbox": [ + 131, + 456, + 170, + 467 + ], + "score": 0.86, + "content": "( 4 0 \\times 4 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 456, + 506, + 469 + ], + "score": 1.0, + "content": ". Each object pair was tested 10 times, where after 5 times the agents switched", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 466, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 308, + 481 + ], + "score": 1.0, + "content": "speaker/listener roles. The average accuracy was", + "type": "text" + }, + { + "bbox": [ + 308, + 467, + 340, + 478 + ], + "score": 0.88, + "content": "9 4 . 7 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 466, + 506, + 481 + ], + "score": 1.0, + "content": ", and 103 out of 1, 600 object pairs were", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 478, + 287, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 287, + 490 + ], + "score": 1.0, + "content": "communicated with accuracy lower than 0.8.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 434, + 506, + 490 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 495, + 505, + 528 + ], + "lines": [ + { + "bbox": [ + 105, + 493, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 505, + 508 + ], + "score": 1.0, + "content": "Table 9 describes the accuracy when each object type was given the speaker. Shaded cells indicate", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "score": 1.0, + "content": "objects not seen during the training. Here we can observe the same tendency as the one seen in", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 516, + 496, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 496, + 531 + ], + "score": 1.0, + "content": "Appendix F; the accuracy is higher for objects that are described with less overlapping messages.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 493, + 505, + 531 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 545, + 449, + 557 + ], + "lines": [ + { + "bbox": [ + 105, + 545, + 451, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 451, + 558 + ], + "score": 1.0, + "content": "K AN EXAMPLE OF USING NEGATION TO PASS A ZERO-SHOT TEST", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 569, + 506, + 624 + ], + "lines": [ + { + "bbox": [ + 105, + 569, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 582 + ], + "score": 1.0, + "content": "Lets assume agent0 is aware of red circle, blue square and green triangle. If agent0 came upon a blue", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 579, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 506, + 593 + ], + "score": 1.0, + "content": "circle for the first time and had to describe it to agent1, the efficient way would be to say blue circle.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 590, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 506, + 604 + ], + "score": 1.0, + "content": "But it could also say blue not square not triangle. If agent1 had a similar knowledge as agent0 did,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 599, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 617 + ], + "score": 1.0, + "content": "then both agents would have a successful communication. However, it is debatable whether saying", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 612, + 357, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 357, + 626 + ], + "score": 1.0, + "content": "blue not square not triangle is as compositional as blue circle.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 569, + 506, + 626 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/rknt2Be0-/rknt2Be0-_model.json b/parse/train/rknt2Be0-/rknt2Be0-_model.json new file mode 100644 index 0000000000000000000000000000000000000000..a182e893ab4ae9afaaf4deb7517a4aedb566960b --- /dev/null +++ b/parse/train/rknt2Be0-/rknt2Be0-_model.json @@ -0,0 +1,21102 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 650, + 1303, + 650, + 1303, + 1047, + 398, + 1047 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1174, + 1405, + 1174, + 1405, + 1511, + 298, + 1511 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1528, + 1405, + 1528, + 1405, + 1983, + 298, + 1983 + ], + "score": 0.98 + }, + { + "category_id": 0, + "poly": [ + 300, + 220, + 1266, + 220, + 1266, + 323, + 300, + 323 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 313, + 377, + 669, + 377, + 669, + 500, + 313, + 500 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 735, + 377, + 1350, + 377, + 1350, + 501, + 735, + 501 + ], + "score": 0.949 + }, + { + "category_id": 2, + "poly": [ + 333, + 2006, + 718, + 2006, + 718, + 2033, + 333, + 2033 + ], + "score": 0.914 + }, + { + "category_id": 0, + "poly": [ + 302, + 1106, + 573, + 1106, + 573, + 1140, + 302, + 1140 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 816, + 76, + 816, + 104, + 299, + 104 + ], + "score": 0.881 + }, + { + "category_id": 0, + "poly": [ + 773, + 580, + 927, + 580, + 927, + 612, + 773, + 612 + ], + "score": 0.876 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 856, + 2088, + 856, + 2112, + 840, + 2112 + ], + "score": 0.742 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 216.0, + 1271.0, + 216.0, + 1271.0, + 273.0, + 295.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 273.0, + 1077.0, + 273.0, + 1077.0, + 325.0, + 293.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 2001.0, + 722.0, + 2001.0, + 722.0, + 2037.0, + 330.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1102.0, + 579.0, + 1102.0, + 579.0, + 1148.0, + 294.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 578.0, + 932.0, + 578.0, + 932.0, + 616.0, + 770.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 859.0, + 2087.0, + 859.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 652.0, + 1304.0, + 652.0, + 1304.0, + 684.0, + 396.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 681.0, + 1307.0, + 681.0, + 1307.0, + 716.0, + 395.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 712.0, + 1306.0, + 712.0, + 1306.0, + 747.0, + 394.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 742.0, + 1308.0, + 742.0, + 1308.0, + 775.0, + 393.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 774.0, + 1306.0, + 774.0, + 1306.0, + 804.0, + 394.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 804.0, + 1305.0, + 804.0, + 1305.0, + 836.0, + 394.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 833.0, + 1308.0, + 833.0, + 1308.0, + 868.0, + 394.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 864.0, + 1306.0, + 864.0, + 1306.0, + 899.0, + 393.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 894.0, + 1304.0, + 894.0, + 1304.0, + 928.0, + 394.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 925.0, + 1303.0, + 925.0, + 1303.0, + 957.0, + 395.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 956.0, + 1306.0, + 956.0, + 1306.0, + 988.0, + 395.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 987.0, + 1304.0, + 987.0, + 1304.0, + 1019.0, + 395.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1017.0, + 1203.0, + 1017.0, + 1203.0, + 1049.0, + 394.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1175.0, + 1405.0, + 1175.0, + 1405.0, + 1210.0, + 296.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1208.0, + 1405.0, + 1208.0, + 1405.0, + 1239.0, + 296.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1237.0, + 1407.0, + 1237.0, + 1407.0, + 1270.0, + 293.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1268.0, + 1406.0, + 1268.0, + 1406.0, + 1303.0, + 295.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1297.0, + 1410.0, + 1297.0, + 1410.0, + 1334.0, + 292.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1321.0, + 1409.0, + 1321.0, + 1409.0, + 1366.0, + 293.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1357.0, + 1408.0, + 1357.0, + 1408.0, + 1393.0, + 293.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1386.0, + 1410.0, + 1386.0, + 1410.0, + 1426.0, + 292.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1419.0, + 1403.0, + 1419.0, + 1403.0, + 1454.0, + 295.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1451.0, + 1408.0, + 1451.0, + 1408.0, + 1485.0, + 295.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1480.0, + 743.0, + 1480.0, + 743.0, + 1515.0, + 295.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1528.0, + 1406.0, + 1528.0, + 1406.0, + 1562.0, + 296.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1559.0, + 1405.0, + 1559.0, + 1405.0, + 1593.0, + 295.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1588.0, + 1405.0, + 1588.0, + 1405.0, + 1622.0, + 293.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1618.0, + 1405.0, + 1618.0, + 1405.0, + 1651.0, + 292.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1649.0, + 1408.0, + 1649.0, + 1408.0, + 1684.0, + 293.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1679.0, + 1406.0, + 1679.0, + 1406.0, + 1715.0, + 293.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1710.0, + 1406.0, + 1710.0, + 1406.0, + 1744.0, + 295.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1741.0, + 1407.0, + 1741.0, + 1407.0, + 1775.0, + 293.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1768.0, + 1406.0, + 1768.0, + 1406.0, + 1805.0, + 293.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1803.0, + 1405.0, + 1803.0, + 1405.0, + 1836.0, + 293.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1832.0, + 1405.0, + 1832.0, + 1405.0, + 1864.0, + 293.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1858.0, + 1405.0, + 1858.0, + 1405.0, + 1897.0, + 293.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1893.0, + 1407.0, + 1893.0, + 1407.0, + 1928.0, + 295.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1925.0, + 1403.0, + 1925.0, + 1403.0, + 1956.0, + 296.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1955.0, + 855.0, + 1955.0, + 855.0, + 1988.0, + 293.0, + 1988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 376.0, + 498.0, + 376.0, + 498.0, + 407.0, + 310.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 401.0, + 673.0, + 401.0, + 673.0, + 445.0, + 309.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 437.0, + 527.0, + 437.0, + 527.0, + 468.0, + 313.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 468.0, + 602.0, + 468.0, + 602.0, + 501.0, + 310.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 378.0, + 1211.0, + 378.0, + 1211.0, + 409.0, + 736.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 407.0, + 864.0, + 407.0, + 864.0, + 439.0, + 734.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 436.0, + 884.0, + 436.0, + 884.0, + 468.0, + 733.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 469.0, + 1352.0, + 469.0, + 1352.0, + 503.0, + 736.0, + 503.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 863, + 1404, + 863, + 1404, + 1017, + 298, + 1017 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 300, + 1942, + 1403, + 1942, + 1403, + 2035, + 300, + 2035 + ], + "score": 0.972 + }, + { + "category_id": 3, + "poly": [ + 390, + 1192, + 1323, + 1192, + 1323, + 1463, + 390, + 1463 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 311, + 531, + 1407, + 531, + 1407, + 839, + 311, + 839 + ], + "score": 0.963 + }, + { + "category_id": 3, + "poly": [ + 380, + 1669, + 1320, + 1669, + 1320, + 1787, + 380, + 1787 + ], + "score": 0.962 + }, + { + "category_id": 4, + "poly": [ + 301, + 1809, + 1403, + 1809, + 1403, + 1901, + 301, + 1901 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 297, + 229, + 1404, + 229, + 1404, + 506, + 297, + 506 + ], + "score": 0.924 + }, + { + "category_id": 4, + "poly": [ + 297, + 1498, + 1405, + 1498, + 1405, + 1622, + 297, + 1622 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 299, + 1131, + 914, + 1131, + 914, + 1161, + 299, + 1161 + ], + "score": 0.9 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.898 + }, + { + "category_id": 0, + "poly": [ + 299, + 1060, + 481, + 1060, + 481, + 1096, + 299, + 1096 + ], + "score": 0.895 + }, + { + "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.197 + }, + { + "category_id": 15, + "poly": [ + 544.0, + 1361.0, + 649.0, + 1361.0, + 649.0, + 1403.0, + 544.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 1335.0, + 789.0, + 1335.0, + 789.0, + 1443.0, + 674.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 1362.0, + 1136.0, + 1362.0, + 1136.0, + 1401.0, + 1036.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 1326.0, + 1308.0, + 1326.0, + 1308.0, + 1447.0, + 1157.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1426.0, + 490.0, + 1426.0, + 490.0, + 1465.0, + 392.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 1426.0, + 776.0, + 1426.0, + 776.0, + 1463.0, + 678.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 1424.0, + 979.0, + 1424.0, + 979.0, + 1467.0, + 879.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 1426.0, + 1265.0, + 1426.0, + 1265.0, + 1462.0, + 1167.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 1703.0, + 476.0, + 1703.0, + 476.0, + 1730.0, + 447.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 1703.0, + 895.0, + 1703.0, + 895.0, + 1720.0, + 870.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.75, + 1731.5, + 813.75, + 1731.5, + 813.75, + 1759.5, + 790.75, + 1759.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1806.0, + 1408.0, + 1806.0, + 1408.0, + 1847.0, + 294.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1841.0, + 1405.0, + 1841.0, + 1405.0, + 1877.0, + 292.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1872.0, + 460.0, + 1872.0, + 460.0, + 1903.0, + 297.0, + 1903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1498.0, + 1407.0, + 1498.0, + 1407.0, + 1534.0, + 295.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1530.0, + 1406.0, + 1530.0, + 1406.0, + 1566.0, + 294.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1562.0, + 1405.0, + 1562.0, + 1405.0, + 1595.0, + 295.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1592.0, + 638.0, + 1592.0, + 638.0, + 1625.0, + 295.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1130.0, + 915.0, + 1130.0, + 915.0, + 1164.0, + 295.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1055.0, + 486.0, + 1055.0, + 486.0, + 1105.0, + 291.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 861.0, + 1405.0, + 861.0, + 1405.0, + 899.0, + 293.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 895.0, + 1402.0, + 895.0, + 1402.0, + 928.0, + 296.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 924.0, + 1405.0, + 924.0, + 1405.0, + 961.0, + 294.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 955.0, + 1406.0, + 955.0, + 1406.0, + 992.0, + 294.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 985.0, + 1277.0, + 985.0, + 1277.0, + 1021.0, + 293.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1979.0, + 295.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1972.0, + 1408.0, + 1972.0, + 1408.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1407.0, + 2002.0, + 1407.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 531.0, + 1407.0, + 531.0, + 1407.0, + 566.0, + 311.0, + 566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 561.0, + 711.0, + 561.0, + 711.0, + 596.0, + 336.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 600.0, + 1406.0, + 600.0, + 1406.0, + 637.0, + 312.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 635.0, + 1200.0, + 635.0, + 1200.0, + 667.0, + 337.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 672.0, + 1405.0, + 672.0, + 1405.0, + 709.0, + 310.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 705.0, + 1273.0, + 705.0, + 1273.0, + 737.0, + 337.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 744.0, + 1405.0, + 744.0, + 1405.0, + 782.0, + 311.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 773.0, + 1406.0, + 773.0, + 1406.0, + 816.0, + 335.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 805.0, + 554.0, + 805.0, + 554.0, + 843.0, + 339.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 226.0, + 1405.0, + 226.0, + 1405.0, + 268.0, + 292.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 261.0, + 1406.0, + 261.0, + 1406.0, + 298.0, + 295.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 292.0, + 1406.0, + 292.0, + 1406.0, + 327.0, + 292.0, + 327.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": [ + 292.0, + 352.0, + 1407.0, + 352.0, + 1407.0, + 390.0, + 292.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 381.0, + 1405.0, + 381.0, + 1405.0, + 420.0, + 294.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 411.0, + 1406.0, + 411.0, + 1406.0, + 453.0, + 291.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 442.0, + 1406.0, + 442.0, + 1406.0, + 480.0, + 292.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 476.0, + 1407.0, + 476.0, + 1407.0, + 509.0, + 295.0, + 509.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1383, + 1404, + 1383, + 1404, + 1659, + 298, + 1659 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 428, + 1405, + 428, + 1405, + 675, + 297, + 675 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1404, + 229, + 1404, + 414, + 298, + 414 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1674, + 1405, + 1674, + 1405, + 1950, + 298, + 1950 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 375, + 824, + 1309, + 824, + 1309, + 1176, + 375, + 1176 + ], + "score": 0.969 + }, + { + "category_id": 4, + "poly": [ + 296, + 1205, + 1405, + 1205, + 1405, + 1328, + 296, + 1328 + ], + "score": 0.96 + }, + { + "category_id": 2, + "poly": [ + 336, + 2006, + 693, + 2006, + 693, + 2033, + 336, + 2033 + ], + "score": 0.907 + }, + { + "category_id": 0, + "poly": [ + 299, + 729, + 650, + 729, + 650, + 760, + 299, + 760 + ], + "score": 0.905 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.658 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.334 + }, + { + "category_id": 13, + "poly": [ + 1174, + 461, + 1281, + 461, + 1281, + 490, + 1174, + 490 + ], + "score": 0.89, + "latex": "1 2 8 \\times 1 2 8" + }, + { + "category_id": 13, + "poly": [ + 476, + 1859, + 494, + 1859, + 494, + 1889, + 476, + 1889 + ], + "score": 0.77, + "latex": "\\hat { y }" + }, + { + "category_id": 13, + "poly": [ + 892, + 865, + 940, + 865, + 940, + 885, + 892, + 885 + ], + "score": 0.29, + "latex": "\\mathbf { y } = 0" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 827.0, + 858.0, + 827.0, + 858.0, + 854.0, + 703.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 863.0, + 795.0, + 863.0, + 795.0, + 900.0, + 767.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 861.0, + 891.0, + 861.0, + 891.0, + 889.0, + 874.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 861.0, + 1246.0, + 861.0, + 1246.0, + 889.0, + 941.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 896.0, + 792.0, + 896.0, + 792.0, + 929.0, + 769.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 884.0, + 1311.0, + 884.0, + 1311.0, + 915.0, + 875.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 937.0, + 802.0, + 937.0, + 802.0, + 971.0, + 762.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 975.0, + 603.0, + 975.0, + 603.0, + 1004.0, + 437.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 978.0, + 1143.0, + 978.0, + 1143.0, + 1003.0, + 1011.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 998.0, + 780.0, + 998.0, + 780.0, + 1033.0, + 694.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 999.0, + 858.0, + 999.0, + 858.0, + 1032.0, + 792.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 1077.0, + 1048.0, + 1077.0, + 1048.0, + 1104.0, + 997.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1143.0, + 424.0, + 1143.0, + 424.0, + 1161.0, + 407.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 1142.0, + 490.0, + 1142.0, + 490.0, + 1164.0, + 466.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 1134.0, + 648.0, + 1134.0, + 648.0, + 1167.0, + 610.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1206.0, + 1403.0, + 1206.0, + 1403.0, + 1239.0, + 296.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1236.0, + 1406.0, + 1236.0, + 1406.0, + 1269.0, + 293.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1267.0, + 1405.0, + 1267.0, + 1405.0, + 1301.0, + 293.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1295.0, + 1034.0, + 1295.0, + 1034.0, + 1332.0, + 294.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1998.0, + 695.0, + 1998.0, + 695.0, + 2040.0, + 331.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 729.0, + 653.0, + 729.0, + 653.0, + 762.0, + 295.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 860.0, + 2085.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1385.0, + 1406.0, + 1385.0, + 1406.0, + 1418.0, + 296.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1413.0, + 1406.0, + 1413.0, + 1406.0, + 1451.0, + 293.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1447.0, + 1405.0, + 1447.0, + 1405.0, + 1479.0, + 296.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1475.0, + 1405.0, + 1475.0, + 1405.0, + 1512.0, + 294.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1507.0, + 1406.0, + 1507.0, + 1406.0, + 1543.0, + 294.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1537.0, + 1405.0, + 1537.0, + 1405.0, + 1573.0, + 293.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1565.0, + 1405.0, + 1565.0, + 1405.0, + 1605.0, + 293.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1597.0, + 1406.0, + 1597.0, + 1406.0, + 1633.0, + 293.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1626.0, + 403.0, + 1626.0, + 403.0, + 1664.0, + 294.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 427.0, + 1406.0, + 427.0, + 1406.0, + 465.0, + 294.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 461.0, + 1173.0, + 461.0, + 1173.0, + 495.0, + 295.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 461.0, + 1408.0, + 461.0, + 1408.0, + 495.0, + 1282.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 488.0, + 1408.0, + 488.0, + 1408.0, + 527.0, + 292.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 521.0, + 1405.0, + 521.0, + 1405.0, + 555.0, + 294.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 549.0, + 1406.0, + 549.0, + 1406.0, + 588.0, + 292.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 582.0, + 1406.0, + 582.0, + 1406.0, + 619.0, + 294.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 612.0, + 1405.0, + 612.0, + 1405.0, + 649.0, + 294.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 641.0, + 1056.0, + 641.0, + 1056.0, + 678.0, + 294.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 230.0, + 1408.0, + 230.0, + 1408.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 259.0, + 1405.0, + 259.0, + 1405.0, + 299.0, + 292.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 290.0, + 1408.0, + 290.0, + 1408.0, + 327.0, + 293.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 319.0, + 1404.0, + 319.0, + 1404.0, + 357.0, + 292.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 349.0, + 1404.0, + 349.0, + 1404.0, + 390.0, + 293.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 381.0, + 769.0, + 381.0, + 769.0, + 418.0, + 293.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1676.0, + 1403.0, + 1676.0, + 1403.0, + 1709.0, + 296.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1705.0, + 1406.0, + 1705.0, + 1406.0, + 1742.0, + 295.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1734.0, + 1405.0, + 1734.0, + 1405.0, + 1775.0, + 293.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1765.0, + 1408.0, + 1765.0, + 1408.0, + 1805.0, + 292.0, + 1805.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": [ + 295.0, + 1829.0, + 1403.0, + 1829.0, + 1403.0, + 1862.0, + 295.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1858.0, + 475.0, + 1858.0, + 475.0, + 1894.0, + 295.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 1858.0, + 1405.0, + 1858.0, + 1405.0, + 1894.0, + 495.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1886.0, + 1407.0, + 1886.0, + 1407.0, + 1926.0, + 292.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1918.0, + 625.0, + 1918.0, + 625.0, + 1954.0, + 295.0, + 1954.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 671, + 1405, + 671, + 1405, + 1005, + 298, + 1005 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 288, + 1404, + 288, + 1404, + 654, + 298, + 654 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1532, + 1405, + 1532, + 1405, + 1870, + 298, + 1870 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1021, + 1404, + 1021, + 1404, + 1266, + 298, + 1266 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1282, + 1404, + 1282, + 1404, + 1435, + 299, + 1435 + ], + "score": 0.976 + }, + { + "category_id": 2, + "poly": [ + 324, + 1974, + 1397, + 1974, + 1397, + 2034, + 324, + 2034 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 303, + 1885, + 1401, + 1885, + 1401, + 1947, + 303, + 1947 + ], + "score": 0.933 + }, + { + "category_id": 0, + "poly": [ + 301, + 230, + 644, + 230, + 644, + 261, + 301, + 261 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.876 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 857, + 2089, + 857, + 2111, + 840, + 2111 + ], + "score": 0.782 + }, + { + "category_id": 0, + "poly": [ + 303, + 1477, + 1176, + 1477, + 1176, + 1506, + 303, + 1506 + ], + "score": 0.752 + }, + { + "category_id": 1, + "poly": [ + 303, + 1477, + 1176, + 1477, + 1176, + 1506, + 303, + 1506 + ], + "score": 0.161 + }, + { + "category_id": 13, + "poly": [ + 1033, + 1685, + 1087, + 1685, + 1087, + 1715, + 1033, + 1715 + ], + "score": 0.88, + "latex": "9 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 624, + 1778, + 678, + 1778, + 678, + 1806, + 624, + 1806 + ], + "score": 0.87, + "latex": "2 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 590, + 1808, + 643, + 1808, + 643, + 1836, + 590, + 1836 + ], + "score": 0.86, + "latex": "20 \\%" + }, + { + "category_id": 13, + "poly": [ + 1242, + 1778, + 1296, + 1778, + 1296, + 1807, + 1242, + 1807 + ], + "score": 0.86, + "latex": "30 \\%" + }, + { + "category_id": 13, + "poly": [ + 1212, + 1809, + 1267, + 1809, + 1267, + 1837, + 1212, + 1837 + ], + "score": 0.86, + "latex": "2 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1153, + 915, + 1172, + 915, + 1172, + 945, + 1153, + 945 + ], + "score": 0.85, + "latex": "\\hat { y }" + }, + { + "category_id": 13, + "poly": [ + 710, + 733, + 729, + 733, + 729, + 763, + 710, + 763 + ], + "score": 0.84, + "latex": "\\hat { y }" + }, + { + "category_id": 13, + "poly": [ + 937, + 1314, + 956, + 1314, + 956, + 1345, + 937, + 1345 + ], + "score": 0.84, + "latex": "\\hat { y }" + }, + { + "category_id": 13, + "poly": [ + 353, + 794, + 372, + 794, + 372, + 824, + 353, + 824 + ], + "score": 0.84, + "latex": "\\hat { y }" + }, + { + "category_id": 13, + "poly": [ + 1243, + 1176, + 1262, + 1176, + 1262, + 1206, + 1243, + 1206 + ], + "score": 0.84, + "latex": "\\hat { y }" + }, + { + "category_id": 13, + "poly": [ + 1381, + 735, + 1398, + 735, + 1398, + 763, + 1381, + 763 + ], + "score": 0.82, + "latex": "\\hat { y }" + }, + { + "category_id": 13, + "poly": [ + 817, + 1596, + 864, + 1596, + 864, + 1624, + 817, + 1624 + ], + "score": 0.72, + "latex": "\\times 5" + }, + { + "category_id": 13, + "poly": [ + 1381, + 919, + 1398, + 919, + 1398, + 946, + 1381, + 946 + ], + "score": 0.71, + "latex": "y" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1969.0, + 1384.0, + 1969.0, + 1384.0, + 2009.0, + 329.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 2000.0, + 1403.0, + 2000.0, + 1403.0, + 2039.0, + 329.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 648.0, + 227.0, + 648.0, + 266.0, + 294.0, + 266.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": [ + 838.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1475.0, + 1182.0, + 1475.0, + 1182.0, + 1510.0, + 297.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 670.0, + 1405.0, + 670.0, + 1405.0, + 705.0, + 296.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 699.0, + 1409.0, + 699.0, + 1409.0, + 737.0, + 293.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 728.0, + 709.0, + 728.0, + 709.0, + 769.0, + 293.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 728.0, + 1380.0, + 728.0, + 1380.0, + 769.0, + 730.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 728.0, + 1409.0, + 728.0, + 1409.0, + 769.0, + 1399.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 760.0, + 1406.0, + 760.0, + 1406.0, + 797.0, + 293.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 790.0, + 352.0, + 790.0, + 352.0, + 829.0, + 293.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 790.0, + 1405.0, + 790.0, + 1405.0, + 829.0, + 373.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 821.0, + 1406.0, + 821.0, + 1406.0, + 860.0, + 292.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 850.0, + 1405.0, + 850.0, + 1405.0, + 892.0, + 291.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 884.0, + 1403.0, + 884.0, + 1403.0, + 918.0, + 293.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 912.0, + 1152.0, + 912.0, + 1152.0, + 950.0, + 293.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 912.0, + 1380.0, + 912.0, + 1380.0, + 950.0, + 1173.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 912.0, + 1408.0, + 912.0, + 1408.0, + 950.0, + 1399.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 942.0, + 1406.0, + 942.0, + 1406.0, + 981.0, + 293.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 975.0, + 859.0, + 975.0, + 859.0, + 1008.0, + 295.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 288.0, + 1405.0, + 288.0, + 1405.0, + 325.0, + 293.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 318.0, + 1408.0, + 318.0, + 1408.0, + 356.0, + 293.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 350.0, + 1406.0, + 350.0, + 1406.0, + 384.0, + 294.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 380.0, + 1406.0, + 380.0, + 1406.0, + 414.0, + 294.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 409.0, + 1406.0, + 409.0, + 1406.0, + 444.0, + 292.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 441.0, + 1405.0, + 441.0, + 1405.0, + 475.0, + 294.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 472.0, + 1406.0, + 472.0, + 1406.0, + 506.0, + 294.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 501.0, + 1406.0, + 501.0, + 1406.0, + 534.0, + 293.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 533.0, + 1406.0, + 533.0, + 1406.0, + 567.0, + 296.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 563.0, + 1406.0, + 563.0, + 1406.0, + 597.0, + 294.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 591.0, + 1404.0, + 591.0, + 1404.0, + 629.0, + 293.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 625.0, + 1342.0, + 625.0, + 1342.0, + 659.0, + 296.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1531.0, + 1406.0, + 1531.0, + 1406.0, + 1570.0, + 292.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1567.0, + 1403.0, + 1567.0, + 1403.0, + 1598.0, + 296.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1594.0, + 816.0, + 1594.0, + 816.0, + 1629.0, + 295.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 1594.0, + 1405.0, + 1594.0, + 1405.0, + 1629.0, + 865.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1624.0, + 1405.0, + 1624.0, + 1405.0, + 1657.0, + 293.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1655.0, + 1408.0, + 1655.0, + 1408.0, + 1692.0, + 292.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1685.0, + 1032.0, + 1685.0, + 1032.0, + 1722.0, + 292.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 1685.0, + 1407.0, + 1685.0, + 1407.0, + 1722.0, + 1088.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1716.0, + 1403.0, + 1716.0, + 1403.0, + 1751.0, + 295.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1747.0, + 1405.0, + 1747.0, + 1405.0, + 1782.0, + 295.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1777.0, + 623.0, + 1777.0, + 623.0, + 1812.0, + 295.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 1777.0, + 1241.0, + 1777.0, + 1241.0, + 1812.0, + 679.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 1777.0, + 1403.0, + 1777.0, + 1403.0, + 1812.0, + 1297.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1808.0, + 589.0, + 1808.0, + 589.0, + 1843.0, + 295.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1808.0, + 1211.0, + 1808.0, + 1211.0, + 1843.0, + 644.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 1808.0, + 1403.0, + 1808.0, + 1403.0, + 1843.0, + 1268.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1838.0, + 570.0, + 1838.0, + 570.0, + 1874.0, + 295.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1019.0, + 1405.0, + 1019.0, + 1405.0, + 1057.0, + 293.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1049.0, + 1405.0, + 1049.0, + 1405.0, + 1091.0, + 293.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1084.0, + 1404.0, + 1084.0, + 1404.0, + 1117.0, + 294.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1112.0, + 1404.0, + 1112.0, + 1404.0, + 1148.0, + 293.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1145.0, + 1406.0, + 1145.0, + 1406.0, + 1177.0, + 293.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1172.0, + 1242.0, + 1172.0, + 1242.0, + 1211.0, + 292.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1263.0, + 1172.0, + 1408.0, + 1172.0, + 1408.0, + 1211.0, + 1263.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1205.0, + 1408.0, + 1205.0, + 1408.0, + 1242.0, + 293.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1236.0, + 1325.0, + 1236.0, + 1325.0, + 1269.0, + 296.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1279.0, + 1408.0, + 1279.0, + 1408.0, + 1318.0, + 293.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1310.0, + 936.0, + 1310.0, + 936.0, + 1348.0, + 293.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 1310.0, + 1406.0, + 1310.0, + 1406.0, + 1348.0, + 957.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1343.0, + 1406.0, + 1343.0, + 1406.0, + 1380.0, + 294.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1373.0, + 1408.0, + 1373.0, + 1408.0, + 1410.0, + 294.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1401.0, + 1359.0, + 1401.0, + 1359.0, + 1440.0, + 292.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1884.0, + 1404.0, + 1884.0, + 1404.0, + 1920.0, + 299.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1913.0, + 1404.0, + 1913.0, + 1404.0, + 1951.0, + 295.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1475.0, + 1182.0, + 1475.0, + 1182.0, + 1510.0, + 297.0, + 1510.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 858, + 1404, + 858, + 1404, + 1042, + 298, + 1042 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 567, + 1405, + 567, + 1405, + 843, + 298, + 843 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 229, + 1403, + 229, + 1403, + 446, + 297, + 446 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1819, + 1404, + 1819, + 1404, + 2035, + 297, + 2035 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 326, + 1159, + 1375, + 1159, + 1375, + 1593, + 326, + 1593 + ], + "score": 0.97 + }, + { + "category_id": 4, + "poly": [ + 296, + 1620, + 1406, + 1620, + 1406, + 1773, + 296, + 1773 + ], + "score": 0.96 + }, + { + "category_id": 0, + "poly": [ + 299, + 1086, + 679, + 1086, + 679, + 1115, + 299, + 1115 + ], + "score": 0.906 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 300, + 495, + 557, + 495, + 557, + 530, + 300, + 530 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.717 + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1157.0, + 365.0, + 1157.0, + 365.0, + 1189.0, + 325.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 1184.0, + 581.0, + 1184.0, + 581.0, + 1218.0, + 426.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 1185.0, + 929.0, + 1185.0, + 929.0, + 1215.0, + 666.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1198.0, + 365.0, + 1198.0, + 365.0, + 1232.0, + 327.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 1212.0, + 544.0, + 1212.0, + 544.0, + 1248.0, + 426.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 1215.0, + 846.0, + 1215.0, + 846.0, + 1245.0, + 665.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1243.0, + 366.0, + 1243.0, + 366.0, + 1273.0, + 326.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1288.0, + 549.0, + 1288.0, + 549.0, + 1352.0, + 327.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1304.0, + 642.0, + 1304.0, + 642.0, + 1318.0, + 625.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 1287.0, + 924.0, + 1287.0, + 924.0, + 1293.0, + 918.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 1276.0, + 1031.0, + 1276.0, + 1031.0, + 1304.0, + 951.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 1310.0, + 1031.0, + 1310.0, + 1031.0, + 1343.0, + 847.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1328.0, + 363.0, + 1328.0, + 363.0, + 1355.0, + 326.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1347.0, + 366.0, + 1347.0, + 366.0, + 1363.0, + 350.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 1340.0, + 637.0, + 1340.0, + 637.0, + 1369.0, + 585.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 1340.0, + 895.0, + 1340.0, + 895.0, + 1369.0, + 836.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 1341.0, + 1145.0, + 1341.0, + 1145.0, + 1366.0, + 1090.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1364.0, + 362.0, + 1364.0, + 362.0, + 1390.0, + 329.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 1389.0, + 710.0, + 1389.0, + 710.0, + 1422.0, + 426.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1389.0, + 1075.0, + 1389.0, + 1075.0, + 1422.0, + 793.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 1390.0, + 1312.0, + 1390.0, + 1312.0, + 1421.0, + 1160.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1419.0, + 366.0, + 1419.0, + 366.0, + 1451.0, + 326.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1475.0, + 365.0, + 1475.0, + 365.0, + 1506.0, + 325.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1535.0, + 361.0, + 1535.0, + 361.0, + 1557.0, + 327.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1551.0, + 366.0, + 1551.0, + 366.0, + 1567.0, + 350.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 1546.0, + 635.0, + 1546.0, + 635.0, + 1570.0, + 587.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.0, + 1544.0, + 895.0, + 1544.0, + 895.0, + 1573.0, + 835.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 1544.0, + 1147.0, + 1544.0, + 1147.0, + 1573.0, + 1086.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 1567.0, + 941.0, + 1567.0, + 941.0, + 1593.0, + 787.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 1304.0, + 569.0, + 1304.0, + 569.0, + 1329.0, + 549.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 1309.0, + 557.0, + 1309.0, + 557.0, + 1324.0, + 530.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1619.0, + 1409.0, + 1619.0, + 1409.0, + 1658.0, + 293.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1652.0, + 1404.0, + 1652.0, + 1404.0, + 1685.0, + 294.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1681.0, + 1408.0, + 1681.0, + 1408.0, + 1716.0, + 293.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1704.0, + 1407.0, + 1704.0, + 1407.0, + 1755.0, + 290.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1740.0, + 512.0, + 1740.0, + 512.0, + 1777.0, + 294.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1085.0, + 683.0, + 1085.0, + 683.0, + 1118.0, + 296.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 491.0, + 562.0, + 491.0, + 562.0, + 537.0, + 291.0, + 537.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": [ + 292.0, + 854.0, + 1406.0, + 854.0, + 1406.0, + 897.0, + 292.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 890.0, + 1406.0, + 890.0, + 1406.0, + 923.0, + 293.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 920.0, + 1405.0, + 920.0, + 1405.0, + 955.0, + 294.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 951.0, + 1405.0, + 951.0, + 1405.0, + 983.0, + 294.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 979.0, + 1409.0, + 979.0, + 1409.0, + 1016.0, + 292.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1011.0, + 840.0, + 1011.0, + 840.0, + 1044.0, + 293.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 568.0, + 1405.0, + 568.0, + 1405.0, + 604.0, + 295.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 598.0, + 1408.0, + 598.0, + 1408.0, + 635.0, + 295.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 629.0, + 1407.0, + 629.0, + 1407.0, + 666.0, + 295.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 658.0, + 1406.0, + 658.0, + 1406.0, + 695.0, + 295.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 689.0, + 1407.0, + 689.0, + 1407.0, + 725.0, + 292.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 718.0, + 1409.0, + 718.0, + 1409.0, + 757.0, + 293.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 751.0, + 1407.0, + 751.0, + 1407.0, + 787.0, + 295.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 781.0, + 1408.0, + 781.0, + 1408.0, + 817.0, + 295.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 812.0, + 826.0, + 812.0, + 826.0, + 845.0, + 296.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 227.0, + 1407.0, + 227.0, + 1407.0, + 268.0, + 292.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 261.0, + 1404.0, + 261.0, + 1404.0, + 295.0, + 293.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 289.0, + 1406.0, + 289.0, + 1406.0, + 326.0, + 292.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 320.0, + 1407.0, + 320.0, + 1407.0, + 359.0, + 293.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 349.0, + 1405.0, + 349.0, + 1405.0, + 390.0, + 292.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 383.0, + 1404.0, + 383.0, + 1404.0, + 414.0, + 295.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 412.0, + 1185.0, + 412.0, + 1185.0, + 450.0, + 293.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1820.0, + 1405.0, + 1820.0, + 1405.0, + 1858.0, + 295.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1848.0, + 1404.0, + 1848.0, + 1404.0, + 1886.0, + 294.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1879.0, + 1409.0, + 1879.0, + 1409.0, + 1918.0, + 292.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1912.0, + 1407.0, + 1912.0, + 1407.0, + 1947.0, + 295.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1976.0, + 295.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1974.0, + 1404.0, + 1974.0, + 1404.0, + 2007.0, + 293.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1406.0, + 2002.0, + 1406.0, + 2041.0, + 294.0, + 2041.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 308, + 1404, + 308, + 1404, + 673, + 299, + 673 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 298, + 1261, + 1404, + 1261, + 1404, + 1718, + 298, + 1718 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 689, + 1404, + 689, + 1404, + 1025, + 298, + 1025 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 300, + 1122, + 1402, + 1122, + 1402, + 1245, + 300, + 1245 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1733, + 1404, + 1733, + 1404, + 1979, + 298, + 1979 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 295, + 230, + 1400, + 230, + 1400, + 293, + 295, + 293 + ], + "score": 0.95 + }, + { + "category_id": 2, + "poly": [ + 328, + 2005, + 1159, + 2005, + 1159, + 2033, + 328, + 2033 + ], + "score": 0.91 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.889 + }, + { + "category_id": 0, + "poly": [ + 300, + 1065, + 620, + 1065, + 620, + 1095, + 300, + 1095 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.793 + }, + { + "category_id": 13, + "poly": [ + 640, + 1183, + 694, + 1183, + 694, + 1214, + 640, + 1214 + ], + "score": 0.87, + "latex": "9 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 510, + 2004, + 560, + 2004, + 560, + 2032, + 510, + 2032 + ], + "score": 0.87, + "latex": "2 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 297, + 843, + 473, + 843, + 473, + 873, + 297, + 873 + ], + "score": 0.8, + "latex": "7 , 0 0 0 \\sim 8 , 0 0 0" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 2000.0, + 509.0, + 2000.0, + 509.0, + 2038.0, + 330.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 2000.0, + 1162.0, + 2000.0, + 1162.0, + 2038.0, + 561.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1064.0, + 626.0, + 1064.0, + 626.0, + 1099.0, + 294.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 309.0, + 1403.0, + 309.0, + 1403.0, + 343.0, + 295.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 338.0, + 1406.0, + 338.0, + 1406.0, + 375.0, + 293.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 366.0, + 1409.0, + 366.0, + 1409.0, + 407.0, + 290.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 398.0, + 1408.0, + 398.0, + 1408.0, + 435.0, + 293.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 429.0, + 1408.0, + 429.0, + 1408.0, + 466.0, + 293.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 460.0, + 1408.0, + 460.0, + 1408.0, + 498.0, + 294.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 487.0, + 1406.0, + 487.0, + 1406.0, + 529.0, + 293.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 520.0, + 1408.0, + 520.0, + 1408.0, + 561.0, + 293.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 552.0, + 1404.0, + 552.0, + 1404.0, + 586.0, + 294.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 580.0, + 1405.0, + 580.0, + 1405.0, + 620.0, + 292.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 614.0, + 1404.0, + 614.0, + 1404.0, + 648.0, + 295.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 643.0, + 1215.0, + 643.0, + 1215.0, + 677.0, + 293.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1262.0, + 1405.0, + 1262.0, + 1405.0, + 1297.0, + 294.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1291.0, + 1405.0, + 1291.0, + 1405.0, + 1329.0, + 293.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1322.0, + 1406.0, + 1322.0, + 1406.0, + 1360.0, + 293.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1354.0, + 1404.0, + 1354.0, + 1404.0, + 1389.0, + 294.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1380.0, + 1408.0, + 1380.0, + 1408.0, + 1421.0, + 292.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1410.0, + 1405.0, + 1410.0, + 1405.0, + 1453.0, + 292.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1442.0, + 1408.0, + 1442.0, + 1408.0, + 1481.0, + 293.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1475.0, + 1406.0, + 1475.0, + 1406.0, + 1509.0, + 293.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1506.0, + 1406.0, + 1506.0, + 1406.0, + 1540.0, + 294.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1533.0, + 1406.0, + 1533.0, + 1406.0, + 1574.0, + 291.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1565.0, + 1405.0, + 1565.0, + 1405.0, + 1600.0, + 294.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1594.0, + 1409.0, + 1594.0, + 1409.0, + 1635.0, + 292.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1625.0, + 1408.0, + 1625.0, + 1408.0, + 1662.0, + 293.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1656.0, + 1407.0, + 1656.0, + 1407.0, + 1693.0, + 292.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1687.0, + 1322.0, + 1687.0, + 1322.0, + 1723.0, + 293.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 687.0, + 1408.0, + 687.0, + 1408.0, + 724.0, + 293.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 717.0, + 1406.0, + 717.0, + 1406.0, + 759.0, + 292.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 749.0, + 1405.0, + 749.0, + 1405.0, + 786.0, + 292.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 783.0, + 1405.0, + 783.0, + 1405.0, + 816.0, + 293.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 814.0, + 1404.0, + 814.0, + 1404.0, + 845.0, + 294.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 843.0, + 1405.0, + 843.0, + 1405.0, + 878.0, + 474.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 872.0, + 1404.0, + 872.0, + 1404.0, + 908.0, + 293.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 903.0, + 1405.0, + 903.0, + 1405.0, + 940.0, + 292.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 933.0, + 1405.0, + 933.0, + 1405.0, + 970.0, + 293.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 965.0, + 1408.0, + 965.0, + 1408.0, + 999.0, + 294.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 996.0, + 1331.0, + 996.0, + 1331.0, + 1030.0, + 294.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1121.0, + 1406.0, + 1121.0, + 1406.0, + 1156.0, + 295.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1151.0, + 1406.0, + 1151.0, + 1406.0, + 1189.0, + 293.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1184.0, + 639.0, + 1184.0, + 639.0, + 1220.0, + 293.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 1184.0, + 1406.0, + 1184.0, + 1406.0, + 1220.0, + 695.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1214.0, + 402.0, + 1214.0, + 402.0, + 1249.0, + 293.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1735.0, + 1404.0, + 1735.0, + 1404.0, + 1768.0, + 294.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1763.0, + 1408.0, + 1763.0, + 1408.0, + 1801.0, + 294.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1794.0, + 1404.0, + 1794.0, + 1404.0, + 1831.0, + 293.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1826.0, + 1404.0, + 1826.0, + 1404.0, + 1860.0, + 294.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1854.0, + 1408.0, + 1854.0, + 1408.0, + 1894.0, + 292.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1884.0, + 1406.0, + 1884.0, + 1406.0, + 1925.0, + 292.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1918.0, + 1406.0, + 1918.0, + 1406.0, + 1952.0, + 294.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1949.0, + 1404.0, + 1949.0, + 1404.0, + 1982.0, + 294.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1405.0, + 228.0, + 1405.0, + 268.0, + 294.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 263.0, + 851.0, + 263.0, + 851.0, + 295.0, + 296.0, + 295.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1728, + 1405, + 1728, + 1405, + 2035, + 298, + 2035 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1417, + 1404, + 1417, + 1404, + 1601, + 298, + 1601 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1309, + 1404, + 1309, + 1404, + 1402, + 299, + 1402 + ], + "score": 0.975 + }, + { + "category_id": 5, + "poly": [ + 326, + 826, + 1367, + 826, + 1367, + 1083, + 326, + 1083 + ], + "score": 0.974, + "html": "
:BoxSphereCylinderCapsuleEllipsoid
Bluebbbbbbb{b.d}bb{b,d}bbbbbb{b,d}bbbbb{c,d}bbbb{-,c,d}
Red Whiteaaaa{c,e}aa{c,e}aaa{c,e}a{c,e}c,e
bbbbbbb,dbbbb{b,d}bbb{b.d}bb{-,c,d}
GrayaaaaaaCb,bd
Yellowaaaaaaaaaaaaaaaaaaa{a,e}
Greenaaaa{a,ad}aa{a,ad}aaa{a.ad}a{a,ad}a
Cyanax20bbb{b,d}bbbbbbb{b,d}bbbbbbdbbbbb{b.d}
Magentabbbbbbbb{b.dbbbbb{b,d}bbbbdbbb{-.c,d}
" + }, + { + "category_id": 5, + "poly": [ + 328, + 430, + 1362, + 430, + 1362, + 739, + 328, + 739 + ], + "score": 0.966, + "html": "
Redsphere described byagent 0Redspheredescribedbyagent1
Messagesaeceaeaeaaaeeeeeeeeeaaedacacaaaaaaaaaaaa
aacceeaaaaeeeeeeeeeeaaccdaacaaaaaaaaaaaa
aaccceaaaaaaaaeeeeeeaaabcdadaaaaaaaaaaaa
aeeeeaaaaeeeeeeeeeeeaaeeacaeaaaaaaaaaaaa
aeaceeaeaeeeeeeeeeeeaaccdadaaaaaaacaaaaa
aceacacaaaaaaeeeeeeeaaedaceaaaaaaaaaaaaa
abeeeeaeeeeeeeeeeeeeaaeaccaeaaaaaaaaaaaa
aacceeaeeeeeeeeeeeeeaaceacaacaaaaaaaaaaa
aacceeaeaaeeeeeeeeeeaacdacdaaaaaaaaaaaaa
aeeacacaaaeeccceeeeeaaccdadaaaaacaaaaaaa
" + }, + { + "category_id": 5, + "poly": [ + 343, + 280, + 1341, + 280, + 1341, + 343, + 343, + 343 + ], + "score": 0.944, + "html": "
All objectsdescribed by Agent 0All objectsdescribed byAgent1
Messageddddddddddddddddddddbbbbbbbbbbbbbbbbbbbb
" + }, + { + "category_id": 6, + "poly": [ + 361, + 224, + 1334, + 224, + 1334, + 280, + 361, + 280 + ], + "score": 0.936 + }, + { + "category_id": 6, + "poly": [ + 337, + 769, + 1354, + 769, + 1354, + 827, + 337, + 827 + ], + "score": 0.916 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 105, + 300, + 105 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 300, + 1662, + 663, + 1662, + 663, + 1693, + 300, + 1693 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.756 + }, + { + "category_id": 0, + "poly": [ + 776, + 373, + 917, + 373, + 917, + 399, + 776, + 399 + ], + "score": 0.707 + }, + { + "category_id": 6, + "poly": [ + 338, + 401, + 1350, + 401, + 1350, + 430, + 338, + 430 + ], + "score": 0.462 + }, + { + "category_id": 6, + "poly": [ + 297, + 1106, + 1405, + 1106, + 1405, + 1228, + 297, + 1228 + ], + "score": 0.45 + }, + { + "category_id": 1, + "poly": [ + 338, + 401, + 1350, + 401, + 1350, + 430, + 338, + 430 + ], + "score": 0.134 + }, + { + "category_id": 13, + "poly": [ + 464, + 1881, + 554, + 1881, + 554, + 1913, + 464, + 1913 + ], + "score": 0.85, + "latex": "( 9 7 . 8 \\% )" + }, + { + "category_id": 13, + "poly": [ + 559, + 251, + 627, + 251, + 627, + 279, + 559, + 279 + ], + "score": 0.8, + "latex": "6 6 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 538, + 797, + 608, + 797, + 608, + 825, + 538, + 825 + ], + "score": 0.76, + "latex": "9 8 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 539, + 400, + 608, + 400, + 608, + 428, + 539, + 428 + ], + "score": 0.73, + "latex": "9 3 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 857, + 855, + 913, + 855, + 913, + 885, + 857, + 885 + ], + "score": 0.37, + "latex": "\\overline { { \\{ \\mathbf { b } , \\mathbf { d } \\} } }" + }, + { + "category_id": 13, + "poly": [ + 471, + 1023, + 532, + 1023, + 532, + 1049, + 471, + 1049 + ], + "score": 0.31, + "latex": "\\mathbf { a } \\times 2 0" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 223.0, + 903.0, + 223.0, + 903.0, + 254.0, + 792.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 246.0, + 558.0, + 246.0, + 558.0, + 287.0, + 360.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 246.0, + 1334.0, + 246.0, + 1334.0, + 287.0, + 628.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 767.0, + 925.0, + 767.0, + 925.0, + 799.0, + 769.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 792.0, + 537.0, + 792.0, + 537.0, + 834.0, + 342.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 792.0, + 1353.0, + 792.0, + 1353.0, + 834.0, + 609.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1659.0, + 669.0, + 1659.0, + 669.0, + 1697.0, + 294.0, + 1697.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": [ + 775.0, + 370.0, + 919.0, + 370.0, + 919.0, + 405.0, + 775.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 395.0, + 538.0, + 395.0, + 538.0, + 437.0, + 342.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 395.0, + 1353.0, + 395.0, + 1353.0, + 437.0, + 609.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1102.0, + 1407.0, + 1102.0, + 1407.0, + 1140.0, + 292.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1133.0, + 1407.0, + 1133.0, + 1407.0, + 1170.0, + 292.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1165.0, + 1406.0, + 1165.0, + 1406.0, + 1202.0, + 292.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1197.0, + 1075.0, + 1197.0, + 1075.0, + 1228.0, + 294.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1728.0, + 1406.0, + 1728.0, + 1406.0, + 1763.0, + 293.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1759.0, + 1405.0, + 1759.0, + 1405.0, + 1795.0, + 295.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1791.0, + 1403.0, + 1791.0, + 1403.0, + 1823.0, + 295.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1818.0, + 1405.0, + 1818.0, + 1405.0, + 1856.0, + 293.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1851.0, + 1407.0, + 1851.0, + 1407.0, + 1887.0, + 295.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1880.0, + 463.0, + 1880.0, + 463.0, + 1916.0, + 293.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 1880.0, + 1406.0, + 1880.0, + 1406.0, + 1916.0, + 555.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1911.0, + 1407.0, + 1911.0, + 1407.0, + 1946.0, + 293.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1943.0, + 1408.0, + 1943.0, + 1408.0, + 1978.0, + 295.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1973.0, + 1407.0, + 1973.0, + 1407.0, + 2009.0, + 295.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2001.0, + 1408.0, + 2001.0, + 1408.0, + 2039.0, + 293.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1415.0, + 1405.0, + 1415.0, + 1405.0, + 1453.0, + 293.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1446.0, + 1406.0, + 1446.0, + 1406.0, + 1482.0, + 293.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1479.0, + 1406.0, + 1479.0, + 1406.0, + 1513.0, + 293.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1510.0, + 1402.0, + 1510.0, + 1402.0, + 1542.0, + 296.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1539.0, + 1404.0, + 1539.0, + 1404.0, + 1575.0, + 294.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1570.0, + 584.0, + 1570.0, + 584.0, + 1604.0, + 293.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1308.0, + 1405.0, + 1308.0, + 1405.0, + 1346.0, + 294.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1337.0, + 1409.0, + 1337.0, + 1409.0, + 1377.0, + 293.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1371.0, + 939.0, + 1371.0, + 939.0, + 1405.0, + 294.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 395.0, + 538.0, + 395.0, + 538.0, + 437.0, + 342.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 395.0, + 1353.0, + 395.0, + 1353.0, + 437.0, + 609.0, + 437.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1637, + 1406, + 1637, + 1406, + 2034, + 297, + 2034 + ], + "score": 0.983 + }, + { + "category_id": 5, + "poly": [ + 370, + 223, + 1323, + 223, + 1323, + 482, + 370, + 482 + ], + "score": 0.982, + "html": "
BoxSphereCylinderCapsuleEllipsoid
Blue Redbbbbb bb{b,d} aaaa {c,e}bb{b,d} aa {c,e}bbbb bb{b.d} aaa {c,e}bbb bb{c,d} a{c,e}bb bb{-.c,d} {c,e}
Whitebbbbbb{b.d}bbbb{b.d}bbb {b.d}bb{-c,d}
Grayaaaa aaaaa aaaaaa aaaa aacaa{b,bd}
Yellow
aaaa aaaaaaaaaaaaaaa{ae}
Greenaaaa {a,ad}aa {a,ad}aaa {a,ad}a{a,ad}a
Cyana×20bbb{b,d}bbbb bbb{b,d}bbb bbbdbb bbb{b.d}
Magentabbbbbbbb{b,d}bbbbb{b.d}bbb bdbbb{-c,d}
" + }, + { + "category_id": 5, + "poly": [ + 420, + 534, + 1270, + 534, + 1270, + 926, + 420, + 926 + ], + "score": 0.981, + "html": "
Rule
BlueEnd with bbb or bbdEnd with c or eEnd with b or dEnd with aaaEnd with aaEnd with a or adEnd with bbbb or bbbdEnd with bb or bd
RedWhite
GrayGrayYellowGreenCyanMagenta
BoxSphereCylinderCapsuleEllipsoidStart with bbbbb for color group O, start with aaaa for color group 1Start with aa for color group 1Start with bbbb for color group O, start with aaa for color group 1Start with bbb for color group O,start with a for color group 1Start with bb for color group 0
" + }, + { + "category_id": 5, + "poly": [ + 308, + 1084, + 1384, + 1084, + 1384, + 1345, + 308, + 1345 + ], + "score": 0.979, + "html": "
BoxSphereCylinderCapsuleEllipsoid
BlueRedWhiteGrayYellowGreeneeeeee e{e,ee}eeeeeeeeeee e{e,ed}eeeee eeee{e,a}eee e{e,ed}eee eeee{b,ba}bb {b.d}eee{e,a}ee eeee{a,c}bbb {d.c}ee eee{b.d}
eeeeee eeee{e.a}bbbbbeeeeeeeeeebbbb bb{c,d}eeeeee {e,a}eeee eeee{e,ea}eeee
bb
eeee eee{-,a}eeeee eee{e,a}eee eee{e,a}
bbbe{e,ec}eeee {e,a}eeee ee{e,a}bb{c.d
bbb bb{c,d}eeeee {e,a}eeeee ee{e,ea}bbbb{b.d}bb bb{a.c}eee{e,a}bbb bb{a,e}
eee{e,a}eee ee{e,a}bb bbee {e,a}ee eeabbb bb{c.a}
CyanMagentaeeeeee eeeabbbb b{b.d}
" + }, + { + "category_id": 1, + "poly": [ + 301, + 1558, + 1399, + 1558, + 1399, + 1622, + 301, + 1622 + ], + "score": 0.948 + }, + { + "category_id": 6, + "poly": [ + 297, + 950, + 1403, + 950, + 1403, + 1044, + 297, + 1044 + ], + "score": 0.92 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 105, + 300, + 105 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.8 + }, + { + "category_id": 6, + "poly": [ + 297, + 1367, + 1407, + 1367, + 1407, + 1490, + 297, + 1490 + ], + "score": 0.785 + }, + { + "category_id": 6, + "poly": [ + 434, + 504, + 1185, + 504, + 1185, + 532, + 434, + 532 + ], + "score": 0.689 + }, + { + "category_id": 1, + "poly": [ + 297, + 1367, + 1407, + 1367, + 1407, + 1490, + 297, + 1490 + ], + "score": 0.094 + }, + { + "category_id": 13, + "poly": [ + 471, + 1971, + 490, + 1971, + 490, + 2001, + 471, + 2001 + ], + "score": 0.68, + "latex": "\\bar { \\mathsf b }" + }, + { + "category_id": 13, + "poly": [ + 936, + 1849, + 955, + 1849, + 955, + 1878, + 936, + 1878 + ], + "score": 0.54, + "latex": "\\bar { \\mathsf b }" + }, + { + "category_id": 13, + "poly": [ + 1383, + 1434, + 1399, + 1434, + 1399, + 1455, + 1383, + 1455 + ], + "score": 0.51, + "latex": "e" + }, + { + "category_id": 13, + "poly": [ + 515, + 422, + 576, + 422, + 576, + 447, + 515, + 447 + ], + "score": 0.41, + "latex": "\\mathbf { a } \\times 2 0" + }, + { + "category_id": 13, + "poly": [ + 831, + 449, + 974, + 449, + 974, + 478, + 831, + 478 + ], + "score": 0.37, + "latex": "{ b b b b \\ b \\{ b , \\mathbf { d } \\} }" + }, + { + "category_id": 13, + "poly": [ + 998, + 872, + 1014, + 872, + 1014, + 892, + 998, + 892 + ], + "score": 0.34, + "latex": "a" + }, + { + "category_id": 13, + "poly": [ + 699, + 449, + 773, + 449, + 773, + 477, + 699, + 477 + ], + "score": 0.29, + "latex": "{ \\bf b } \\{ { \\bf b } , { \\bf d } \\}" + }, + { + "category_id": 13, + "poly": [ + 973, + 1430, + 991, + 1430, + 991, + 1455, + 973, + 1455 + ], + "score": 0.27, + "latex": "b" + }, + { + "category_id": 13, + "poly": [ + 877, + 392, + 945, + 392, + 945, + 422, + 877, + 422 + ], + "score": 0.26, + "latex": "\\{ { \\mathrm { a } } , { \\mathrm { a d } } \\}" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 947.0, + 1408.0, + 947.0, + 1408.0, + 986.0, + 292.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 981.0, + 1405.0, + 981.0, + 1405.0, + 1015.0, + 295.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1012.0, + 1340.0, + 1012.0, + 1340.0, + 1046.0, + 295.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 71.0, + 817.0, + 71.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 2085.0, + 859.0, + 2085.0, + 859.0, + 2116.0, + 836.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1365.0, + 1404.0, + 1365.0, + 1404.0, + 1402.0, + 292.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1397.0, + 1407.0, + 1397.0, + 1407.0, + 1433.0, + 295.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1426.0, + 972.0, + 1426.0, + 972.0, + 1464.0, + 292.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 1426.0, + 1382.0, + 1426.0, + 1382.0, + 1464.0, + 992.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1426.0, + 1410.0, + 1426.0, + 1410.0, + 1464.0, + 1400.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1460.0, + 621.0, + 1460.0, + 621.0, + 1489.0, + 297.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 499.0, + 1191.0, + 499.0, + 1191.0, + 539.0, + 436.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1639.0, + 1404.0, + 1639.0, + 1404.0, + 1671.0, + 296.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1665.0, + 1406.0, + 1665.0, + 1406.0, + 1705.0, + 294.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1698.0, + 1406.0, + 1698.0, + 1406.0, + 1735.0, + 295.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1728.0, + 1407.0, + 1728.0, + 1407.0, + 1762.0, + 294.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1759.0, + 1409.0, + 1759.0, + 1409.0, + 1794.0, + 292.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1789.0, + 1408.0, + 1789.0, + 1408.0, + 1825.0, + 295.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1817.0, + 1406.0, + 1817.0, + 1406.0, + 1855.0, + 292.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1848.0, + 935.0, + 1848.0, + 935.0, + 1886.0, + 292.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 1848.0, + 1409.0, + 1848.0, + 1409.0, + 1886.0, + 956.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1881.0, + 1406.0, + 1881.0, + 1406.0, + 1917.0, + 295.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1913.0, + 1404.0, + 1913.0, + 1404.0, + 1946.0, + 295.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1943.0, + 1408.0, + 1943.0, + 1408.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1971.0, + 470.0, + 1971.0, + 470.0, + 2006.0, + 292.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2006.0, + 491.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2001.0, + 1034.0, + 2001.0, + 1034.0, + 2041.0, + 294.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1557.0, + 1404.0, + 1557.0, + 1404.0, + 1595.0, + 295.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1590.0, + 1021.0, + 1590.0, + 1021.0, + 1625.0, + 296.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1365.0, + 1404.0, + 1365.0, + 1404.0, + 1402.0, + 292.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1397.0, + 1407.0, + 1397.0, + 1407.0, + 1433.0, + 295.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1426.0, + 972.0, + 1426.0, + 972.0, + 1464.0, + 292.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 1426.0, + 1382.0, + 1426.0, + 1382.0, + 1464.0, + 992.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1426.0, + 1410.0, + 1426.0, + 1410.0, + 1464.0, + 1400.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1460.0, + 621.0, + 1460.0, + 621.0, + 1489.0, + 297.0, + 1489.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 992, + 1405, + 992, + 1405, + 1388, + 298, + 1388 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 299, + 517, + 1404, + 517, + 1404, + 701, + 299, + 701 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 823, + 1404, + 823, + 1404, + 977, + 299, + 977 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1404, + 1403, + 1404, + 1403, + 1558, + 299, + 1558 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1652, + 1403, + 1652, + 1403, + 1775, + 299, + 1775 + ], + "score": 0.975 + }, + { + "category_id": 5, + "poly": [ + 458, + 223, + 1234, + 223, + 1234, + 400, + 458, + 400 + ], + "score": 0.972, + "html": "
Given to speakerGiven to listenerGiven to both
BlueBox0.970.971.00
Red Sphere0.920.910.80
White Cylinder0.950.950.90
Gray Capsule0.910.911.00
Yellow Ellipsoid0.910.901.00
" + }, + { + "category_id": 1, + "poly": [ + 303, + 1880, + 1403, + 1880, + 1403, + 1973, + 303, + 1973 + ], + "score": 0.927 + }, + { + "category_id": 0, + "poly": [ + 300, + 750, + 529, + 750, + 529, + 787, + 300, + 787 + ], + "score": 0.898 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 815, + 75, + 815, + 105, + 298, + 105 + ], + "score": 0.891 + }, + { + "category_id": 1, + "poly": [ + 297, + 2002, + 1240, + 2002, + 1240, + 2034, + 297, + 2034 + ], + "score": 0.887 + }, + { + "category_id": 0, + "poly": [ + 301, + 1600, + 557, + 1600, + 557, + 1627, + 301, + 1627 + ], + "score": 0.873 + }, + { + "category_id": 0, + "poly": [ + 300, + 1825, + 488, + 1825, + 488, + 1859, + 300, + 1859 + ], + "score": 0.857 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2110, + 841, + 2110 + ], + "score": 0.761 + }, + { + "category_id": 6, + "poly": [ + 314, + 421, + 1378, + 421, + 1378, + 454, + 314, + 454 + ], + "score": 0.478 + }, + { + "category_id": 1, + "poly": [ + 314, + 421, + 1378, + 421, + 1378, + 454, + 314, + 454 + ], + "score": 0.277 + }, + { + "category_id": 15, + "poly": [ + 291.0, + 747.0, + 535.0, + 747.0, + 535.0, + 794.0, + 291.0, + 794.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": [ + 299.0, + 1601.0, + 558.0, + 1601.0, + 558.0, + 1629.0, + 299.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1825.0, + 490.0, + 1825.0, + 490.0, + 1862.0, + 296.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 415.0, + 1382.0, + 415.0, + 1382.0, + 461.0, + 314.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 988.0, + 1406.0, + 988.0, + 1406.0, + 1031.0, + 293.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1022.0, + 1405.0, + 1022.0, + 1405.0, + 1058.0, + 293.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1053.0, + 1403.0, + 1053.0, + 1403.0, + 1088.0, + 295.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1082.0, + 1406.0, + 1082.0, + 1406.0, + 1122.0, + 293.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1115.0, + 1407.0, + 1115.0, + 1407.0, + 1151.0, + 293.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1144.0, + 1407.0, + 1144.0, + 1407.0, + 1182.0, + 292.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1176.0, + 1406.0, + 1176.0, + 1406.0, + 1212.0, + 293.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1206.0, + 1406.0, + 1206.0, + 1406.0, + 1242.0, + 293.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1235.0, + 1406.0, + 1235.0, + 1406.0, + 1271.0, + 295.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1262.0, + 1409.0, + 1262.0, + 1409.0, + 1306.0, + 292.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1297.0, + 1405.0, + 1297.0, + 1405.0, + 1333.0, + 295.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1326.0, + 1406.0, + 1326.0, + 1406.0, + 1366.0, + 293.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1355.0, + 940.0, + 1355.0, + 940.0, + 1395.0, + 293.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 513.0, + 1405.0, + 513.0, + 1405.0, + 556.0, + 293.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 548.0, + 1404.0, + 548.0, + 1404.0, + 584.0, + 295.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 579.0, + 1408.0, + 579.0, + 1408.0, + 614.0, + 294.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 608.0, + 1405.0, + 608.0, + 1405.0, + 645.0, + 293.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 639.0, + 1406.0, + 639.0, + 1406.0, + 675.0, + 295.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 670.0, + 991.0, + 670.0, + 991.0, + 704.0, + 293.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 822.0, + 1406.0, + 822.0, + 1406.0, + 858.0, + 293.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 855.0, + 1405.0, + 855.0, + 1405.0, + 888.0, + 295.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 884.0, + 1408.0, + 884.0, + 1408.0, + 921.0, + 294.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 916.0, + 1405.0, + 916.0, + 1405.0, + 949.0, + 297.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 944.0, + 683.0, + 944.0, + 683.0, + 983.0, + 294.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1403.0, + 1405.0, + 1403.0, + 1405.0, + 1440.0, + 295.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1436.0, + 1404.0, + 1436.0, + 1404.0, + 1469.0, + 297.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1465.0, + 1407.0, + 1465.0, + 1407.0, + 1501.0, + 292.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1496.0, + 1405.0, + 1496.0, + 1405.0, + 1533.0, + 294.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1526.0, + 1221.0, + 1526.0, + 1221.0, + 1562.0, + 293.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1651.0, + 1403.0, + 1651.0, + 1403.0, + 1686.0, + 294.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1683.0, + 1405.0, + 1683.0, + 1405.0, + 1716.0, + 295.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1711.0, + 1405.0, + 1711.0, + 1405.0, + 1751.0, + 292.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1742.0, + 803.0, + 1742.0, + 803.0, + 1779.0, + 294.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1881.0, + 1406.0, + 1881.0, + 1406.0, + 1914.0, + 298.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1911.0, + 1403.0, + 1911.0, + 1403.0, + 1945.0, + 324.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1942.0, + 942.0, + 1942.0, + 942.0, + 1976.0, + 325.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1999.0, + 1245.0, + 1999.0, + 1245.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 415.0, + 1382.0, + 415.0, + 1382.0, + 461.0, + 314.0, + 461.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 105, + 300, + 105 + ], + "score": 0.886 + }, + { + "category_id": 1, + "poly": [ + 297, + 718, + 1070, + 718, + 1070, + 752, + 297, + 752 + ], + "score": 0.863 + }, + { + "category_id": 1, + "poly": [ + 294, + 229, + 1402, + 229, + 1402, + 293, + 294, + 293 + ], + "score": 0.861 + }, + { + "category_id": 1, + "poly": [ + 296, + 516, + 1400, + 516, + 1400, + 580, + 296, + 580 + ], + "score": 0.857 + }, + { + "category_id": 1, + "poly": [ + 295, + 315, + 1401, + 315, + 1401, + 378, + 295, + 378 + ], + "score": 0.845 + }, + { + "category_id": 1, + "poly": [ + 298, + 399, + 1405, + 399, + 1405, + 494, + 298, + 494 + ], + "score": 0.828 + }, + { + "category_id": 1, + "poly": [ + 296, + 772, + 1400, + 772, + 1400, + 837, + 296, + 837 + ], + "score": 0.826 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2113, + 836, + 2113 + ], + "score": 0.814 + }, + { + "category_id": 1, + "poly": [ + 297, + 1513, + 1403, + 1513, + 1403, + 1578, + 297, + 1578 + ], + "score": 0.772 + }, + { + "category_id": 1, + "poly": [ + 297, + 1597, + 1405, + 1597, + 1405, + 1662, + 297, + 1662 + ], + "score": 0.77 + }, + { + "category_id": 1, + "poly": [ + 297, + 1426, + 1403, + 1426, + 1403, + 1492, + 297, + 1492 + ], + "score": 0.761 + }, + { + "category_id": 1, + "poly": [ + 299, + 858, + 1313, + 858, + 1313, + 894, + 299, + 894 + ], + "score": 0.754 + }, + { + "category_id": 1, + "poly": [ + 292, + 914, + 1401, + 914, + 1401, + 978, + 292, + 978 + ], + "score": 0.751 + }, + { + "category_id": 1, + "poly": [ + 300, + 1341, + 1401, + 1341, + 1401, + 1406, + 300, + 1406 + ], + "score": 0.743 + }, + { + "category_id": 1, + "poly": [ + 298, + 601, + 1406, + 601, + 1406, + 696, + 298, + 696 + ], + "score": 0.738 + }, + { + "category_id": 1, + "poly": [ + 289, + 1684, + 1403, + 1684, + 1403, + 1749, + 289, + 1749 + ], + "score": 0.733 + }, + { + "category_id": 1, + "poly": [ + 295, + 1972, + 1399, + 1972, + 1399, + 2034, + 295, + 2034 + ], + "score": 0.714 + }, + { + "category_id": 1, + "poly": [ + 290, + 999, + 1404, + 999, + 1404, + 1064, + 290, + 1064 + ], + "score": 0.705 + }, + { + "category_id": 1, + "poly": [ + 298, + 1256, + 1401, + 1256, + 1401, + 1321, + 298, + 1321 + ], + "score": 0.702 + }, + { + "category_id": 1, + "poly": [ + 294, + 1169, + 1403, + 1169, + 1403, + 1235, + 294, + 1235 + ], + "score": 0.692 + }, + { + "category_id": 1, + "poly": [ + 291, + 1769, + 1403, + 1769, + 1403, + 1834, + 291, + 1834 + ], + "score": 0.683 + }, + { + "category_id": 1, + "poly": [ + 295, + 1855, + 1403, + 1855, + 1403, + 1949, + 295, + 1949 + ], + "score": 0.654 + }, + { + "category_id": 1, + "poly": [ + 290, + 1085, + 1402, + 1085, + 1402, + 1149, + 290, + 1149 + ], + "score": 0.448 + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 715.0, + 1071.0, + 715.0, + 1071.0, + 756.0, + 294.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 226.0, + 1405.0, + 226.0, + 1405.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 260.0, + 844.0, + 260.0, + 844.0, + 296.0, + 321.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 513.0, + 1405.0, + 513.0, + 1405.0, + 552.0, + 292.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 544.0, + 396.0, + 544.0, + 396.0, + 583.0, + 317.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 313.0, + 1405.0, + 313.0, + 1405.0, + 352.0, + 293.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 347.0, + 955.0, + 347.0, + 955.0, + 380.0, + 323.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 399.0, + 1403.0, + 399.0, + 1403.0, + 436.0, + 293.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 433.0, + 1405.0, + 433.0, + 1405.0, + 467.0, + 325.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 462.0, + 1334.0, + 462.0, + 1334.0, + 496.0, + 323.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 772.0, + 1404.0, + 772.0, + 1404.0, + 810.0, + 294.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 805.0, + 1194.0, + 805.0, + 1194.0, + 838.0, + 322.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1512.0, + 1404.0, + 1512.0, + 1404.0, + 1552.0, + 296.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1544.0, + 874.0, + 1544.0, + 874.0, + 1578.0, + 322.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1593.0, + 1408.0, + 1593.0, + 1408.0, + 1636.0, + 294.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1626.0, + 399.0, + 1626.0, + 399.0, + 1664.0, + 320.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1423.0, + 1407.0, + 1423.0, + 1407.0, + 1466.0, + 294.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1459.0, + 977.0, + 1459.0, + 977.0, + 1493.0, + 322.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 858.0, + 1315.0, + 858.0, + 1315.0, + 895.0, + 293.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 914.0, + 1404.0, + 914.0, + 1404.0, + 950.0, + 295.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 946.0, + 895.0, + 946.0, + 895.0, + 978.0, + 323.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1337.0, + 1406.0, + 1337.0, + 1406.0, + 1383.0, + 294.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1372.0, + 914.0, + 1372.0, + 914.0, + 1407.0, + 324.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 599.0, + 1406.0, + 599.0, + 1406.0, + 640.0, + 295.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 634.0, + 1404.0, + 634.0, + 1404.0, + 668.0, + 324.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 666.0, + 873.0, + 666.0, + 873.0, + 696.0, + 325.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1686.0, + 1405.0, + 1686.0, + 1405.0, + 1718.0, + 296.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1714.0, + 1296.0, + 1714.0, + 1296.0, + 1750.0, + 321.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1969.0, + 1404.0, + 1969.0, + 1404.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 2003.0, + 922.0, + 2003.0, + 922.0, + 2035.0, + 321.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 995.0, + 1405.0, + 995.0, + 1405.0, + 1039.0, + 292.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1032.0, + 881.0, + 1032.0, + 881.0, + 1065.0, + 322.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1256.0, + 1405.0, + 1256.0, + 1405.0, + 1292.0, + 297.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1287.0, + 1378.0, + 1287.0, + 1378.0, + 1323.0, + 323.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1168.0, + 1408.0, + 1168.0, + 1408.0, + 1208.0, + 294.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1201.0, + 687.0, + 1201.0, + 687.0, + 1236.0, + 321.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1768.0, + 1402.0, + 1768.0, + 1402.0, + 1804.0, + 294.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1802.0, + 841.0, + 1802.0, + 841.0, + 1834.0, + 323.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1855.0, + 1408.0, + 1855.0, + 1408.0, + 1892.0, + 295.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1885.0, + 1408.0, + 1885.0, + 1408.0, + 1921.0, + 322.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1917.0, + 572.0, + 1917.0, + 572.0, + 1951.0, + 323.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1084.0, + 1405.0, + 1084.0, + 1405.0, + 1122.0, + 294.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1116.0, + 1203.0, + 1116.0, + 1203.0, + 1150.0, + 321.0, + 1150.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 862, + 2088, + 862, + 2113, + 835, + 2113 + ], + "score": 0.825 + }, + { + "category_id": 1, + "poly": [ + 295, + 675, + 1402, + 675, + 1402, + 740, + 295, + 740 + ], + "score": 0.667 + }, + { + "category_id": 1, + "poly": [ + 296, + 757, + 1220, + 757, + 1220, + 793, + 296, + 793 + ], + "score": 0.614 + }, + { + "category_id": 1, + "poly": [ + 289, + 810, + 1371, + 810, + 1371, + 846, + 289, + 846 + ], + "score": 0.596 + }, + { + "category_id": 1, + "poly": [ + 294, + 591, + 1403, + 591, + 1403, + 656, + 294, + 656 + ], + "score": 0.573 + }, + { + "category_id": 1, + "poly": [ + 290, + 229, + 1405, + 229, + 1405, + 294, + 290, + 294 + ], + "score": 0.562 + }, + { + "category_id": 1, + "poly": [ + 294, + 311, + 1403, + 311, + 1403, + 377, + 294, + 377 + ], + "score": 0.497 + }, + { + "category_id": 1, + "poly": [ + 292, + 508, + 1407, + 508, + 1407, + 574, + 292, + 574 + ], + "score": 0.494 + }, + { + "category_id": 1, + "poly": [ + 298, + 394, + 1402, + 394, + 1402, + 490, + 298, + 490 + ], + "score": 0.477 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 670.0, + 1406.0, + 670.0, + 1406.0, + 714.0, + 294.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 706.0, + 896.0, + 706.0, + 896.0, + 740.0, + 322.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 757.0, + 1221.0, + 757.0, + 1221.0, + 795.0, + 293.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 805.0, + 1374.0, + 805.0, + 1374.0, + 848.0, + 294.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 593.0, + 1408.0, + 593.0, + 1408.0, + 629.0, + 296.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 622.0, + 677.0, + 622.0, + 677.0, + 658.0, + 322.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 227.0, + 1407.0, + 227.0, + 1407.0, + 265.0, + 293.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 260.0, + 1025.0, + 260.0, + 1025.0, + 295.0, + 322.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 312.0, + 1406.0, + 312.0, + 1406.0, + 348.0, + 296.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 344.0, + 730.0, + 344.0, + 730.0, + 376.0, + 322.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 506.0, + 1408.0, + 506.0, + 1408.0, + 546.0, + 295.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 541.0, + 810.0, + 541.0, + 810.0, + 573.0, + 322.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 392.0, + 1407.0, + 392.0, + 1407.0, + 432.0, + 293.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 427.0, + 1404.0, + 427.0, + 1404.0, + 462.0, + 322.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 458.0, + 466.0, + 458.0, + 466.0, + 490.0, + 319.0, + 490.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 805, + 1405, + 805, + 1405, + 1021, + 298, + 1021 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 296, + 1035, + 1405, + 1035, + 1405, + 1310, + 296, + 1310 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1811, + 1404, + 1811, + 1404, + 1965, + 297, + 1965 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 272, + 1383, + 1034, + 1383, + 1034, + 1785, + 272, + 1785 + ], + "score": 0.911 + }, + { + "category_id": 3, + "poly": [ + 356, + 222, + 1337, + 222, + 1337, + 580, + 356, + 580 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 320, + 2005, + 1332, + 2005, + 1332, + 2034, + 320, + 2034 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 105, + 300, + 105 + ], + "score": 0.88 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.86 + }, + { + "category_id": 4, + "poly": [ + 296, + 603, + 1408, + 603, + 1408, + 666, + 296, + 666 + ], + "score": 0.846 + }, + { + "category_id": 0, + "poly": [ + 298, + 730, + 978, + 730, + 978, + 767, + 298, + 767 + ], + "score": 0.619 + }, + { + "category_id": 6, + "poly": [ + 297, + 1340, + 1018, + 1340, + 1018, + 1373, + 297, + 1373 + ], + "score": 0.334 + }, + { + "category_id": 1, + "poly": [ + 298, + 730, + 978, + 730, + 978, + 767, + 298, + 767 + ], + "score": 0.302 + }, + { + "category_id": 13, + "poly": [ + 929, + 1480, + 1022, + 1480, + 1022, + 1512, + 929, + 1512 + ], + "score": 0.9, + "latex": "a , b , c , d" + }, + { + "category_id": 13, + "poly": [ + 298, + 1477, + 468, + 1477, + 468, + 1508, + 298, + 1508 + ], + "score": 0.89, + "latex": "\\mathbf { V } = \\mathbf { I } \\in \\mathbb { R } ^ { 4 \\times 4 }" + }, + { + "category_id": 13, + "poly": [ + 599, + 1485, + 756, + 1485, + 756, + 1511, + 599, + 1511 + ], + "score": 0.89, + "latex": "\\mathbf { v } _ { 0 } , \\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } , \\mathbf { v } _ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 335, + 1543, + 738, + 1543, + 738, + 1581, + 335, + 1581 + ], + "score": 0.87, + "latex": "\\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) } = \\sigma ( \\mathbf { v } _ { i } \\mathbf { W } _ { i } + \\mathbf { h } ^ { ( t - 1 ) } \\mathbf { W } _ { h } + \\mathbf { b } )" + }, + { + "category_id": 13, + "poly": [ + 339, + 1622, + 468, + 1622, + 468, + 1661, + 339, + 1661 + ], + "score": 0.86, + "latex": "\\mathbf { h } ^ { ( t ) } = \\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1447, + 362, + 1447, + 362, + 1473, + 296, + 1473 + ], + "score": 0.86, + "latex": "t = 0" + }, + { + "category_id": 13, + "poly": [ + 938, + 1156, + 967, + 1156, + 967, + 1186, + 938, + 1186 + ], + "score": 0.84, + "latex": "\\mathbf { s } ^ { 5 }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1415, + 375, + 1415, + 375, + 1445, + 296, + 1445 + ], + "score": 0.8, + "latex": "\\mathbf { s } = \\left[ \\mathbf { \\epsilon } \\right]" + }, + { + "category_id": 13, + "poly": [ + 340, + 1583, + 634, + 1583, + 634, + 1622, + 340, + 1622 + ], + "score": 0.78, + "latex": "i = \\mathrm { a r g m i n } _ { i } \\vert \\vert \\mathbf { m } - \\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) } \\vert \\vert ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1379, + 399, + 1379, + 399, + 1412, + 296, + 1412 + ], + "score": 0.78, + "latex": "\\mathbf { h } ^ { ( 0 ) } = \\mathbf { 0 }" + }, + { + "category_id": 13, + "poly": [ + 434, + 1663, + 448, + 1663, + 448, + 1687, + 434, + 1687 + ], + "score": 0.65, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 384, + 930, + 426, + 930, + 426, + 961, + 384, + 961 + ], + "score": 0.63, + "latex": "( s p )" + }, + { + "category_id": 13, + "poly": [ + 404, + 1158, + 484, + 1158, + 484, + 1187, + 404, + 1187 + ], + "score": 0.62, + "latex": "1 0 0 \\mathbf { m }" + }, + { + "category_id": 13, + "poly": [ + 790, + 930, + 828, + 930, + 828, + 960, + 790, + 960 + ], + "score": 0.61, + "latex": "( p l )" + }, + { + "category_id": 13, + "poly": [ + 368, + 1511, + 483, + 1511, + 483, + 1542, + 368, + 1542 + ], + "score": 0.58, + "latex": "| \\mathbf { s } | < m a x" + }, + { + "category_id": 13, + "poly": [ + 946, + 2007, + 962, + 2007, + 962, + 2030, + 946, + 2030 + ], + "score": 0.49, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 902, + 2011, + 916, + 2011, + 916, + 2030, + 902, + 2030 + ], + "score": 0.48, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 511, + 930, + 553, + 930, + 553, + 960, + 511, + 960 + ], + "score": 0.46, + "latex": "( h r )" + }, + { + "category_id": 13, + "poly": [ + 365, + 1692, + 693, + 1692, + 693, + 1730, + 365, + 1730 + ], + "score": 0.42, + "latex": "| | \\mathbf { m } - \\mathbf { h } ^ { ( t ) } | | ^ { 2 } < t h r e s h o l d \\mathbf { t } 1" + }, + { + "category_id": 13, + "poly": [ + 366, + 224, + 683, + 224, + 683, + 553, + 366, + 553 + ], + "score": 0.41, + "latex": "\\begin{array}{c} \\begin{array}{c} \\begin{array}{c} { \\begin{array} { l } { { \\frac { s p } { 1 } } | { \\begin{array} { l } { h r } \\\\ { 0 } \\\\ { 1 } \\end{array} } | { \\begin{array} { l } { { \\begin{array} { l } { { o t } } \\\\ { 0 } \\\\ { 0 } \\\\ { 1 } \\end{array} } } \\end{array} } | { \\begin{array} { l l } { { \\begin{array} { l l } { p l } \\\\ { 0 } \\\\ { 0 } \\\\ { 1 } \\end{array} } } \\end{array} } | | { \\begin{array} { l } { { \\begin{array} { l } { { } } \\\\ { m e } \\\\ { w e } \\\\ { m } \\end{array} } } \\end{array} } } \\\\ { 0 } \\\\ { 0 } \\\\ { 0 } \\\\ { 1 } \\end{array} } | { \\begin{array} { l } { 1 } \\\\ { 0 } \\\\ { 1 } \\\\ { 1 } \\\\ { 1 } \\end{array} } | { \\begin{array} { l } { 1 } \\\\ { 0 } \\\\ { 0 } \\\\ { 0 } \\\\ { 1 } \\end{array} } | { \\begin{array} { l } { 1 } \\\\ { 0 } \\\\ { 1 } \\end{array} } | | { \\begin{array} { l } { m i y } \\\\ { y i n } \\\\ { y y } \\\\ { y a l } \\end{array} } | \\\\ { 1 } \\\\ { 1 } \\\\ { 1 } \\\\ { 0 } \\\\ { 1 } \\end{array} | { \\begin{array} { l } { 1 } \\\\ { 1 } \\\\ { 0 } \\\\ { 1 } \\\\ { 1 } \\end{array} } | | { \\begin{array} { l } { 1 y } \\\\ { y a m i } \\\\ { 1 } \\\\ { 0 } \\\\ { 0 i } \\end{array} } | \\\\ { 0 } \\\\ { 1 } \\end{array} { | \\begin{array} { l } { 1 } \\\\ { 0 i z } \\\\ { 1 } \\\\ { 1 } \\\\ { 1 } \\end{array} } | { \\begin{array} { l } { 1 } \\\\ { 1 } \\\\ { 1 } \\\\ { 1 } \\end{array} } | { \\begin{array} { l } { 1 } \\\\ { 1 } \\\\ { 0 i b { \\it } } \\end{array} } | \\end{array} " + }, + { + "category_id": 13, + "poly": [ + 877, + 2008, + 891, + 2008, + 891, + 2030, + 877, + 2030 + ], + "score": 0.4, + "latex": "^ b" + }, + { + "category_id": 13, + "poly": [ + 623, + 930, + 663, + 930, + 663, + 960, + 623, + 960 + ], + "score": 0.37, + "latex": "( o t )" + }, + { + "category_id": 13, + "poly": [ + 853, + 2012, + 867, + 2012, + 867, + 2030, + 853, + 2030 + ], + "score": 0.32, + "latex": "a" + }, + { + "category_id": 13, + "poly": [ + 1070, + 1161, + 1102, + 1161, + 1102, + 1186, + 1070, + 1186 + ], + "score": 0.32, + "latex": "\\mathbf { m }" + }, + { + "category_id": 13, + "poly": [ + 1189, + 234, + 1320, + 234, + 1320, + 544, + 1189, + 544 + ], + "score": 0.3, + "latex": "\\begin{array} { r l } & { o n e a n g r y } \\\\ & { y u m i s i t l y } \\\\ & { a l l s i c k } \\\\ & { y u p h u m g r y } \\\\ & { m i p . s i l l y } \\\\ & { y u p s i c k } \\\\ & { y o u t i r e d } \\\\ & { t h e p t h i r s t y } \\\\ & { w e s a d } \\\\ & { m e e x c i t e d } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1069, + 1220, + 1092, + 1220, + 1092, + 1248, + 1069, + 1248 + ], + "score": 0.25, + "latex": "\\mathbf { h }" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 224.0, + 827.0, + 224.0, + 827.0, + 257.0, + 745.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 224.0, + 1110.0, + 224.0, + 1110.0, + 257.0, + 1030.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 251.0, + 834.0, + 251.0, + 834.0, + 284.0, + 745.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 248.0, + 941.0, + 248.0, + 941.0, + 294.0, + 859.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 252.0, + 1167.0, + 252.0, + 1167.0, + 284.0, + 1030.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 277.0, + 837.0, + 277.0, + 837.0, + 313.0, + 744.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 279.0, + 916.0, + 279.0, + 916.0, + 312.0, + 858.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 279.0, + 1167.0, + 279.0, + 1167.0, + 311.0, + 1032.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 304.0, + 835.0, + 304.0, + 835.0, + 340.0, + 746.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 306.0, + 940.0, + 306.0, + 940.0, + 348.0, + 858.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 306.0, + 1167.0, + 306.0, + 1167.0, + 338.0, + 1032.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 334.0, + 835.0, + 334.0, + 835.0, + 367.0, + 747.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 334.0, + 928.0, + 334.0, + 928.0, + 369.0, + 861.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 335.0, + 1169.0, + 335.0, + 1169.0, + 367.0, + 1031.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1321.0, + 334.0, + 1325.0, + 334.0, + 1325.0, + 373.0, + 1321.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 361.0, + 834.0, + 361.0, + 834.0, + 394.0, + 747.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 361.0, + 950.0, + 361.0, + 950.0, + 395.0, + 858.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 361.0, + 1167.0, + 361.0, + 1167.0, + 393.0, + 1032.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 389.0, + 834.0, + 389.0, + 834.0, + 422.0, + 747.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 388.0, + 919.0, + 388.0, + 919.0, + 424.0, + 860.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 390.0, + 1167.0, + 390.0, + 1167.0, + 422.0, + 1031.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 415.0, + 837.0, + 415.0, + 837.0, + 452.0, + 745.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 412.0, + 952.0, + 412.0, + 952.0, + 459.0, + 860.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1029.0, + 416.0, + 1170.0, + 416.0, + 1170.0, + 452.0, + 1029.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 443.0, + 836.0, + 443.0, + 836.0, + 479.0, + 745.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 441.0, + 945.0, + 441.0, + 945.0, + 483.0, + 860.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 444.0, + 1169.0, + 444.0, + 1169.0, + 479.0, + 1030.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 473.0, + 835.0, + 473.0, + 835.0, + 506.0, + 746.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 469.0, + 924.0, + 469.0, + 924.0, + 513.0, + 859.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 471.0, + 1171.0, + 471.0, + 1171.0, + 507.0, + 1032.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 500.0, + 835.0, + 500.0, + 835.0, + 533.0, + 745.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 503.0, + 944.0, + 503.0, + 944.0, + 534.0, + 860.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 499.0, + 1169.0, + 499.0, + 1169.0, + 534.0, + 1032.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 545.0, + 621.0, + 545.0, + 621.0, + 584.0, + 419.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 546.0, + 960.0, + 546.0, + 960.0, + 582.0, + 741.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 546.0, + 1333.0, + 546.0, + 1333.0, + 582.0, + 1028.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.25, + 333.5, + 656.25, + 333.5, + 656.25, + 372.5, + 591.25, + 372.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.25, + 417.0, + 666.25, + 417.0, + 666.25, + 454.0, + 594.25, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 2001.0, + 852.0, + 2001.0, + 852.0, + 2038.0, + 331.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 2001.0, + 876.0, + 2001.0, + 876.0, + 2038.0, + 868.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 2001.0, + 901.0, + 2001.0, + 901.0, + 2038.0, + 892.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 2001.0, + 945.0, + 2001.0, + 945.0, + 2038.0, + 917.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 2001.0, + 1333.0, + 2001.0, + 1333.0, + 2038.0, + 963.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 71.0, + 817.0, + 71.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 603.0, + 1405.0, + 603.0, + 1405.0, + 638.0, + 295.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 636.0, + 711.0, + 636.0, + 711.0, + 668.0, + 297.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 727.0, + 980.0, + 727.0, + 980.0, + 773.0, + 293.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1337.0, + 1021.0, + 1337.0, + 1021.0, + 1378.0, + 294.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 807.0, + 1407.0, + 807.0, + 1407.0, + 841.0, + 295.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 836.0, + 1403.0, + 836.0, + 1403.0, + 871.0, + 293.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 869.0, + 1405.0, + 869.0, + 1405.0, + 903.0, + 295.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 896.0, + 1406.0, + 896.0, + 1406.0, + 936.0, + 292.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 929.0, + 383.0, + 929.0, + 383.0, + 962.0, + 294.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 929.0, + 510.0, + 929.0, + 510.0, + 962.0, + 427.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 929.0, + 622.0, + 929.0, + 622.0, + 962.0, + 554.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 929.0, + 789.0, + 929.0, + 789.0, + 962.0, + 664.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 929.0, + 1405.0, + 929.0, + 1405.0, + 962.0, + 829.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 957.0, + 1406.0, + 957.0, + 1406.0, + 992.0, + 295.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 991.0, + 1116.0, + 991.0, + 1116.0, + 1025.0, + 295.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1037.0, + 1405.0, + 1037.0, + 1405.0, + 1070.0, + 296.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1067.0, + 1405.0, + 1067.0, + 1405.0, + 1100.0, + 295.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1096.0, + 1405.0, + 1096.0, + 1405.0, + 1131.0, + 294.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1128.0, + 1407.0, + 1128.0, + 1407.0, + 1161.0, + 294.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1157.0, + 403.0, + 1157.0, + 403.0, + 1193.0, + 294.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 1157.0, + 937.0, + 1157.0, + 937.0, + 1193.0, + 485.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1157.0, + 1069.0, + 1157.0, + 1069.0, + 1193.0, + 968.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 1157.0, + 1410.0, + 1157.0, + 1410.0, + 1193.0, + 1103.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1186.0, + 1407.0, + 1186.0, + 1407.0, + 1226.0, + 294.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1219.0, + 1068.0, + 1219.0, + 1068.0, + 1252.0, + 295.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 1219.0, + 1405.0, + 1219.0, + 1405.0, + 1252.0, + 1093.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1247.0, + 1405.0, + 1247.0, + 1405.0, + 1286.0, + 293.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1279.0, + 767.0, + 1279.0, + 767.0, + 1312.0, + 295.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1809.0, + 1405.0, + 1809.0, + 1405.0, + 1847.0, + 294.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1839.0, + 1404.0, + 1839.0, + 1404.0, + 1879.0, + 294.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1871.0, + 1407.0, + 1871.0, + 1407.0, + 1909.0, + 291.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1901.0, + 1406.0, + 1901.0, + 1406.0, + 1938.0, + 295.0, + 1938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1933.0, + 1404.0, + 1933.0, + 1404.0, + 1970.0, + 295.0, + 1970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 271.0, + 1376.0, + 295.0, + 1376.0, + 295.0, + 1419.0, + 271.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1376.0, + 862.0, + 1376.0, + 862.0, + 1419.0, + 400.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 271.0, + 1411.0, + 295.0, + 1411.0, + 295.0, + 1450.0, + 271.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 1411.0, + 725.0, + 1411.0, + 725.0, + 1450.0, + 376.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 272.0, + 1444.0, + 295.0, + 1444.0, + 295.0, + 1477.0, + 272.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 1444.0, + 565.0, + 1444.0, + 565.0, + 1477.0, + 363.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 269.0, + 1472.0, + 297.0, + 1472.0, + 297.0, + 1517.0, + 269.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 1472.0, + 598.0, + 1472.0, + 598.0, + 1517.0, + 469.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 1472.0, + 928.0, + 1472.0, + 928.0, + 1517.0, + 757.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 1472.0, + 1035.0, + 1472.0, + 1035.0, + 1517.0, + 1023.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 270.0, + 1506.0, + 367.0, + 1506.0, + 367.0, + 1546.0, + 270.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 1506.0, + 699.0, + 1506.0, + 699.0, + 1546.0, + 484.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 273.0, + 1555.0, + 292.0, + 1555.0, + 292.0, + 1578.0, + 273.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1530.0, + 334.0, + 1530.0, + 334.0, + 1593.0, + 327.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 1530.0, + 757.0, + 1530.0, + 757.0, + 1593.0, + 739.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 274.0, + 1597.0, + 290.0, + 1597.0, + 290.0, + 1617.0, + 274.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1583.0, + 339.0, + 1583.0, + 339.0, + 1624.0, + 331.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 1583.0, + 650.0, + 1583.0, + 650.0, + 1624.0, + 635.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1607.0, + 338.0, + 1607.0, + 338.0, + 1676.0, + 326.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 1607.0, + 493.0, + 1607.0, + 493.0, + 1676.0, + 469.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 274.0, + 1638.0, + 290.0, + 1638.0, + 290.0, + 1659.0, + 274.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 273.0, + 1667.0, + 291.0, + 1667.0, + 291.0, + 1691.0, + 273.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 1658.0, + 433.0, + 1658.0, + 433.0, + 1695.0, + 337.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1658.0, + 509.0, + 1658.0, + 509.0, + 1695.0, + 449.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 266.0, + 1703.0, + 292.0, + 1703.0, + 292.0, + 1728.0, + 266.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1691.0, + 364.0, + 1691.0, + 364.0, + 1730.0, + 335.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 1691.0, + 734.0, + 1691.0, + 734.0, + 1730.0, + 694.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 266.0, + 1734.0, + 291.0, + 1734.0, + 291.0, + 1758.0, + 266.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1726.0, + 510.0, + 1726.0, + 510.0, + 1760.0, + 358.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 727.0, + 980.0, + 727.0, + 980.0, + 773.0, + 293.0, + 773.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1380, + 1404, + 1380, + 1404, + 1807, + 298, + 1807 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 299, + 1823, + 1402, + 1823, + 1402, + 1946, + 299, + 1946 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 298, + 1303, + 1400, + 1303, + 1400, + 1365, + 298, + 1365 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 300, + 1081, + 1400, + 1081, + 1400, + 1143, + 300, + 1143 + ], + "score": 0.939 + }, + { + "category_id": 2, + "poly": [ + 295, + 1978, + 1405, + 1978, + 1405, + 2033, + 295, + 2033 + ], + "score": 0.937 + }, + { + "category_id": 5, + "poly": [ + 358, + 559, + 1333, + 559, + 1333, + 870, + 358, + 870 + ], + "score": 0.934, + "html": "
-onetheyyouyallyupmewemipyumiall
tiredcdacdabcdccdcbcdbacdcddcddbcdcdcdb
scaredcaacaabcaccacbcabacacadcadbcacdcab
sickdaadaabdacdacbdabadadaddadbdacddab
happybaabaabbcabcabbaacbabadcbabbacbabc
sad excitedabaababacacbabacaabdcabbabcabbc
cbacbabccacacbcbcaCccdccbccbcbc
angrycbcbbCCccbcbcCcddccdbcdccdbc
silly(aa)(aaab)(aca)(acab)adbaaddaddcadadadcadbc
thirstydbaadbabdcadcbadbcaddaddacdbaddcaddbacd
hungrydbbdbbddcdcbdbcddddcdbddcddbcd
" + }, + { + "category_id": 0, + "poly": [ + 299, + 1194, + 1232, + 1194, + 1232, + 1265, + 299, + 1265 + ], + "score": 0.928 + }, + { + "category_id": 5, + "poly": [ + 380, + 223, + 1314, + 223, + 1314, + 535, + 380, + 535 + ], + "score": 0.911, + "html": "
=onetheyyouyallyupmewemipyumiall
tiredcdacdabcdccdcbcdbacdcddcddbcdcdcdb
scaredcaacaabcaccacbcabacacadcadbcacdcab
sickdaadaabdacdacbdabadadaddadbdacddab
happy sadbaabaab ababbcabcabbaacbabadcbabbacbabc
excitedaba cbacbabacacb cacbabac cbcaaabdc ccdcabbabcabbc
angrybbbbbcca bcccbccbcbc
bcbbbcbbddcbdbbdcbdbc
sillyaaaaabacaacabadbaaddaddcadadadcadbc
thirstydbaadbabdcadcbadbcaddaddacdbaddcaddbacd
hungrydbbdbbddcdcbdbcddddcdbddcddbcd
" + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2112, + 836, + 2112 + ], + "score": 0.857 + }, + { + "category_id": 1, + "poly": [ + 297, + 893, + 1405, + 893, + 1405, + 1017, + 297, + 1017 + ], + "score": 0.588 + }, + { + "category_id": 6, + "poly": [ + 297, + 893, + 1405, + 893, + 1405, + 1017, + 297, + 1017 + ], + "score": 0.492 + }, + { + "category_id": 13, + "poly": [ + 926, + 733, + 943, + 733, + 943, + 752, + 926, + 752 + ], + "score": 0.43, + "latex": "c" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2012.0, + 330.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 985.0, + 2003.0, + 985.0, + 2036.0, + 294.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1193.0, + 1236.0, + 1193.0, + 1236.0, + 1235.0, + 294.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1237.0, + 1030.0, + 1237.0, + 1030.0, + 1270.0, + 352.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2084.0, + 867.0, + 2084.0, + 867.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 891.0, + 1408.0, + 891.0, + 1408.0, + 929.0, + 291.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 926.0, + 1405.0, + 926.0, + 1405.0, + 959.0, + 295.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 955.0, + 1405.0, + 955.0, + 1405.0, + 991.0, + 294.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 985.0, + 734.0, + 985.0, + 734.0, + 1018.0, + 295.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1379.0, + 1405.0, + 1379.0, + 1405.0, + 1411.0, + 296.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1411.0, + 1406.0, + 1411.0, + 1406.0, + 1447.0, + 294.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1440.0, + 1408.0, + 1440.0, + 1408.0, + 1479.0, + 293.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1472.0, + 1406.0, + 1472.0, + 1406.0, + 1506.0, + 292.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1501.0, + 1408.0, + 1501.0, + 1408.0, + 1540.0, + 293.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1530.0, + 1408.0, + 1530.0, + 1408.0, + 1571.0, + 292.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1562.0, + 1406.0, + 1562.0, + 1406.0, + 1599.0, + 293.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1592.0, + 1406.0, + 1592.0, + 1406.0, + 1632.0, + 293.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1624.0, + 1406.0, + 1624.0, + 1406.0, + 1661.0, + 292.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1654.0, + 1407.0, + 1654.0, + 1407.0, + 1691.0, + 291.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1683.0, + 1406.0, + 1683.0, + 1406.0, + 1721.0, + 293.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1716.0, + 1408.0, + 1716.0, + 1408.0, + 1752.0, + 294.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1746.0, + 1406.0, + 1746.0, + 1406.0, + 1781.0, + 293.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1773.0, + 395.0, + 1773.0, + 395.0, + 1813.0, + 293.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1823.0, + 1406.0, + 1823.0, + 1406.0, + 1859.0, + 295.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1854.0, + 1404.0, + 1854.0, + 1404.0, + 1888.0, + 294.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1887.0, + 1406.0, + 1887.0, + 1406.0, + 1918.0, + 294.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1916.0, + 1406.0, + 1916.0, + 1406.0, + 1950.0, + 293.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1302.0, + 1405.0, + 1302.0, + 1405.0, + 1338.0, + 296.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1330.0, + 1359.0, + 1330.0, + 1359.0, + 1372.0, + 292.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1078.0, + 1404.0, + 1078.0, + 1404.0, + 1118.0, + 294.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1113.0, + 521.0, + 1113.0, + 521.0, + 1145.0, + 295.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 891.0, + 1408.0, + 891.0, + 1408.0, + 929.0, + 291.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 926.0, + 1405.0, + 926.0, + 1405.0, + 959.0, + 295.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 955.0, + 1405.0, + 955.0, + 1405.0, + 991.0, + 294.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 985.0, + 734.0, + 985.0, + 734.0, + 1018.0, + 295.0, + 1018.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 399, + 1404, + 399, + 1404, + 705, + 298, + 705 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 720, + 1403, + 720, + 1403, + 873, + 298, + 873 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1819, + 1403, + 1819, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1109, + 1404, + 1109, + 1404, + 1293, + 299, + 1293 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1403, + 229, + 1403, + 382, + 299, + 382 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 299, + 1543, + 1405, + 1543, + 1405, + 1635, + 299, + 1635 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 296, + 1386, + 1404, + 1386, + 1404, + 1449, + 296, + 1449 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 298, + 984, + 1044, + 984, + 1044, + 1016, + 298, + 1016 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 300, + 1486, + 599, + 1486, + 599, + 1517, + 300, + 1517 + ], + "score": 0.9 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.889 + }, + { + "category_id": 0, + "poly": [ + 300, + 1330, + 617, + 1330, + 617, + 1361, + 300, + 1361 + ], + "score": 0.872 + }, + { + "category_id": 0, + "poly": [ + 300, + 918, + 823, + 918, + 823, + 952, + 300, + 952 + ], + "score": 0.868 + }, + { + "category_id": 2, + "poly": [ + 836, + 2089, + 863, + 2089, + 863, + 2112, + 836, + 2112 + ], + "score": 0.837 + }, + { + "category_id": 0, + "poly": [ + 298, + 1681, + 1163, + 1681, + 1163, + 1715, + 298, + 1715 + ], + "score": 0.833 + }, + { + "category_id": 0, + "poly": [ + 300, + 1751, + 629, + 1751, + 629, + 1786, + 300, + 1786 + ], + "score": 0.72 + }, + { + "category_id": 0, + "poly": [ + 300, + 1052, + 574, + 1052, + 574, + 1083, + 300, + 1083 + ], + "score": 0.453 + }, + { + "category_id": 1, + "poly": [ + 300, + 1052, + 574, + 1052, + 574, + 1083, + 300, + 1083 + ], + "score": 0.437 + }, + { + "category_id": 1, + "poly": [ + 300, + 1751, + 629, + 1751, + 629, + 1786, + 300, + 1786 + ], + "score": 0.146 + }, + { + "category_id": 13, + "poly": [ + 620, + 1141, + 833, + 1141, + 833, + 1172, + 620, + 1172 + ], + "score": 0.82, + "latex": "[ 2 , 1 , 1 , 2 , 1 , 2 , 1 , 2 ]" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1485.0, + 604.0, + 1485.0, + 604.0, + 1521.0, + 296.0, + 1521.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, + 1329.0, + 621.0, + 1329.0, + 621.0, + 1365.0, + 296.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 913.0, + 830.0, + 913.0, + 830.0, + 958.0, + 293.0, + 958.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, + 1678.0, + 1168.0, + 1678.0, + 1168.0, + 1720.0, + 294.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1748.0, + 634.0, + 1748.0, + 634.0, + 1792.0, + 293.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1047.0, + 579.0, + 1047.0, + 579.0, + 1089.0, + 294.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 397.0, + 1404.0, + 397.0, + 1404.0, + 435.0, + 293.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 428.0, + 1406.0, + 428.0, + 1406.0, + 466.0, + 293.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 461.0, + 1406.0, + 461.0, + 1406.0, + 496.0, + 294.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 492.0, + 1405.0, + 492.0, + 1405.0, + 524.0, + 296.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 522.0, + 1409.0, + 522.0, + 1409.0, + 557.0, + 294.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 548.0, + 1408.0, + 548.0, + 1408.0, + 590.0, + 292.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 580.0, + 1405.0, + 580.0, + 1405.0, + 619.0, + 293.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 613.0, + 1405.0, + 613.0, + 1405.0, + 648.0, + 294.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 645.0, + 1404.0, + 645.0, + 1404.0, + 676.0, + 296.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 671.0, + 1109.0, + 671.0, + 1109.0, + 713.0, + 292.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 719.0, + 1403.0, + 719.0, + 1403.0, + 754.0, + 296.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 748.0, + 1405.0, + 748.0, + 1405.0, + 786.0, + 293.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 782.0, + 1404.0, + 782.0, + 1404.0, + 815.0, + 294.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 810.0, + 1405.0, + 810.0, + 1405.0, + 848.0, + 293.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 844.0, + 1027.0, + 844.0, + 1027.0, + 877.0, + 296.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1821.0, + 1405.0, + 1821.0, + 1405.0, + 1855.0, + 294.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1851.0, + 1405.0, + 1851.0, + 1405.0, + 1886.0, + 294.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1882.0, + 1405.0, + 1882.0, + 1405.0, + 1917.0, + 294.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1913.0, + 1405.0, + 1913.0, + 1405.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1973.0, + 1407.0, + 1973.0, + 1407.0, + 2008.0, + 293.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2004.0, + 1129.0, + 2004.0, + 1129.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1111.0, + 1406.0, + 1111.0, + 1406.0, + 1143.0, + 297.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1140.0, + 619.0, + 1140.0, + 619.0, + 1176.0, + 294.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 1140.0, + 1406.0, + 1140.0, + 1406.0, + 1176.0, + 834.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1171.0, + 1406.0, + 1171.0, + 1406.0, + 1206.0, + 294.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1202.0, + 1403.0, + 1202.0, + 1403.0, + 1234.0, + 295.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1231.0, + 1405.0, + 1231.0, + 1405.0, + 1267.0, + 295.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1263.0, + 1160.0, + 1263.0, + 1160.0, + 1295.0, + 295.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 232.0, + 1404.0, + 232.0, + 1404.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, + 295.0, + 295.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 292.0, + 1405.0, + 292.0, + 1405.0, + 325.0, + 295.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 321.0, + 1404.0, + 321.0, + 1404.0, + 357.0, + 293.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 352.0, + 637.0, + 352.0, + 637.0, + 387.0, + 294.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1541.0, + 1404.0, + 1541.0, + 1404.0, + 1577.0, + 294.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1572.0, + 1405.0, + 1572.0, + 1405.0, + 1608.0, + 293.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1603.0, + 559.0, + 1603.0, + 559.0, + 1637.0, + 295.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1386.0, + 1405.0, + 1386.0, + 1405.0, + 1421.0, + 295.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1418.0, + 574.0, + 1418.0, + 574.0, + 1453.0, + 295.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 979.0, + 1049.0, + 979.0, + 1049.0, + 1025.0, + 293.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1047.0, + 579.0, + 1047.0, + 579.0, + 1089.0, + 294.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1748.0, + 634.0, + 1748.0, + 634.0, + 1792.0, + 293.0, + 1792.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 491, + 1299, + 1204, + 1299, + 1204, + 1558, + 491, + 1558 + ], + "score": 0.98, + "html": "
BoxSphereCylinderCapsuleEllipsoid
Blue97.7597.0095.0093.7593.50
Red95.5093.0095.7595.2597.00
White95.2596.2593.5094.5097.00
Gray93.0095.0094.2596.7597.25
Yellow98.0095.0095.5094.2594.25
Green96.0093.5095.0094.5095.25
Cyan97.5094.5097.0094.0094.75
Magenta95.2596.7594.7594.5095.25
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1850, + 1405, + 1850, + 1405, + 2033, + 297, + 2033 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 848, + 1406, + 848, + 1406, + 1094, + 297, + 1094 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1680, + 1404, + 1680, + 1404, + 1835, + 297, + 1835 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 271, + 279, + 1101, + 279, + 1101, + 749, + 271, + 749 + ], + "score": 0.912 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 814, + 75, + 814, + 105, + 300, + 105 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.848 + }, + { + "category_id": 0, + "poly": [ + 297, + 1174, + 1122, + 1174, + 1122, + 1209, + 297, + 1209 + ], + "score": 0.815 + }, + { + "category_id": 6, + "poly": [ + 296, + 237, + 970, + 237, + 970, + 271, + 296, + 271 + ], + "score": 0.619 + }, + { + "category_id": 6, + "poly": [ + 489, + 1580, + 1207, + 1580, + 1207, + 1613, + 489, + 1613 + ], + "score": 0.443 + }, + { + "category_id": 1, + "poly": [ + 296, + 237, + 970, + 237, + 970, + 271, + 296, + 271 + ], + "score": 0.231 + }, + { + "category_id": 13, + "poly": [ + 971, + 378, + 1089, + 378, + 1089, + 410, + 971, + 410 + ], + "score": 0.91, + "latex": "a , b , c , d , e" + }, + { + "category_id": 13, + "poly": [ + 1150, + 1713, + 1255, + 1713, + 1255, + 1743, + 1150, + 1743 + ], + "score": 0.9, + "latex": "( 4 0 \\times 4 0 )" + }, + { + "category_id": 13, + "poly": [ + 843, + 1911, + 897, + 1911, + 897, + 1941, + 843, + 1941 + ], + "score": 0.89, + "latex": "9 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 298, + 374, + 468, + 374, + 468, + 406, + 298, + 406 + ], + "score": 0.89, + "latex": "\\mathbf { V } = \\mathbf { I } \\in \\mathbb { R } ^ { 5 \\times 5 }" + }, + { + "category_id": 13, + "poly": [ + 599, + 383, + 797, + 383, + 797, + 410, + 599, + 410 + ], + "score": 0.89, + "latex": "\\mathbf { v } _ { 0 } , \\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } , \\mathbf { v } _ { 3 } , \\mathbf { v } _ { 4 }" + }, + { + "category_id": 13, + "poly": [ + 1344, + 1942, + 1398, + 1942, + 1398, + 1972, + 1344, + 1972 + ], + "score": 0.87, + "latex": "9 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 450, + 1773, + 525, + 1773, + 525, + 1804, + 450, + 1804 + ], + "score": 0.87, + "latex": "9 5 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 338, + 580, + 468, + 580, + 468, + 621, + 338, + 621 + ], + "score": 0.87, + "latex": "\\mathbf { h } ^ { ( t ) } = \\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) }" + }, + { + "category_id": 13, + "poly": [ + 337, + 502, + 622, + 502, + 622, + 540, + 337, + 540 + ], + "score": 0.86, + "latex": "\\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) } = G R U ( \\mathbf { v } _ { i } , \\mathbf { h } ^ { ( t - 1 ) } )" + }, + { + "category_id": 13, + "poly": [ + 296, + 345, + 362, + 345, + 362, + 371, + 296, + 371 + ], + "score": 0.84, + "latex": "t = 0" + }, + { + "category_id": 13, + "poly": [ + 472, + 1003, + 491, + 1003, + 491, + 1034, + 472, + 1034 + ], + "score": 0.84, + "latex": "\\hat { y }" + }, + { + "category_id": 13, + "poly": [ + 296, + 314, + 375, + 314, + 375, + 343, + 296, + 343 + ], + "score": 0.8, + "latex": "\\mathbf { s } = \\left[ \\mathbf { \\epsilon } \\right]" + }, + { + "category_id": 13, + "poly": [ + 295, + 438, + 570, + 438, + 570, + 468, + 295, + 468 + ], + "score": 0.79, + "latex": "\\mathbf { z } = V i s u a l M o d u l e ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 295, + 276, + 399, + 276, + 399, + 310, + 295, + 310 + ], + "score": 0.78, + "latex": "\\mathbf { h } ^ { ( 0 ) } = \\mathbf { 0 }" + }, + { + "category_id": 13, + "poly": [ + 368, + 469, + 481, + 469, + 481, + 501, + 368, + 501 + ], + "score": 0.73, + "latex": "| \\mathbf { s } | < m a x" + }, + { + "category_id": 13, + "poly": [ + 573, + 652, + 712, + 652, + 712, + 693, + 573, + 693 + ], + "score": 0.71, + "latex": "( [ \\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) } , \\mathbf { z } ] ) >" + }, + { + "category_id": 13, + "poly": [ + 296, + 412, + 350, + 412, + 350, + 436, + 296, + 436 + ], + "score": 0.67, + "latex": "\\mathbf { x } =" + }, + { + "category_id": 13, + "poly": [ + 435, + 623, + 448, + 623, + 448, + 646, + 435, + 646 + ], + "score": 0.6, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 530, + 438, + 568, + 438, + 568, + 471, + 530, + 471 + ], + "score": 0.42, + "latex": "\\mathbf { \\rho } ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 340, + 549, + 489, + 549, + 489, + 580, + 340, + 580 + ], + "score": 0.41, + "latex": "i = \\mathrm { a r g m a x } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 701, + 539, + 804, + 539, + 804, + 581, + 701, + 581 + ], + "score": 0.33, + "latex": "( [ \\mathbf { h } _ { \\mathbf { v } _ { i } } ^ { ( t ) } , \\mathbf { z } ] )" + }, + { + "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": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1168.0, + 1129.0, + 1168.0, + 1129.0, + 1220.0, + 290.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 235.0, + 973.0, + 235.0, + 973.0, + 275.0, + 296.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 1579.0, + 1210.0, + 1579.0, + 1210.0, + 1615.0, + 489.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1849.0, + 1406.0, + 1849.0, + 1406.0, + 1885.0, + 294.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1880.0, + 1407.0, + 1880.0, + 1407.0, + 1918.0, + 294.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1911.0, + 842.0, + 1911.0, + 842.0, + 1945.0, + 292.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1911.0, + 1407.0, + 1911.0, + 1407.0, + 1945.0, + 898.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1343.0, + 1942.0, + 1343.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1942.0, + 1407.0, + 1942.0, + 1407.0, + 1977.0, + 1399.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 783.0, + 2003.0, + 783.0, + 2035.0, + 295.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 850.0, + 1406.0, + 850.0, + 1406.0, + 883.0, + 295.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 878.0, + 1406.0, + 878.0, + 1406.0, + 916.0, + 294.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 910.0, + 1407.0, + 910.0, + 1407.0, + 947.0, + 294.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 939.0, + 1407.0, + 939.0, + 1407.0, + 977.0, + 291.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 972.0, + 1408.0, + 972.0, + 1408.0, + 1006.0, + 295.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1002.0, + 471.0, + 1002.0, + 471.0, + 1036.0, + 294.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 1002.0, + 1406.0, + 1002.0, + 1406.0, + 1036.0, + 492.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1033.0, + 1404.0, + 1033.0, + 1404.0, + 1064.0, + 295.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1061.0, + 581.0, + 1061.0, + 581.0, + 1098.0, + 294.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1682.0, + 1405.0, + 1682.0, + 1405.0, + 1715.0, + 296.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1714.0, + 1149.0, + 1714.0, + 1149.0, + 1747.0, + 296.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 1714.0, + 1405.0, + 1714.0, + 1405.0, + 1747.0, + 1256.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1739.0, + 1406.0, + 1739.0, + 1406.0, + 1781.0, + 291.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1772.0, + 449.0, + 1772.0, + 449.0, + 1809.0, + 294.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 1772.0, + 1406.0, + 1772.0, + 1406.0, + 1809.0, + 526.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1803.0, + 402.0, + 1803.0, + 402.0, + 1837.0, + 294.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 270.0, + 274.0, + 294.0, + 274.0, + 294.0, + 318.0, + 270.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 274.0, + 862.0, + 274.0, + 862.0, + 318.0, + 400.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 270.0, + 309.0, + 295.0, + 309.0, + 295.0, + 349.0, + 270.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 309.0, + 727.0, + 309.0, + 727.0, + 349.0, + 376.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 270.0, + 340.0, + 295.0, + 340.0, + 295.0, + 377.0, + 270.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 340.0, + 566.0, + 340.0, + 566.0, + 377.0, + 363.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 268.0, + 369.0, + 297.0, + 369.0, + 297.0, + 415.0, + 268.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 369.0, + 598.0, + 369.0, + 598.0, + 415.0, + 469.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 369.0, + 970.0, + 369.0, + 970.0, + 415.0, + 798.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 369.0, + 1102.0, + 369.0, + 1102.0, + 415.0, + 1090.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 269.0, + 408.0, + 295.0, + 408.0, + 295.0, + 442.0, + 269.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 408.0, + 434.0, + 408.0, + 434.0, + 442.0, + 351.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 270.0, + 438.0, + 294.0, + 438.0, + 294.0, + 472.0, + 270.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 438.0, + 581.0, + 438.0, + 581.0, + 472.0, + 571.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 272.0, + 467.0, + 367.0, + 467.0, + 367.0, + 502.0, + 272.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 467.0, + 696.0, + 467.0, + 696.0, + 502.0, + 482.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 272.0, + 512.0, + 291.0, + 512.0, + 291.0, + 537.0, + 272.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 488.0, + 636.0, + 488.0, + 636.0, + 550.0, + 623.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 264.0, + 555.0, + 293.0, + 555.0, + 293.0, + 621.0, + 264.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 537.0, + 337.0, + 537.0, + 337.0, + 638.0, + 324.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 537.0, + 700.0, + 537.0, + 700.0, + 638.0, + 490.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 537.0, + 822.0, + 537.0, + 822.0, + 638.0, + 805.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 265.0, + 626.0, + 290.0, + 626.0, + 290.0, + 653.0, + 265.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 616.0, + 434.0, + 616.0, + 434.0, + 654.0, + 337.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 616.0, + 508.0, + 616.0, + 508.0, + 654.0, + 449.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 263.0, + 664.0, + 293.0, + 664.0, + 293.0, + 693.0, + 263.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 651.0, + 572.0, + 651.0, + 572.0, + 697.0, + 332.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 651.0, + 901.0, + 651.0, + 901.0, + 697.0, + 713.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 264.0, + 696.0, + 292.0, + 696.0, + 292.0, + 721.0, + 264.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 688.0, + 510.0, + 688.0, + 510.0, + 723.0, + 375.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 235.0, + 973.0, + 235.0, + 973.0, + 275.0, + 296.0, + 275.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1573, + 1404, + 1573, + 1404, + 1848, + 298, + 1848 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1343, + 1403, + 1343, + 1403, + 1558, + 298, + 1558 + ], + "score": 0.979 + }, + { + "category_id": 3, + "poly": [ + 316, + 231, + 1403, + 231, + 1403, + 1087, + 316, + 1087 + ], + "score": 0.975 + }, + { + "category_id": 4, + "poly": [ + 298, + 1116, + 1404, + 1116, + 1404, + 1208, + 298, + 1208 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 298, + 1972, + 1402, + 1972, + 1402, + 2034, + 298, + 2034 + ], + "score": 0.942 + }, + { + "category_id": 0, + "poly": [ + 299, + 1901, + 934, + 1901, + 934, + 1935, + 299, + 1935 + ], + "score": 0.918 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 814, + 76, + 814, + 104, + 300, + 104 + ], + "score": 0.88 + }, + { + "category_id": 0, + "poly": [ + 298, + 1273, + 979, + 1273, + 979, + 1306, + 298, + 1306 + ], + "score": 0.874 + }, + { + "category_id": 2, + "poly": [ + 836, + 2089, + 863, + 2089, + 863, + 2112, + 836, + 2112 + ], + "score": 0.849 + }, + { + "category_id": 13, + "poly": [ + 808, + 1695, + 871, + 1695, + 871, + 1728, + 808, + 1728 + ], + "score": 0.68, + "latex": "\\{ b , d \\}" + }, + { + "category_id": 13, + "poly": [ + 708, + 1695, + 872, + 1695, + 872, + 1728, + 708, + 1728 + ], + "score": 0.37, + "latex": "b b b b b b \\{ b , d \\}" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 233.0, + 659.0, + 233.0, + 659.0, + 264.0, + 314.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 233.0, + 821.0, + 233.0, + 821.0, + 263.0, + 673.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 233.0, + 1220.0, + 233.0, + 1220.0, + 263.0, + 876.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 233.0, + 1385.0, + 233.0, + 1385.0, + 263.0, + 1236.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 255.0, + 453.0, + 255.0, + 453.0, + 292.0, + 329.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 261.0, + 640.0, + 261.0, + 640.0, + 287.0, + 493.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 261.0, + 811.0, + 261.0, + 811.0, + 287.0, + 689.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 258.0, + 1014.0, + 258.0, + 1014.0, + 291.0, + 894.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 261.0, + 1200.0, + 261.0, + 1200.0, + 287.0, + 1053.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.0, + 260.0, + 1374.0, + 260.0, + 1374.0, + 288.0, + 1251.0, + 288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 283.0, + 678.0, + 283.0, + 678.0, + 305.0, + 648.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 283.0, + 1239.0, + 283.0, + 1239.0, + 307.0, + 1209.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 309.0, + 678.0, + 309.0, + 678.0, + 333.0, + 647.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 309.0, + 1239.0, + 309.0, + 1239.0, + 333.0, + 1207.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 337.0, + 678.0, + 337.0, + 678.0, + 359.0, + 647.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 337.0, + 1239.0, + 337.0, + 1239.0, + 359.0, + 1207.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 364.0, + 678.0, + 364.0, + 678.0, + 386.0, + 647.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 364.0, + 1239.0, + 364.0, + 1239.0, + 386.0, + 1207.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 390.0, + 677.0, + 390.0, + 677.0, + 414.0, + 646.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 389.0, + 1238.0, + 389.0, + 1238.0, + 414.0, + 1207.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 403.0, + 442.0, + 403.0, + 442.0, + 427.0, + 340.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 404.0, + 595.0, + 404.0, + 595.0, + 429.0, + 533.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 403.0, + 1003.0, + 403.0, + 1003.0, + 427.0, + 903.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 404.0, + 1154.0, + 404.0, + 1154.0, + 429.0, + 1092.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 431.0, + 704.0, + 431.0, + 704.0, + 447.0, + 689.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 431.0, + 727.0, + 431.0, + 727.0, + 447.0, + 710.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 431.0, + 749.0, + 431.0, + 749.0, + 447.0, + 733.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 431.0, + 772.0, + 431.0, + 772.0, + 446.0, + 754.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 431.0, + 795.0, + 431.0, + 795.0, + 447.0, + 778.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 431.0, + 816.0, + 431.0, + 816.0, + 447.0, + 800.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 432.0, + 837.0, + 432.0, + 837.0, + 444.0, + 827.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 431.0, + 1264.0, + 431.0, + 1264.0, + 447.0, + 1250.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.0, + 431.0, + 1289.0, + 431.0, + 1289.0, + 447.0, + 1271.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 431.0, + 1311.0, + 431.0, + 1311.0, + 447.0, + 1295.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 431.0, + 1333.0, + 431.0, + 1333.0, + 447.0, + 1317.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 430.0, + 1357.0, + 430.0, + 1357.0, + 447.0, + 1340.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 431.0, + 1378.0, + 431.0, + 1378.0, + 447.0, + 1362.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1389.0, + 431.0, + 1399.0, + 431.0, + 1399.0, + 444.0, + 1389.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 445.0, + 675.0, + 445.0, + 675.0, + 465.0, + 649.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 444.0, + 1239.0, + 444.0, + 1239.0, + 466.0, + 1209.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 470.0, + 677.0, + 470.0, + 677.0, + 493.0, + 647.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 470.0, + 1239.0, + 470.0, + 1239.0, + 493.0, + 1208.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 496.0, + 678.0, + 496.0, + 678.0, + 520.0, + 647.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 497.0, + 1239.0, + 497.0, + 1239.0, + 520.0, + 1207.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 523.0, + 678.0, + 523.0, + 678.0, + 547.0, + 647.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 523.0, + 1239.0, + 523.0, + 1239.0, + 547.0, + 1208.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 549.0, + 677.0, + 549.0, + 677.0, + 573.0, + 646.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 549.0, + 1239.0, + 549.0, + 1239.0, + 573.0, + 1207.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 563.0, + 440.0, + 563.0, + 440.0, + 588.0, + 339.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 563.0, + 594.0, + 563.0, + 594.0, + 588.0, + 532.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 574.0, + 688.0, + 574.0, + 688.0, + 613.0, + 643.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 589.0, + 728.0, + 589.0, + 728.0, + 609.0, + 709.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 591.0, + 749.0, + 591.0, + 749.0, + 608.0, + 733.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 592.0, + 772.0, + 592.0, + 772.0, + 607.0, + 756.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 591.0, + 795.0, + 591.0, + 795.0, + 608.0, + 779.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 592.0, + 816.0, + 592.0, + 816.0, + 607.0, + 800.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 593.0, + 836.0, + 593.0, + 836.0, + 605.0, + 827.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 559.0, + 1004.0, + 559.0, + 1004.0, + 591.0, + 900.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 566.0, + 1154.0, + 566.0, + 1154.0, + 587.0, + 1093.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 591.0, + 1264.0, + 591.0, + 1264.0, + 608.0, + 1250.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.0, + 588.0, + 1290.0, + 588.0, + 1290.0, + 609.0, + 1271.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 591.0, + 1311.0, + 591.0, + 1311.0, + 608.0, + 1295.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 591.0, + 1333.0, + 591.0, + 1333.0, + 608.0, + 1317.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 588.0, + 1358.0, + 588.0, + 1358.0, + 609.0, + 1339.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1363.0, + 591.0, + 1378.0, + 591.0, + 1378.0, + 608.0, + 1363.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1389.0, + 592.0, + 1399.0, + 592.0, + 1399.0, + 603.0, + 1389.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 603.0, + 678.0, + 603.0, + 678.0, + 625.0, + 648.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 603.0, + 1239.0, + 603.0, + 1239.0, + 625.0, + 1209.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 629.0, + 678.0, + 629.0, + 678.0, + 653.0, + 647.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 629.0, + 1239.0, + 629.0, + 1239.0, + 653.0, + 1208.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 657.0, + 678.0, + 657.0, + 678.0, + 679.0, + 647.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 657.0, + 1239.0, + 657.0, + 1239.0, + 679.0, + 1207.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 684.0, + 677.0, + 684.0, + 677.0, + 706.0, + 647.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 684.0, + 1239.0, + 684.0, + 1239.0, + 706.0, + 1207.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 710.0, + 677.0, + 710.0, + 677.0, + 734.0, + 647.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 709.0, + 1238.0, + 709.0, + 1238.0, + 734.0, + 1207.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 722.0, + 440.0, + 722.0, + 440.0, + 747.0, + 339.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 724.0, + 595.0, + 724.0, + 595.0, + 749.0, + 532.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 722.0, + 1002.0, + 722.0, + 1002.0, + 747.0, + 902.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 724.0, + 1155.0, + 724.0, + 1155.0, + 749.0, + 1092.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 737.0, + 679.0, + 737.0, + 679.0, + 760.0, + 647.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 750.0, + 684.0, + 750.0, + 684.0, + 769.0, + 663.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 751.0, + 704.0, + 751.0, + 704.0, + 767.0, + 689.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 749.0, + 728.0, + 749.0, + 728.0, + 769.0, + 709.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 751.0, + 749.0, + 751.0, + 749.0, + 767.0, + 733.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 751.0, + 772.0, + 751.0, + 772.0, + 767.0, + 754.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 751.0, + 816.0, + 751.0, + 816.0, + 767.0, + 799.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 752.0, + 836.0, + 752.0, + 836.0, + 764.0, + 827.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 751.0, + 1264.0, + 751.0, + 1264.0, + 767.0, + 1250.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 750.0, + 1289.0, + 750.0, + 1289.0, + 767.0, + 1272.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 751.0, + 1311.0, + 751.0, + 1311.0, + 767.0, + 1293.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1316.0, + 751.0, + 1333.0, + 751.0, + 1333.0, + 767.0, + 1316.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 749.0, + 1359.0, + 749.0, + 1359.0, + 769.0, + 1339.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 751.0, + 1379.0, + 751.0, + 1379.0, + 767.0, + 1362.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1390.0, + 754.0, + 1396.0, + 754.0, + 1396.0, + 760.0, + 1390.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 762.0, + 678.0, + 762.0, + 678.0, + 786.0, + 648.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 762.0, + 1238.0, + 762.0, + 1238.0, + 786.0, + 1209.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 788.0, + 679.0, + 788.0, + 679.0, + 815.0, + 647.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 788.0, + 1240.0, + 788.0, + 1240.0, + 815.0, + 1208.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 817.0, + 677.0, + 817.0, + 677.0, + 839.0, + 647.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 817.0, + 1239.0, + 817.0, + 1239.0, + 839.0, + 1207.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 843.0, + 677.0, + 843.0, + 677.0, + 867.0, + 647.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 843.0, + 1238.0, + 843.0, + 1238.0, + 867.0, + 1207.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 869.0, + 677.0, + 869.0, + 677.0, + 893.0, + 646.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 871.0, + 1238.0, + 871.0, + 1238.0, + 894.0, + 1207.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 883.0, + 442.0, + 883.0, + 442.0, + 908.0, + 340.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 886.0, + 592.0, + 886.0, + 592.0, + 907.0, + 533.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 898.0, + 679.0, + 898.0, + 679.0, + 920.0, + 647.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 883.0, + 1002.0, + 883.0, + 1002.0, + 908.0, + 902.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 886.0, + 1154.0, + 886.0, + 1154.0, + 907.0, + 1093.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 894.0, + 1248.0, + 894.0, + 1248.0, + 933.0, + 1203.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 912.0, + 681.0, + 912.0, + 681.0, + 927.0, + 664.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 914.0, + 702.0, + 914.0, + 702.0, + 925.0, + 691.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 909.0, + 730.0, + 909.0, + 730.0, + 929.0, + 709.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 910.0, + 749.0, + 910.0, + 749.0, + 927.0, + 733.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 912.0, + 772.0, + 912.0, + 772.0, + 927.0, + 756.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 910.0, + 795.0, + 910.0, + 795.0, + 927.0, + 778.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 912.0, + 816.0, + 912.0, + 816.0, + 927.0, + 799.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 913.0, + 837.0, + 913.0, + 837.0, + 925.0, + 827.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 913.0, + 1263.0, + 913.0, + 1263.0, + 925.0, + 1253.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 910.0, + 1289.0, + 910.0, + 1289.0, + 927.0, + 1272.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 910.0, + 1311.0, + 910.0, + 1311.0, + 927.0, + 1293.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 910.0, + 1333.0, + 910.0, + 1333.0, + 927.0, + 1317.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 910.0, + 1357.0, + 910.0, + 1357.0, + 927.0, + 1340.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 912.0, + 1380.0, + 912.0, + 1380.0, + 927.0, + 1362.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 923.0, + 678.0, + 923.0, + 678.0, + 947.0, + 648.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 923.0, + 1239.0, + 923.0, + 1239.0, + 947.0, + 1209.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 950.0, + 678.0, + 950.0, + 678.0, + 973.0, + 647.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 950.0, + 1239.0, + 950.0, + 1239.0, + 974.0, + 1207.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 976.0, + 678.0, + 976.0, + 678.0, + 999.0, + 647.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 976.0, + 1239.0, + 976.0, + 1239.0, + 999.0, + 1207.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1004.0, + 677.0, + 1004.0, + 677.0, + 1027.0, + 647.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 1004.0, + 1239.0, + 1004.0, + 1239.0, + 1027.0, + 1207.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1030.0, + 677.0, + 1030.0, + 677.0, + 1054.0, + 647.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 1030.0, + 1238.0, + 1030.0, + 1238.0, + 1054.0, + 1208.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 1044.0, + 442.0, + 1044.0, + 442.0, + 1067.0, + 339.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 1042.0, + 595.0, + 1042.0, + 595.0, + 1071.0, + 531.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 1044.0, + 1003.0, + 1044.0, + 1003.0, + 1067.0, + 903.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 1044.0, + 1155.0, + 1044.0, + 1155.0, + 1069.0, + 1092.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 1060.0, + 678.0, + 1060.0, + 678.0, + 1078.0, + 648.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 1056.0, + 1247.0, + 1056.0, + 1247.0, + 1091.0, + 1206.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 1071.0, + 681.0, + 1071.0, + 681.0, + 1087.0, + 667.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 1074.0, + 701.0, + 1074.0, + 701.0, + 1085.0, + 690.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 1071.0, + 727.0, + 1071.0, + 727.0, + 1087.0, + 711.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 1071.0, + 748.0, + 1071.0, + 748.0, + 1087.0, + 733.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 1071.0, + 772.0, + 1071.0, + 772.0, + 1086.0, + 756.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 1071.0, + 795.0, + 1071.0, + 795.0, + 1087.0, + 779.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 1071.0, + 816.0, + 1071.0, + 816.0, + 1087.0, + 799.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 1072.0, + 837.0, + 1072.0, + 837.0, + 1085.0, + 827.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 1074.0, + 1263.0, + 1074.0, + 1263.0, + 1085.0, + 1253.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1071.0, + 1289.0, + 1071.0, + 1289.0, + 1086.0, + 1274.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1296.0, + 1071.0, + 1311.0, + 1071.0, + 1311.0, + 1087.0, + 1296.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 1071.0, + 1333.0, + 1071.0, + 1333.0, + 1086.0, + 1317.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 1070.0, + 1357.0, + 1070.0, + 1357.0, + 1086.0, + 1340.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1363.0, + 1071.0, + 1379.0, + 1071.0, + 1379.0, + 1087.0, + 1363.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1389.0, + 1071.0, + 1399.0, + 1071.0, + 1399.0, + 1083.0, + 1389.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 415.5, + 680.0, + 415.5, + 680.0, + 446.5, + 652.0, + 446.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.75, + 417.0, + 1236.75, + 417.0, + 1236.75, + 447.0, + 1214.75, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.25, + 499.0, + 1098.25, + 499.0, + 1098.25, + 510.5, + 1078.25, + 510.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 575.5, + 1238.0, + 575.5, + 1238.0, + 607.0, + 1215.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 590.0, + 705.0, + 590.0, + 705.0, + 607.0, + 685.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 736.5, + 1238.0, + 736.5, + 1238.0, + 766.0, + 1215.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 749.5, + 791.0, + 749.5, + 791.0, + 766.5, + 782.0, + 766.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1116.0, + 1404.0, + 1116.0, + 1404.0, + 1150.0, + 294.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1144.0, + 1406.0, + 1144.0, + 1406.0, + 1181.0, + 293.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1178.0, + 689.0, + 1178.0, + 689.0, + 1210.0, + 293.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1897.0, + 938.0, + 1897.0, + 938.0, + 1940.0, + 294.0, + 1940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1268.0, + 982.0, + 1268.0, + 982.0, + 1312.0, + 295.0, + 1312.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, + 1571.0, + 1406.0, + 1571.0, + 1406.0, + 1610.0, + 295.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1602.0, + 1406.0, + 1602.0, + 1406.0, + 1639.0, + 293.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1634.0, + 1405.0, + 1634.0, + 1405.0, + 1670.0, + 294.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1664.0, + 1406.0, + 1664.0, + 1406.0, + 1700.0, + 294.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1691.0, + 707.0, + 1691.0, + 707.0, + 1735.0, + 293.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1691.0, + 1405.0, + 1691.0, + 1405.0, + 1735.0, + 873.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1724.0, + 1405.0, + 1724.0, + 1405.0, + 1761.0, + 293.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1756.0, + 1407.0, + 1756.0, + 1407.0, + 1792.0, + 292.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1785.0, + 1406.0, + 1785.0, + 1406.0, + 1822.0, + 293.0, + 1822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1816.0, + 980.0, + 1816.0, + 980.0, + 1852.0, + 295.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1343.0, + 1405.0, + 1343.0, + 1405.0, + 1378.0, + 294.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1372.0, + 1407.0, + 1372.0, + 1407.0, + 1411.0, + 292.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1405.0, + 1404.0, + 1405.0, + 1404.0, + 1437.0, + 294.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1436.0, + 1405.0, + 1436.0, + 1405.0, + 1470.0, + 294.0, + 1470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1465.0, + 1404.0, + 1465.0, + 1404.0, + 1500.0, + 293.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1496.0, + 1405.0, + 1496.0, + 1405.0, + 1530.0, + 296.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1526.0, + 1076.0, + 1526.0, + 1076.0, + 1562.0, + 294.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2007.0, + 296.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1999.0, + 1407.0, + 1999.0, + 1407.0, + 2042.0, + 293.0, + 2042.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1151, + 1404, + 1151, + 1404, + 1458, + 298, + 1458 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1473, + 1405, + 1473, + 1405, + 1810, + 297, + 1810 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 982, + 1404, + 982, + 1404, + 1136, + 298, + 1136 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 302, + 229, + 1395, + 229, + 1395, + 826, + 302, + 826 + ], + "score": 0.973 + }, + { + "category_id": 4, + "poly": [ + 298, + 860, + 1401, + 860, + 1401, + 922, + 298, + 922 + ], + "score": 0.923 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 814, + 76, + 814, + 104, + 299, + 104 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 321, + 2004, + 1368, + 2004, + 1368, + 2034, + 321, + 2034 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.863 + }, + { + "category_id": 13, + "poly": [ + 854, + 1657, + 874, + 1657, + 874, + 1684, + 854, + 1684 + ], + "score": 0.64, + "latex": "^ b" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 238.0, + 533.0, + 238.0, + 533.0, + 275.0, + 494.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 256.0, + 851.0, + 256.0, + 851.0, + 265.0, + 840.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 243.0, + 885.0, + 243.0, + 885.0, + 266.0, + 855.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 264.0, + 438.0, + 264.0, + 438.0, + 273.0, + 423.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 262.0, + 584.0, + 262.0, + 584.0, + 290.0, + 543.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 292.0, + 1127.0, + 292.0, + 1127.0, + 312.0, + 1103.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 328.0, + 723.0, + 328.0, + 723.0, + 354.0, + 684.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 331.0, + 791.0, + 331.0, + 791.0, + 365.0, + 764.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 338.0, + 1082.0, + 338.0, + 1082.0, + 356.0, + 1056.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 409.0, + 1290.0, + 409.0, + 1290.0, + 427.0, + 1266.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 427.0, + 438.0, + 427.0, + 438.0, + 444.0, + 414.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 422.0, + 1185.0, + 422.0, + 1185.0, + 459.0, + 1148.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1232.0, + 437.0, + 1265.0, + 437.0, + 1265.0, + 465.0, + 1232.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 469.0, + 610.0, + 469.0, + 610.0, + 500.0, + 355.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 469.0, + 978.0, + 469.0, + 978.0, + 500.0, + 721.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 469.0, + 1360.0, + 469.0, + 1360.0, + 500.0, + 1072.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 494.0, + 590.0, + 494.0, + 590.0, + 524.0, + 366.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 491.0, + 958.0, + 491.0, + 958.0, + 526.0, + 732.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 491.0, + 1327.0, + 491.0, + 1327.0, + 525.0, + 1102.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 535.0, + 535.0, + 535.0, + 535.0, + 575.0, + 495.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 533.0, + 819.0, + 533.0, + 819.0, + 560.0, + 672.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 538.0, + 891.0, + 538.0, + 891.0, + 571.0, + 851.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 542.0, + 1206.0, + 542.0, + 1206.0, + 563.0, + 1184.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 554.0, + 807.0, + 554.0, + 807.0, + 576.0, + 681.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 558.0, + 1211.0, + 558.0, + 1211.0, + 564.0, + 1205.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 619.0, + 491.0, + 619.0, + 491.0, + 641.0, + 471.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 611.0, + 1093.0, + 611.0, + 1093.0, + 622.0, + 1082.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 615.0, + 1256.0, + 615.0, + 1256.0, + 634.0, + 1236.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 639.0, + 789.0, + 639.0, + 789.0, + 662.0, + 768.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 655.0, + 637.0, + 655.0, + 637.0, + 677.0, + 592.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 688.0, + 1303.0, + 688.0, + 1303.0, + 697.0, + 1290.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 705.0, + 1162.0, + 705.0, + 1162.0, + 732.0, + 1137.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 730.0, + 435.0, + 730.0, + 435.0, + 743.0, + 415.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 727.0, + 657.0, + 727.0, + 657.0, + 750.0, + 513.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 722.0, + 1184.0, + 722.0, + 1184.0, + 759.0, + 1149.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 722.0, + 1392.0, + 722.0, + 1392.0, + 749.0, + 1246.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 744.0, + 650.0, + 744.0, + 650.0, + 771.0, + 522.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 770.0, + 610.0, + 770.0, + 610.0, + 798.0, + 354.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 770.0, + 978.0, + 770.0, + 978.0, + 798.0, + 722.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 771.0, + 1358.0, + 771.0, + 1358.0, + 801.0, + 1072.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 794.0, + 595.0, + 794.0, + 595.0, + 827.0, + 365.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 792.0, + 963.0, + 792.0, + 963.0, + 828.0, + 733.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 792.0, + 1326.0, + 792.0, + 1326.0, + 828.0, + 1100.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 439.0, + 279.0, + 456.0, + 279.0, + 456.0, + 315.0, + 439.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 294.0, + 617.0, + 294.0, + 617.0, + 320.5, + 565.0, + 320.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.75, + 303.0, + 1099.75, + 303.0, + 1099.75, + 326.0, + 1071.75, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.25, + 346.0, + 997.25, + 346.0, + 997.25, + 374.5, + 982.25, + 374.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 366.5, + 760.0, + 366.5, + 760.0, + 389.0, + 730.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 357.0, + 1369.0, + 357.0, + 1369.0, + 365.5, + 1348.0, + 365.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 403.5, + 1219.0, + 403.5, + 1219.0, + 422.5, + 1207.0, + 422.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 406.5, + 827.0, + 406.5, + 827.0, + 433.5, + 791.0, + 433.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 440.5, + 458.0, + 440.5, + 458.0, + 458.5, + 436.0, + 458.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 566.0, + 952.0, + 566.0, + 952.0, + 618.0, + 907.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 582.5, + 451.0, + 582.5, + 451.0, + 612.0, + 438.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.25, + 627.0, + 727.25, + 627.0, + 727.25, + 652.5, + 678.25, + 652.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 646.0, + 1004.0, + 646.0, + 1004.0, + 677.0, + 978.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 665.0, + 763.0, + 665.0, + 763.0, + 692.0, + 731.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 699.0, + 1221.0, + 699.0, + 1221.0, + 723.0, + 1195.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 710.0, + 830.0, + 710.0, + 830.0, + 733.5, + 789.0, + 733.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 709.0, + 1291.0, + 709.0, + 1291.0, + 724.0, + 1266.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.25, + 738.5, + 1383.25, + 738.5, + 1383.25, + 770.5, + 1231.25, + 770.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 858.0, + 1405.0, + 858.0, + 1405.0, + 894.0, + 293.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 892.0, + 616.0, + 892.0, + 616.0, + 924.0, + 296.0, + 924.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": [ + 333.0, + 2000.0, + 1370.0, + 2000.0, + 1370.0, + 2038.0, + 333.0, + 2038.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, + 1153.0, + 1405.0, + 1153.0, + 1405.0, + 1185.0, + 294.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1184.0, + 1405.0, + 1184.0, + 1405.0, + 1215.0, + 296.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1213.0, + 1408.0, + 1213.0, + 1408.0, + 1249.0, + 294.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1243.0, + 1408.0, + 1243.0, + 1408.0, + 1279.0, + 294.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1273.0, + 1408.0, + 1273.0, + 1408.0, + 1312.0, + 293.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1305.0, + 1406.0, + 1305.0, + 1406.0, + 1340.0, + 296.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1336.0, + 1405.0, + 1336.0, + 1405.0, + 1368.0, + 296.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1366.0, + 1408.0, + 1366.0, + 1408.0, + 1401.0, + 294.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1396.0, + 1406.0, + 1396.0, + 1406.0, + 1432.0, + 294.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1428.0, + 861.0, + 1428.0, + 861.0, + 1460.0, + 294.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1471.0, + 1405.0, + 1471.0, + 1405.0, + 1509.0, + 294.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1504.0, + 1405.0, + 1504.0, + 1405.0, + 1538.0, + 295.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1533.0, + 1405.0, + 1533.0, + 1405.0, + 1571.0, + 294.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1562.0, + 1406.0, + 1562.0, + 1406.0, + 1604.0, + 292.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1594.0, + 1406.0, + 1594.0, + 1406.0, + 1633.0, + 294.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1624.0, + 1407.0, + 1624.0, + 1407.0, + 1661.0, + 291.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1655.0, + 853.0, + 1655.0, + 853.0, + 1692.0, + 291.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1655.0, + 1406.0, + 1655.0, + 1406.0, + 1692.0, + 875.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1686.0, + 1406.0, + 1686.0, + 1406.0, + 1722.0, + 292.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1713.0, + 1406.0, + 1713.0, + 1406.0, + 1753.0, + 292.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1745.0, + 1405.0, + 1745.0, + 1405.0, + 1786.0, + 292.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1778.0, + 939.0, + 1778.0, + 939.0, + 1813.0, + 295.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 984.0, + 1402.0, + 984.0, + 1402.0, + 1017.0, + 296.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1013.0, + 1406.0, + 1013.0, + 1406.0, + 1048.0, + 293.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1046.0, + 1404.0, + 1046.0, + 1404.0, + 1079.0, + 294.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1072.0, + 1405.0, + 1072.0, + 1405.0, + 1111.0, + 293.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1105.0, + 1220.0, + 1105.0, + 1220.0, + 1138.0, + 296.0, + 1138.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 491, + 823, + 1204, + 823, + 1204, + 1082, + 491, + 1082 + ], + "score": 0.981, + "html": "
BoxSphereCylinderCapsuleEllipsoid
Blue96.7595.0094.7595.7596.50
RedWhite94.2590.0094.2596.7591.2595.7596.00
99.0096.0095.7597.25
GrayYellow93.5098.7591.0094.7591.50
94.7595.7592.0091.50
Green95.0095.0095.0095.0094.50
CyanMagentaCyan92.0095.0097.5095.00
95.2596.0097.0096.0095.75
" + }, + { + "category_id": 5, + "poly": [ + 371, + 303, + 1321, + 303, + 1321, + 563, + 371, + 563 + ], + "score": 0.98, + "html": "
BoxSphereCylinderCapsuleEllipsoid
Blue Redeeeeeee{e,ee}eeeeeeeeeeee{e,ed}eeee{e,ed}eee{e,a}
Whiteee{e,a} bbbbbe,eae{e,a}b,baa,c
bb e,eabbb{b,d}bb{b,d}bbb{d.c}
Grayeeeee{e,ec}ee{e,a} b{c,d}e,ab,d
Yellowbb{c.d}eeee{e,a}eeeee{e,a}a,ca,e
Greeneeeeee{e,a}eee{e,a}ee{e,a}
Cyaneeeeeeeeea,a×20eeeeee{e,a}eeeeeee{e,ea}eeeee{e,a}eeeea
Magentabbb{b,d}c,dbb{b,d}bbb{c.a}
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1581, + 1406, + 1581, + 1406, + 1736, + 298, + 1736 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1206, + 1404, + 1206, + 1404, + 1360, + 298, + 1360 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1375, + 1405, + 1375, + 1405, + 1468, + 298, + 1468 + ], + "score": 0.975 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.899 + }, + { + "category_id": 0, + "poly": [ + 301, + 1515, + 1249, + 1515, + 1249, + 1548, + 301, + 1548 + ], + "score": 0.866 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2113, + 836, + 2113 + ], + "score": 0.845 + }, + { + "category_id": 6, + "poly": [ + 292, + 748, + 1400, + 748, + 1400, + 783, + 292, + 783 + ], + "score": 0.814 + }, + { + "category_id": 6, + "poly": [ + 294, + 228, + 1055, + 228, + 1055, + 263, + 294, + 263 + ], + "score": 0.745 + }, + { + "category_id": 6, + "poly": [ + 298, + 584, + 1402, + 584, + 1402, + 677, + 298, + 677 + ], + "score": 0.52 + }, + { + "category_id": 6, + "poly": [ + 296, + 1105, + 1401, + 1105, + 1401, + 1167, + 296, + 1167 + ], + "score": 0.474 + }, + { + "category_id": 0, + "poly": [ + 294, + 228, + 1055, + 228, + 1055, + 263, + 294, + 263 + ], + "score": 0.194 + }, + { + "category_id": 13, + "poly": [ + 857, + 1298, + 946, + 1298, + 946, + 1329, + 857, + 1329 + ], + "score": 0.88, + "latex": "9 4 . 7 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 366, + 1269, + 474, + 1269, + 474, + 1299, + 366, + 1299 + ], + "score": 0.86, + "latex": "( 4 0 \\times 4 0 )" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1514.0, + 1255.0, + 1514.0, + 1255.0, + 1552.0, + 294.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2122.0, + 831.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 746.0, + 1406.0, + 746.0, + 1406.0, + 785.0, + 294.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 223.0, + 1059.0, + 223.0, + 1059.0, + 269.0, + 291.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 581.0, + 1404.0, + 581.0, + 1404.0, + 620.0, + 293.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 615.0, + 1404.0, + 615.0, + 1404.0, + 649.0, + 294.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 642.0, + 455.0, + 642.0, + 455.0, + 679.0, + 294.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1102.0, + 1405.0, + 1102.0, + 1405.0, + 1141.0, + 294.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1132.0, + 614.0, + 1132.0, + 614.0, + 1172.0, + 294.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 223.0, + 1059.0, + 223.0, + 1059.0, + 269.0, + 291.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1581.0, + 1406.0, + 1581.0, + 1406.0, + 1619.0, + 293.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1611.0, + 1408.0, + 1611.0, + 1408.0, + 1649.0, + 293.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1640.0, + 1408.0, + 1640.0, + 1408.0, + 1680.0, + 293.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1666.0, + 1407.0, + 1666.0, + 1407.0, + 1714.0, + 292.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1702.0, + 992.0, + 1702.0, + 992.0, + 1741.0, + 293.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1208.0, + 1405.0, + 1208.0, + 1405.0, + 1239.0, + 293.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1239.0, + 1405.0, + 1239.0, + 1405.0, + 1272.0, + 294.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1267.0, + 365.0, + 1267.0, + 365.0, + 1305.0, + 292.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 1267.0, + 1406.0, + 1267.0, + 1406.0, + 1305.0, + 475.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1296.0, + 856.0, + 1296.0, + 856.0, + 1337.0, + 293.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 1296.0, + 1406.0, + 1296.0, + 1406.0, + 1337.0, + 947.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1329.0, + 799.0, + 1329.0, + 799.0, + 1362.0, + 294.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1372.0, + 1405.0, + 1372.0, + 1405.0, + 1412.0, + 292.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1407.0, + 1405.0, + 1407.0, + 1405.0, + 1441.0, + 296.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1435.0, + 1378.0, + 1435.0, + 1378.0, + 1475.0, + 293.0, + 1475.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/vlm/dev/17RDXeF-skZ/0.png b/vlm/dev/17RDXeF-skZ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..a79da00e5c2ab5229360dd83983efee33dd2db18 --- /dev/null +++ b/vlm/dev/17RDXeF-skZ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d99f4907c4c9ad3e576fbe13e88a7bceb46dc4156e346806fe2eea75b21b40a +size 494374 diff --git a/vlm/dev/17RDXeF-skZ/1.png b/vlm/dev/17RDXeF-skZ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..74b9054366c4490840f5e3b5493aa0edb580b2f2 --- /dev/null +++ b/vlm/dev/17RDXeF-skZ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af4a03da330f60539783326d446485ef2d89765409c5b09d32ec31548d363283 +size 602746 diff --git a/vlm/dev/17RDXeF-skZ/10.png b/vlm/dev/17RDXeF-skZ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..7792fbfcf7e0b07f235ed7f862145b0d00e4b0e7 --- /dev/null +++ b/vlm/dev/17RDXeF-skZ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f52c470c7e2918cd591517a6bf847b8280b4af5b1823736af9f16822f2a64b46 +size 542067 diff --git a/vlm/dev/17RDXeF-skZ/11.png b/vlm/dev/17RDXeF-skZ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..4b8692a7eaceca82d451662741d1320495f56760 --- /dev/null +++ b/vlm/dev/17RDXeF-skZ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:661f8c60580dfa7dae81b45ef88eb8131188a845d500508a49c8b75205276e07 +size 539849 diff --git a/vlm/dev/17RDXeF-skZ/12.png b/vlm/dev/17RDXeF-skZ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..4195eeca1f94c3fe2d254087d5445d3f1028fd98 --- /dev/null +++ b/vlm/dev/17RDXeF-skZ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:771067dadc0ba3cc7abd6a4f476e7ff50d1688f2a4fbd92d85f934fe3623da79 +size 622353 diff --git a/vlm/dev/17RDXeF-skZ/13.png b/vlm/dev/17RDXeF-skZ/13.png new file mode 100644 index 0000000000000000000000000000000000000000..8244e79ca1c8bf3f5e50e4827cc56b64af24d5b3 --- /dev/null +++ b/vlm/dev/17RDXeF-skZ/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c00c69c6b0f1b6e2596e6aa7af890b45163d58a61edd862114562caa80765f4b +size 190908 diff --git a/vlm/dev/17RDXeF-skZ/2.png b/vlm/dev/17RDXeF-skZ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..cb6d4f3ef29e81c959fed48a1a402a33bcebd135 --- /dev/null +++ b/vlm/dev/17RDXeF-skZ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2799efe986d3b0e1daacf37e5fbb4d02d4b08946a8f89c5b3228067fa5184831 +size 500451 diff --git a/vlm/dev/17RDXeF-skZ/3.png b/vlm/dev/17RDXeF-skZ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..04aa8b5ebce91a52b8870c1888c3bf00067c5f27 --- /dev/null +++ b/vlm/dev/17RDXeF-skZ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fc6d83492b2da1688cb7752378be7d2aa091ae6717d2d334c82b2290195d034 +size 547335 diff --git a/vlm/dev/17RDXeF-skZ/4.png b/vlm/dev/17RDXeF-skZ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..241d789936cdc2573c9217f3f62e8da55d709b8f --- /dev/null +++ b/vlm/dev/17RDXeF-skZ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9934f799afbe9b91209b3d04a9b67744f9ef4eda14b87ebab99f7f88ded6a9d +size 492451 diff --git a/vlm/dev/17RDXeF-skZ/5.png b/vlm/dev/17RDXeF-skZ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..38cf082b969e6d3984b7fe555f2623a9bad9bcfa --- /dev/null +++ b/vlm/dev/17RDXeF-skZ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6751282fdbc33c2ee89a9d363b12dd87b6553b9798ff3e3686fca39752a45a45 +size 628401 diff --git a/vlm/dev/17RDXeF-skZ/6.png b/vlm/dev/17RDXeF-skZ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..cbf61dd29f8305e4e6ec4b7f6a40374bcdf1ab39 --- /dev/null +++ b/vlm/dev/17RDXeF-skZ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a2c144a027c505d2010907e3e868241414cd03d7594d4b1bf1a5bfad237e96b +size 492309 diff --git a/vlm/dev/17RDXeF-skZ/7.png b/vlm/dev/17RDXeF-skZ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f878df790da1917d49aa403664f62f48ed69e18f --- /dev/null +++ b/vlm/dev/17RDXeF-skZ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d9643f6b7eebb0454280ca8f2829d9f1a094da4f06d93629197b23dcdfb8bf6 +size 475742 diff --git a/vlm/dev/17RDXeF-skZ/8.png b/vlm/dev/17RDXeF-skZ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..4e299de07782544646a4c0c70163110b31f8202a --- /dev/null +++ b/vlm/dev/17RDXeF-skZ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:974bbbd1abb8b690a95cc367963501e377214afb45f33d73072b2ea0be9d4c95 +size 481080 diff --git a/vlm/dev/17RDXeF-skZ/9.png b/vlm/dev/17RDXeF-skZ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..d455e09f1d013a4749ce33985364b2b8403a68a2 --- /dev/null +++ b/vlm/dev/17RDXeF-skZ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dad1d598ad7f765f6e665d4714a9fc893bb49d910ccb931e3f7c23ffb6fd11eb +size 462031 diff --git a/vlm/dev/5Xc1ecxO1h/0.png b/vlm/dev/5Xc1ecxO1h/0.png new file mode 100644 index 0000000000000000000000000000000000000000..fb90045bddf45370f6dc7781be712fc3f699ddb1 --- /dev/null +++ b/vlm/dev/5Xc1ecxO1h/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73df55eac03b67460579d7e7616a8dc39c799d4d07add7bff96965c7445b14ac +size 446018 diff --git a/vlm/dev/5Xc1ecxO1h/1.png b/vlm/dev/5Xc1ecxO1h/1.png new file mode 100644 index 0000000000000000000000000000000000000000..11f8bbe4aa7c02082a4034cd4c5141c43284fb19 --- /dev/null +++ b/vlm/dev/5Xc1ecxO1h/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ef98911d61867e72cb94e1a83922331f1c7fd58d76fbc86bbdac3a5553aa883 +size 512137 diff --git a/vlm/dev/5Xc1ecxO1h/10.png b/vlm/dev/5Xc1ecxO1h/10.png new file mode 100644 index 0000000000000000000000000000000000000000..8255384d4498339c9c81d7a2e9aa15b94f232c47 --- /dev/null +++ b/vlm/dev/5Xc1ecxO1h/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93b42e4865e696e06f9adfd64601a1a898c74139acb6780e15cd9e8d391df9f6 +size 499635 diff --git a/vlm/dev/5Xc1ecxO1h/11.png b/vlm/dev/5Xc1ecxO1h/11.png new file mode 100644 index 0000000000000000000000000000000000000000..09e7c4b438f9793ed249ef9c4a1088ca71aa8da1 --- /dev/null +++ b/vlm/dev/5Xc1ecxO1h/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76308489f1056d2874e0aa6b8591005700d41ca82fa52b22d1a0f5aaa2f27964 +size 311336 diff --git a/vlm/dev/5Xc1ecxO1h/12.png b/vlm/dev/5Xc1ecxO1h/12.png new file mode 100644 index 0000000000000000000000000000000000000000..70b4febfbc0d96533e976f812aae510dc6178221 --- /dev/null +++ b/vlm/dev/5Xc1ecxO1h/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed1565afeef1163df59c44b7aa80d5e61aa74a8f346d99d61af5860aa56332ea +size 363158 diff --git a/vlm/dev/5Xc1ecxO1h/13.png b/vlm/dev/5Xc1ecxO1h/13.png new file mode 100644 index 0000000000000000000000000000000000000000..ee7b89714169569cc5bf6157e8c4b01324ed08c2 --- /dev/null +++ b/vlm/dev/5Xc1ecxO1h/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8960cc734b28775137a615793e63dab1341c785ae0c499ef8c87be40d5dd57af +size 477921 diff --git a/vlm/dev/5Xc1ecxO1h/2.png b/vlm/dev/5Xc1ecxO1h/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7a6885241cfb3cdd91429e41ce67eae146d72af3 --- /dev/null +++ b/vlm/dev/5Xc1ecxO1h/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d97c7bcc726459d71e27aa351f6c91a56317bc4a54e9516e8992ff1387eb211 +size 646070 diff --git a/vlm/dev/5Xc1ecxO1h/3.png b/vlm/dev/5Xc1ecxO1h/3.png new file mode 100644 index 0000000000000000000000000000000000000000..f4c98b56606b480024b2f6067ac3c1e43efd04cf --- /dev/null +++ b/vlm/dev/5Xc1ecxO1h/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cb26548583ea7c74dc939ee4662ac313ecf324c57c0070684ecff6a6525bc90 +size 607910 diff --git a/vlm/dev/5Xc1ecxO1h/4.png b/vlm/dev/5Xc1ecxO1h/4.png new file mode 100644 index 0000000000000000000000000000000000000000..6853af611d11affcf9f8eaa84a3ae6b8f7090756 --- /dev/null +++ b/vlm/dev/5Xc1ecxO1h/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:419441833669c3b90c4b66708e4ed8d0b5b71d0beac737e5cfcb732058ebe980 +size 524529 diff --git a/vlm/dev/5Xc1ecxO1h/5.png b/vlm/dev/5Xc1ecxO1h/5.png new file mode 100644 index 0000000000000000000000000000000000000000..801e814dfab8d5dea21244c72afadf6aeb6dfee8 --- /dev/null +++ b/vlm/dev/5Xc1ecxO1h/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9d51dd076a9c5dc0a35169e257d90cc583d75e67259e13543b40d370ea51ba0 +size 578354 diff --git a/vlm/dev/5Xc1ecxO1h/6.png b/vlm/dev/5Xc1ecxO1h/6.png new file mode 100644 index 0000000000000000000000000000000000000000..c178f45602f718f8cfaaa51b48c837549b4ca206 --- /dev/null +++ b/vlm/dev/5Xc1ecxO1h/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0e340202b3d5b71141e3674761743c4706f063d9813314cd2083872b32b2050 +size 553618 diff --git a/vlm/dev/5Xc1ecxO1h/7.png b/vlm/dev/5Xc1ecxO1h/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c1108503a4ee925256b15fdab16ec8b5dffe3616 --- /dev/null +++ b/vlm/dev/5Xc1ecxO1h/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6b0c6ed4c78eb405485dbbdbc981bd04e8ed3aff7867dfc9202482cd504e257 +size 553339 diff --git a/vlm/dev/5Xc1ecxO1h/8.png b/vlm/dev/5Xc1ecxO1h/8.png new file mode 100644 index 0000000000000000000000000000000000000000..227a543d8da00955b5b8b79b0f1f2b5b0c4fad95 --- /dev/null +++ b/vlm/dev/5Xc1ecxO1h/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3651affc363f46308fd760a022bff0bc8fdf330e784784964ca33b7cc51ba514 +size 587113 diff --git a/vlm/dev/5Xc1ecxO1h/9.png b/vlm/dev/5Xc1ecxO1h/9.png new file mode 100644 index 0000000000000000000000000000000000000000..0d437bc580103d841c37824a582c4657b923bc70 --- /dev/null +++ b/vlm/dev/5Xc1ecxO1h/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a106d566482a6997af6d68885d1d2ea93ba9c70595d87081f4b070031365c9c3 +size 493946 diff --git a/vlm/dev/6Dz7RiRiMFd/0.png b/vlm/dev/6Dz7RiRiMFd/0.png new file mode 100644 index 0000000000000000000000000000000000000000..bf393750343109fa643161423230dc1531da70a1 --- /dev/null +++ b/vlm/dev/6Dz7RiRiMFd/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:147e2e5397bcdc57a8eef34a703565ea8d6ab6deb8b8a03785f998de9c07049d +size 488372 diff --git a/vlm/dev/6Dz7RiRiMFd/1.png b/vlm/dev/6Dz7RiRiMFd/1.png new file mode 100644 index 0000000000000000000000000000000000000000..dc8d51c59ead35560d4219da5e06a71529857e23 --- /dev/null +++ b/vlm/dev/6Dz7RiRiMFd/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f72d917b06ef4999a9db5656aed496352f2be8342b17808ad56998075e24564 +size 542723 diff --git a/vlm/dev/6Dz7RiRiMFd/10.png b/vlm/dev/6Dz7RiRiMFd/10.png new file mode 100644 index 0000000000000000000000000000000000000000..b7abf3aef7cb72b3c6d99851a625359a21f3b670 --- /dev/null +++ b/vlm/dev/6Dz7RiRiMFd/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fd3c714f73725ad9f6d7f44277d7cfde6e1dd552b36c82c5efdfa69fa2d8e0b +size 550534 diff --git a/vlm/dev/6Dz7RiRiMFd/11.png b/vlm/dev/6Dz7RiRiMFd/11.png new file mode 100644 index 0000000000000000000000000000000000000000..bf3007a62870d74fb80af51b898c9cf83c753b9b --- /dev/null +++ b/vlm/dev/6Dz7RiRiMFd/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b257c08ab3e5dfca7f0ac89b5d115b23d51e1ca6873e5d0ce8595e8fd2e76f43 +size 540195 diff --git a/vlm/dev/6Dz7RiRiMFd/12.png b/vlm/dev/6Dz7RiRiMFd/12.png new file mode 100644 index 0000000000000000000000000000000000000000..995fe28f22395fbea8a388d6adb5c27a8139a15e --- /dev/null +++ b/vlm/dev/6Dz7RiRiMFd/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0846c84715532225dae5a346de5bd113c6af506491066de16243c037ac9950e +size 561921 diff --git a/vlm/dev/6Dz7RiRiMFd/13.png b/vlm/dev/6Dz7RiRiMFd/13.png new file mode 100644 index 0000000000000000000000000000000000000000..2cfd9b31a0681c65bc1690bcd228787f2cea41db --- /dev/null +++ b/vlm/dev/6Dz7RiRiMFd/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d853a2c32322ff2aef68195e5f055a7040ad326c2c4c804220b8e55a5642788f +size 465766 diff --git a/vlm/dev/6Dz7RiRiMFd/14.png b/vlm/dev/6Dz7RiRiMFd/14.png new file mode 100644 index 0000000000000000000000000000000000000000..b2f5e00368318d30f3286fba0bbf9aeacdde2024 --- /dev/null +++ b/vlm/dev/6Dz7RiRiMFd/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e18ec37d444dd609125a65bd585af749a809bfa84814ec0d13d88387ee88d39 +size 524894 diff --git a/vlm/dev/6Dz7RiRiMFd/15.png b/vlm/dev/6Dz7RiRiMFd/15.png new file mode 100644 index 0000000000000000000000000000000000000000..ca371c0afa418434c3b5e894c8fe55ab968aac6d --- /dev/null +++ b/vlm/dev/6Dz7RiRiMFd/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:445620097a35b5f3bfd665e49e0894fcd02fdf7ccd435c075e2028e4ef09c355 +size 244748 diff --git a/vlm/dev/6Dz7RiRiMFd/2.png b/vlm/dev/6Dz7RiRiMFd/2.png new file mode 100644 index 0000000000000000000000000000000000000000..34b7c0e76b6f5e2dcb69084046ed1b9b9e5d07f9 --- /dev/null +++ b/vlm/dev/6Dz7RiRiMFd/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b7eb16ff05cfd6a1451fcfca6c02b235edf5af5c9145a5e5a57f1b04b36b09f +size 493897 diff --git a/vlm/dev/6Dz7RiRiMFd/3.png b/vlm/dev/6Dz7RiRiMFd/3.png new file mode 100644 index 0000000000000000000000000000000000000000..226d30076b9aba5deb73f22c9abb23d2f1b8bc15 --- /dev/null +++ b/vlm/dev/6Dz7RiRiMFd/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:752a806a3b462ccfe349f7f0270dfed0f34d085fb13459d25c9e6bad16cbd763 +size 530546 diff --git a/vlm/dev/6Dz7RiRiMFd/4.png b/vlm/dev/6Dz7RiRiMFd/4.png new file mode 100644 index 0000000000000000000000000000000000000000..f06869e067a2112c259db7b394ee7719051756dd --- /dev/null +++ b/vlm/dev/6Dz7RiRiMFd/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a880fe503108fdcdb48e0c7f15b7062255356e15c8d05cbdacaccd19dde6c6c +size 501451 diff --git a/vlm/dev/6Dz7RiRiMFd/5.png b/vlm/dev/6Dz7RiRiMFd/5.png new file mode 100644 index 0000000000000000000000000000000000000000..3c748a9519290603184ae323cbc1d2a5408b34db --- /dev/null +++ b/vlm/dev/6Dz7RiRiMFd/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7c3a7f0e4942e53488286c58e916f356cdf0ce5a2e608bae74b552c4651a4b0 +size 555460 diff --git a/vlm/dev/6Dz7RiRiMFd/6.png b/vlm/dev/6Dz7RiRiMFd/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d9fb864b4fec6c09d46fb8e9f608bd26dccfcd58 --- /dev/null +++ b/vlm/dev/6Dz7RiRiMFd/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f6fec86e5f9e0180a55871cfc689bdbc4f5ef1d9dfd655d25922f660648f67b +size 499965 diff --git a/vlm/dev/6Dz7RiRiMFd/7.png b/vlm/dev/6Dz7RiRiMFd/7.png new file mode 100644 index 0000000000000000000000000000000000000000..fc8d3dd48eacb7dade0a50dd813d6df909baed5d --- /dev/null +++ b/vlm/dev/6Dz7RiRiMFd/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:330c4508b746f0abd884ee0b42ea33fbd247581c471d5fc22afab282414cfbd0 +size 440014 diff --git a/vlm/dev/6Dz7RiRiMFd/8.png b/vlm/dev/6Dz7RiRiMFd/8.png new file mode 100644 index 0000000000000000000000000000000000000000..0615e55e4dad31ac85b91ef25624f9bed6a2fc8c --- /dev/null +++ b/vlm/dev/6Dz7RiRiMFd/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:909f2e4e9668bc62ece86325a8be71bb81fc488334e176ecef4868eaf7437264 +size 433885 diff --git a/vlm/dev/6Dz7RiRiMFd/9.png b/vlm/dev/6Dz7RiRiMFd/9.png new file mode 100644 index 0000000000000000000000000000000000000000..def358513fe397c5feda07030384024d75f326b6 --- /dev/null +++ b/vlm/dev/6Dz7RiRiMFd/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58d96ed1179d3d1804693b5dce0dbd1b4c422ddeb071537c3f14a201047349fa +size 582066 diff --git a/vlm/dev/E0zOKxQsZhN/0.png b/vlm/dev/E0zOKxQsZhN/0.png new file mode 100644 index 0000000000000000000000000000000000000000..325f65052c8ac87345d064b21d71f8c33befb097 --- /dev/null +++ b/vlm/dev/E0zOKxQsZhN/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:043eac88c0283c0611d7fedb1f3b27cd91d5a5b074b0304d11cc909c3073b1da +size 550728 diff --git a/vlm/dev/E0zOKxQsZhN/1.png b/vlm/dev/E0zOKxQsZhN/1.png new file mode 100644 index 0000000000000000000000000000000000000000..a209ef70d8e434a9c58037ecd71fac8470544ac9 --- /dev/null +++ b/vlm/dev/E0zOKxQsZhN/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:940ab756d40f08081af75e10ef702009c37b89c9c941cba907b115925f33de8c +size 671591 diff --git a/vlm/dev/E0zOKxQsZhN/11.png b/vlm/dev/E0zOKxQsZhN/11.png new file mode 100644 index 0000000000000000000000000000000000000000..1f5a012208dc1d1702238a2eea1ae15f8217249b --- /dev/null +++ b/vlm/dev/E0zOKxQsZhN/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ce124ae50cfe28d17c930137258bc7e41a1ae7fba509a3332a70bce7be3c311 +size 564871 diff --git a/vlm/dev/E0zOKxQsZhN/12.png b/vlm/dev/E0zOKxQsZhN/12.png new file mode 100644 index 0000000000000000000000000000000000000000..548feefbf538dc4441a4cff7834ab887995f1b88 --- /dev/null +++ b/vlm/dev/E0zOKxQsZhN/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13d297fc7de371cbeb8beae34f4c0ad63cf016d1ad2fc1e0fa5faa8638538261 +size 572839 diff --git a/vlm/dev/E0zOKxQsZhN/13.png b/vlm/dev/E0zOKxQsZhN/13.png new file mode 100644 index 0000000000000000000000000000000000000000..2a45e44ef04da3601f8f064f9ce7ed93b1653a30 --- /dev/null +++ b/vlm/dev/E0zOKxQsZhN/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:063a6c20cc3a56671b73b1705757e39505311d3204c08bbfa0344942df5c6d9d +size 538281 diff --git a/vlm/dev/E0zOKxQsZhN/14.png b/vlm/dev/E0zOKxQsZhN/14.png new file mode 100644 index 0000000000000000000000000000000000000000..a565ca979065f45e7b3f430400ad296143a4fd9a --- /dev/null +++ b/vlm/dev/E0zOKxQsZhN/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d22ea09bb9c37c352c1e8ab3dfca628ef31a8fcd5027bc417969ddf7a366f05 +size 535486 diff --git a/vlm/dev/E0zOKxQsZhN/15.png b/vlm/dev/E0zOKxQsZhN/15.png new file mode 100644 index 0000000000000000000000000000000000000000..c47d86b58ccda08083920517f4efc6525fdafee9 --- /dev/null +++ b/vlm/dev/E0zOKxQsZhN/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1c4a6164a6033107acf25be05fc13bcdc6d0e9f8630ef8b6f1d865b06cb3130 +size 525366 diff --git a/vlm/dev/E0zOKxQsZhN/16.png b/vlm/dev/E0zOKxQsZhN/16.png new file mode 100644 index 0000000000000000000000000000000000000000..43451d8b0aa3f81bd4fae0c6fb177f78a38909a8 --- /dev/null +++ b/vlm/dev/E0zOKxQsZhN/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83041ae31bdb8ce335a9f81fe3b40458070f931c699fa016fbce5c7b116986a3 +size 424470 diff --git a/vlm/dev/E0zOKxQsZhN/18.png b/vlm/dev/E0zOKxQsZhN/18.png new file mode 100644 index 0000000000000000000000000000000000000000..2354f6ac0cc2109216b97fc023eb9c7eadfd558e --- /dev/null +++ b/vlm/dev/E0zOKxQsZhN/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a29b6b6aa163f95f7aaae056a8e45e0d4c52270ce602c8707558537f3e9c4f06 +size 617247 diff --git a/vlm/dev/E0zOKxQsZhN/19.png b/vlm/dev/E0zOKxQsZhN/19.png new file mode 100644 index 0000000000000000000000000000000000000000..158de2e19fe6706864bdeca9aef4c7c199adaf32 --- /dev/null +++ b/vlm/dev/E0zOKxQsZhN/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3df1fd046413382ffb4a65defeb19edb3c7ea4d541ea7fdb3655020d79ab3c06 +size 469750 diff --git a/vlm/dev/E0zOKxQsZhN/20.png b/vlm/dev/E0zOKxQsZhN/20.png new file mode 100644 index 0000000000000000000000000000000000000000..eeb13262eaf261d74da23b94aa00160bee7b8ab4 --- /dev/null +++ b/vlm/dev/E0zOKxQsZhN/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7e674b2b4e07053751e917a7547212046358e3ce957debb336932ff422a70fb +size 304041 diff --git a/vlm/dev/E0zOKxQsZhN/22.png b/vlm/dev/E0zOKxQsZhN/22.png new file mode 100644 index 0000000000000000000000000000000000000000..94fc949afed8755b27069160eb385cfa9a91c473 --- /dev/null +++ b/vlm/dev/E0zOKxQsZhN/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccbdb75426db44c7696e103856752ccaeec30fb6c5ab26015d52ca925b84d133 +size 575699 diff --git a/vlm/dev/E0zOKxQsZhN/25.png b/vlm/dev/E0zOKxQsZhN/25.png new file mode 100644 index 0000000000000000000000000000000000000000..e183e6069cb88b07ab37ea970359fda04468cd33 --- /dev/null +++ b/vlm/dev/E0zOKxQsZhN/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d90b3f9ed3f37f0643e723ede7cdbc5f3a0ff499815f3f4a3772e4733172311 +size 514745 diff --git a/vlm/dev/E0zOKxQsZhN/26.png b/vlm/dev/E0zOKxQsZhN/26.png new file mode 100644 index 0000000000000000000000000000000000000000..e373582d9498d0689f0cca043974f5915715520c --- /dev/null +++ b/vlm/dev/E0zOKxQsZhN/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c5ceee8d3de3b83ff0238bbe23fb8176907c3132343750d800acfcaa0b5de39 +size 552378 diff --git a/vlm/dev/E0zOKxQsZhN/27.png b/vlm/dev/E0zOKxQsZhN/27.png new file mode 100644 index 0000000000000000000000000000000000000000..e797ee8adf4bd14211f93db3d75045ff76eaf2db --- /dev/null +++ b/vlm/dev/E0zOKxQsZhN/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0e71f43413b759cc493ab30ca29a424b76059eba819fe7e951edd2b530d64d2 +size 108888 diff --git a/vlm/dev/E0zOKxQsZhN/28.png b/vlm/dev/E0zOKxQsZhN/28.png new file mode 100644 index 0000000000000000000000000000000000000000..8e313056664c7a6b488ef8d59a291bb6e8fbdfb2 --- /dev/null +++ b/vlm/dev/E0zOKxQsZhN/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b444622590d12f83e0aedc5018fd156711a99ddaae667a78612a2b6ec22d833d +size 606114 diff --git a/vlm/dev/E0zOKxQsZhN/29.png b/vlm/dev/E0zOKxQsZhN/29.png new file mode 100644 index 0000000000000000000000000000000000000000..4d40bea009f5cee59514ea0ecfe07521cde25137 --- /dev/null +++ b/vlm/dev/E0zOKxQsZhN/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaa894434500158ee02704b242f3a6935fc14615e221b5224eec2d595afd33dc +size 326758 diff --git a/vlm/dev/E0zOKxQsZhN/30.png b/vlm/dev/E0zOKxQsZhN/30.png new file mode 100644 index 0000000000000000000000000000000000000000..bfa64a31c6138234439532bb41676e2fb56cf196 --- /dev/null +++ b/vlm/dev/E0zOKxQsZhN/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fccb4bd9fa9b92444940dc8fabdffd7ff2b6ce1bbee9900f0a96c002a811e78 +size 291362 diff --git a/vlm/dev/E0zOKxQsZhN/31.png b/vlm/dev/E0zOKxQsZhN/31.png new file mode 100644 index 0000000000000000000000000000000000000000..365e7ef87ca502bc466d099eb19c8fab25ab4013 --- /dev/null +++ b/vlm/dev/E0zOKxQsZhN/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93d521a45483b4f520ddfa830284833cb964db9f931764d1857789bfc296a896 +size 411920 diff --git a/vlm/dev/E0zOKxQsZhN/32.png b/vlm/dev/E0zOKxQsZhN/32.png new file mode 100644 index 0000000000000000000000000000000000000000..251a3ef914c6031fcf905890bfd1a25f0ed1bb0a --- /dev/null +++ b/vlm/dev/E0zOKxQsZhN/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:884d4e811ce224abe4a7185d7abee956bb625df510002b81899287b81abefb30 +size 281679 diff --git a/vlm/dev/E0zOKxQsZhN/4.png b/vlm/dev/E0zOKxQsZhN/4.png new file mode 100644 index 0000000000000000000000000000000000000000..2042d55bb89d646ed69dc2c4209b72ee7a5ea307 --- /dev/null +++ b/vlm/dev/E0zOKxQsZhN/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35d650f7006a22dee57cc1e33eef1e312e5e2f22e4eafad6c913388bb44d1512 +size 699756 diff --git a/vlm/dev/E0zOKxQsZhN/5.png b/vlm/dev/E0zOKxQsZhN/5.png new file mode 100644 index 0000000000000000000000000000000000000000..cd5f434a6a1554facd47ea2b65b96823fe6e4ba7 --- /dev/null +++ b/vlm/dev/E0zOKxQsZhN/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b4719fcd47557b41e3399152223e37558de3daa5a82e83c3dfbd9e66731cbb7 +size 641333 diff --git a/vlm/dev/E0zOKxQsZhN/7.png b/vlm/dev/E0zOKxQsZhN/7.png new file mode 100644 index 0000000000000000000000000000000000000000..da082daa4efb7fabf1e823517df9f11cbf18732e --- /dev/null +++ b/vlm/dev/E0zOKxQsZhN/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8417cc8491e207c1b0aa254d5bfaf9b01e696fcbbcd16056ee4aa3b03248e5ac +size 652051 diff --git a/vlm/dev/E0zOKxQsZhN/8.png b/vlm/dev/E0zOKxQsZhN/8.png new file mode 100644 index 0000000000000000000000000000000000000000..ee525de4cac36d3020c8035c2f86b16e93d7c19d --- /dev/null +++ b/vlm/dev/E0zOKxQsZhN/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f19d49dde624fcee899fde19e70b11568e67d622ead8bde87637321a9f027786 +size 586634 diff --git a/vlm/dev/G5ADoRKiTyJ/0.png b/vlm/dev/G5ADoRKiTyJ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..b8b4de144ca9876b48080357fb3060fc78e4d9b7 --- /dev/null +++ b/vlm/dev/G5ADoRKiTyJ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:281e8d04457ade3cbc29a1f2aceaa2c5f1ca3d36e578f595686da2df3ee8c7f0 +size 367891 diff --git a/vlm/dev/G5ADoRKiTyJ/1.png b/vlm/dev/G5ADoRKiTyJ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..24a3fff2b28d192a0bd692c8d8a2ab54b4a2a11c --- /dev/null +++ b/vlm/dev/G5ADoRKiTyJ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2036c30ffe870485b7c557d41741a453c7a78e62d29247ccbc5319584dfe2f08 +size 599887 diff --git a/vlm/dev/G5ADoRKiTyJ/10.png b/vlm/dev/G5ADoRKiTyJ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..8640d5ac6cbf10f327a615b5284943896917af34 --- /dev/null +++ b/vlm/dev/G5ADoRKiTyJ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9d66ff90d1f88c5aeb8bddfb34dbf9e1575f48b671dd00d87c83dcc5981d12c +size 564447 diff --git a/vlm/dev/G5ADoRKiTyJ/11.png b/vlm/dev/G5ADoRKiTyJ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a265aaec34000ffa6741de93e7f50914ee8c707c --- /dev/null +++ b/vlm/dev/G5ADoRKiTyJ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45ac368781e97bd3922445e2aa4bf0c4560b30552b8d3d722c1468398f8d0fae +size 564526 diff --git a/vlm/dev/G5ADoRKiTyJ/12.png b/vlm/dev/G5ADoRKiTyJ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..06f5deb509fc77743c7cb87790ba9126922f74d3 --- /dev/null +++ b/vlm/dev/G5ADoRKiTyJ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91b03109bfc92b7d7682c64a448227e98a36aa72ab68144443084824315fd6de +size 480378 diff --git a/vlm/dev/G5ADoRKiTyJ/13.png b/vlm/dev/G5ADoRKiTyJ/13.png new file mode 100644 index 0000000000000000000000000000000000000000..45964d1ce6830d37ca0a0caf6ddf6bc1144d7fc9 --- /dev/null +++ b/vlm/dev/G5ADoRKiTyJ/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c305e1ac4db9d12973bb2134cf2c9d5ad93803ae27dec502197de3ebb1becdf +size 149239 diff --git a/vlm/dev/G5ADoRKiTyJ/2.png b/vlm/dev/G5ADoRKiTyJ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..2ff8c888042f929801558f473d9949aead8d8a85 --- /dev/null +++ b/vlm/dev/G5ADoRKiTyJ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e665021d730a3b1c14cecf6c1fe5e66d5edd94fe8369088a7e48699a9db6e8f +size 534915 diff --git a/vlm/dev/G5ADoRKiTyJ/3.png b/vlm/dev/G5ADoRKiTyJ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..154acc34a0f7a63a0617af2fd73d7905b768b6c4 --- /dev/null +++ b/vlm/dev/G5ADoRKiTyJ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5acc83f759b442b9f85519f1c1dcbd4fec2344593418dac0fa7a2688d82e8e5c +size 633834 diff --git a/vlm/dev/G5ADoRKiTyJ/4.png b/vlm/dev/G5ADoRKiTyJ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..1e0f66bb630b1b70501b75dfcff1fe62ef2d98db --- /dev/null +++ b/vlm/dev/G5ADoRKiTyJ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0be21f591724b168666c249a1e3fe8b03059b937c100277dd0f2b4f821528cd +size 545372 diff --git a/vlm/dev/G5ADoRKiTyJ/5.png b/vlm/dev/G5ADoRKiTyJ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..cec78d5ad4673aba1804e46699e593436b16bb6f --- /dev/null +++ b/vlm/dev/G5ADoRKiTyJ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb52858fc35465357ac7c79fa587ddaee4ba67e0dba35dd85ec25c94103325e4 +size 529425 diff --git a/vlm/dev/G5ADoRKiTyJ/6.png b/vlm/dev/G5ADoRKiTyJ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..613046b838c125eec31bff775794b12808f1ef20 --- /dev/null +++ b/vlm/dev/G5ADoRKiTyJ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ad194e6486bcd670dac612657013918c9fb4205005e9587722a2eee44e288ea +size 487810 diff --git a/vlm/dev/G5ADoRKiTyJ/7.png b/vlm/dev/G5ADoRKiTyJ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..e5f0b733d275faa8af2e8e40c7981fc33c3ae169 --- /dev/null +++ b/vlm/dev/G5ADoRKiTyJ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:204c81812be364d75fcc3408cf170a7b71ffd7cee98efa4bf466351953c59fde +size 573787 diff --git a/vlm/dev/G5ADoRKiTyJ/8.png b/vlm/dev/G5ADoRKiTyJ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..c6598eaeb8eb2343fab755196e97737265d479ce --- /dev/null +++ b/vlm/dev/G5ADoRKiTyJ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d45f594357cccb47805169e7ed1f950fd806ef54afaaa961f1ef9419175e0bf2 +size 553831 diff --git a/vlm/dev/G5ADoRKiTyJ/9.png b/vlm/dev/G5ADoRKiTyJ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..2051349a64a1188513a49d8411333d6116157a2c --- /dev/null +++ b/vlm/dev/G5ADoRKiTyJ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b67ddfbc8e262f8018672830cf9c9c7969c5af83113eac12d47db6bbef4b66bd +size 533914 diff --git a/vlm/dev/S874XAIpkR-/0.png b/vlm/dev/S874XAIpkR-/0.png new file mode 100644 index 0000000000000000000000000000000000000000..4a3914770ce097292b4a4c3aeded0e33d7be0a89 --- /dev/null +++ b/vlm/dev/S874XAIpkR-/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc7bd570ea5a830eadff4d568c51a0d30661ecd1854394176f47666ed746e6fc +size 518002 diff --git a/vlm/dev/S874XAIpkR-/1.png b/vlm/dev/S874XAIpkR-/1.png new file mode 100644 index 0000000000000000000000000000000000000000..c7bcec05e4e234019630faac3734de25db465ce4 --- /dev/null +++ b/vlm/dev/S874XAIpkR-/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf9261902b59106b637c7ad4a1fa1a8a83a22eae8ef8d1ab6373e632b0fa92f3 +size 609104 diff --git a/vlm/dev/S874XAIpkR-/10.png b/vlm/dev/S874XAIpkR-/10.png new file mode 100644 index 0000000000000000000000000000000000000000..ab88c6dcb248f1e2f18cbb4737404da2ba592105 --- /dev/null +++ b/vlm/dev/S874XAIpkR-/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39b975466ce83d92f00f8804509deeb29387b10b85078fe6c38ce4e1e78f7db4 +size 471449 diff --git a/vlm/dev/S874XAIpkR-/11.png b/vlm/dev/S874XAIpkR-/11.png new file mode 100644 index 0000000000000000000000000000000000000000..47852ebf2a87e593a98d93307f91c52db75d4677 --- /dev/null +++ b/vlm/dev/S874XAIpkR-/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9afd6688621c92504bd779a1d575aacaee474b9e6f4917d89ccebff0e02811fc +size 483600 diff --git a/vlm/dev/S874XAIpkR-/12.png b/vlm/dev/S874XAIpkR-/12.png new file mode 100644 index 0000000000000000000000000000000000000000..0c3bc0e50fae76b355cf3bf032c8741decc69e25 --- /dev/null +++ b/vlm/dev/S874XAIpkR-/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75709aa78d56fb3706fe3c392a4318788d1c7de60b16886c6dee8de472fc45ca +size 485715 diff --git a/vlm/dev/S874XAIpkR-/13.png b/vlm/dev/S874XAIpkR-/13.png new file mode 100644 index 0000000000000000000000000000000000000000..8081fd43bb9ec2dc91c859638ce86da4d3cd49dc --- /dev/null +++ b/vlm/dev/S874XAIpkR-/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5740b490d17aba11887add83f6deee676a58945209f965c06431c75287d16d69 +size 461343 diff --git a/vlm/dev/S874XAIpkR-/2.png b/vlm/dev/S874XAIpkR-/2.png new file mode 100644 index 0000000000000000000000000000000000000000..0005d52083a9de794b574b98dc5ff66338617bb6 --- /dev/null +++ b/vlm/dev/S874XAIpkR-/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a3cb9b2e776cd9e1548a68d49ec8409c5adca681932ef7e196d1fc8f5696233 +size 614113 diff --git a/vlm/dev/S874XAIpkR-/3.png b/vlm/dev/S874XAIpkR-/3.png new file mode 100644 index 0000000000000000000000000000000000000000..226064b80b96cc7415b318bd37b0880d51f4da96 --- /dev/null +++ b/vlm/dev/S874XAIpkR-/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0efb077b2474a0e1915400a4af53dbcf5c0a5aeeed0640f44922417814f3a00 +size 907194 diff --git a/vlm/dev/S874XAIpkR-/4.png b/vlm/dev/S874XAIpkR-/4.png new file mode 100644 index 0000000000000000000000000000000000000000..5d5f45f4bda2635f515c4c952bdb9dd7cc494230 --- /dev/null +++ b/vlm/dev/S874XAIpkR-/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6556b1332facd9b5982ca9d67a729f23bf7522345514a9840c7be9f618beb35f +size 583155 diff --git a/vlm/dev/S874XAIpkR-/5.png b/vlm/dev/S874XAIpkR-/5.png new file mode 100644 index 0000000000000000000000000000000000000000..4a8db658971f61dd2b2abd1cc57726c5786a8f3d --- /dev/null +++ b/vlm/dev/S874XAIpkR-/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6856c85af7515d8ea63ade18ad281c75979fc93484fe732ae4d288020b4fa91f +size 580184 diff --git a/vlm/dev/S874XAIpkR-/6.png b/vlm/dev/S874XAIpkR-/6.png new file mode 100644 index 0000000000000000000000000000000000000000..2974193d1e71d978088cbe74366660a86c9ecc7f --- /dev/null +++ b/vlm/dev/S874XAIpkR-/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2dee96e721e91c6dd27872319c87774113bc35a8802805222e123d6449cd537 +size 344850 diff --git a/vlm/dev/S874XAIpkR-/7.png b/vlm/dev/S874XAIpkR-/7.png new file mode 100644 index 0000000000000000000000000000000000000000..6c9af54414114ecf68fe445400b805ee473331e1 --- /dev/null +++ b/vlm/dev/S874XAIpkR-/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97f7d0bc703dee9e5ee5618898a56a938d204045d844aab256d001f73d7396ec +size 608267 diff --git a/vlm/dev/S874XAIpkR-/8.png b/vlm/dev/S874XAIpkR-/8.png new file mode 100644 index 0000000000000000000000000000000000000000..aba2387ea6b26916e94e037d8bdd8a33d02e8410 --- /dev/null +++ b/vlm/dev/S874XAIpkR-/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5772525cd20314a8eff59c9e41257b96e8c02e14499e77f54cdd50eca7142611 +size 535243 diff --git a/vlm/dev/S874XAIpkR-/9.png b/vlm/dev/S874XAIpkR-/9.png new file mode 100644 index 0000000000000000000000000000000000000000..0403a2e03e8872f8cc2f6fa48a86e69043cccc27 --- /dev/null +++ b/vlm/dev/S874XAIpkR-/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f2fb9efedf9baba5e8a98b22f7603ece80108ea98bf460113ef45c4020d8c9e +size 580013 diff --git a/vlm/dev/YJ7o2wetJ2/0.png b/vlm/dev/YJ7o2wetJ2/0.png new file mode 100644 index 0000000000000000000000000000000000000000..34e605e3df5f0ba368ec6030ad73214557b54e67 --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2ad4410235bd75cd24257fb7d7e977f0e5c7c25d58ab8351078af9a8863f114 +size 503145 diff --git a/vlm/dev/YJ7o2wetJ2/1.png b/vlm/dev/YJ7o2wetJ2/1.png new file mode 100644 index 0000000000000000000000000000000000000000..8c07d9d00cea3960bded22c4d72b3a35187bd957 --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a4216f14bedb1f85c118f1fdae87f8fbe674c20c0493d66098273046a491147 +size 799010 diff --git a/vlm/dev/YJ7o2wetJ2/10.png b/vlm/dev/YJ7o2wetJ2/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a9528e4ba36b09b994cf8198c4919bb6d8ec7127 --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4972b8efb8b1e9936566bf1b5df131964058b0453371121946e7cef4ca758303 +size 555593 diff --git a/vlm/dev/YJ7o2wetJ2/11.png b/vlm/dev/YJ7o2wetJ2/11.png new file mode 100644 index 0000000000000000000000000000000000000000..6978fc1fede889fe8b9f9ef18bb6d49159f86e6e --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef7a8d39450717c40571405c79d0f6f583e610ccb676f827543d9e2db6711859 +size 575178 diff --git a/vlm/dev/YJ7o2wetJ2/12.png b/vlm/dev/YJ7o2wetJ2/12.png new file mode 100644 index 0000000000000000000000000000000000000000..3ab204cbf5f7bd84ecfa82bdec36016b165cbd47 --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:624d6f7bae99264812b6a78471ff111ae35eada56914698a22ce00e539ed9033 +size 562705 diff --git a/vlm/dev/YJ7o2wetJ2/13.png b/vlm/dev/YJ7o2wetJ2/13.png new file mode 100644 index 0000000000000000000000000000000000000000..9a7929a689e0bcf14079ea91f7c0962a45e0e264 --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bfd0f4d30fe8b14844b06c8bf563c8a037c4897281b7c71149d5b8a3f04a6d6 +size 391775 diff --git a/vlm/dev/YJ7o2wetJ2/14.png b/vlm/dev/YJ7o2wetJ2/14.png new file mode 100644 index 0000000000000000000000000000000000000000..3ca8590de8d9c22259a42f15c760cf7c8096b80d --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2954f0c3effbac26e472da0cc30f70aad4c0b8d7a85666d61ca6f249d9e8bcf4 +size 316549 diff --git a/vlm/dev/YJ7o2wetJ2/15.png b/vlm/dev/YJ7o2wetJ2/15.png new file mode 100644 index 0000000000000000000000000000000000000000..2ee91a4aad176cdef3ef7d35c72b8642f2ae8b41 --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:787b12e8b10f7250afe95b0495e17c543595c480da6ddc057933230bff026b25 +size 472744 diff --git a/vlm/dev/YJ7o2wetJ2/16.png b/vlm/dev/YJ7o2wetJ2/16.png new file mode 100644 index 0000000000000000000000000000000000000000..65de88f1713f40e9fbaa4fc2cf3b45048754f07c --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae95eca33870b71c9622847ab883667cd971de82f5f50e153ba2c8bfcca4f196 +size 476633 diff --git a/vlm/dev/YJ7o2wetJ2/17.png b/vlm/dev/YJ7o2wetJ2/17.png new file mode 100644 index 0000000000000000000000000000000000000000..5c80abcdee23da381a84914b8fc922a5e759231d --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74fd41faf1b29615c7522d910bed43570ae0b33b659aea67794c7996a94a6429 +size 377400 diff --git a/vlm/dev/YJ7o2wetJ2/18.png b/vlm/dev/YJ7o2wetJ2/18.png new file mode 100644 index 0000000000000000000000000000000000000000..1043757b4273884e7aac3007b7c38d5cc26bb98f --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11fc8be9ff70bee2d639d8dd3a254a5a758d110646e8a6530e675eff80b55669 +size 478666 diff --git a/vlm/dev/YJ7o2wetJ2/19.png b/vlm/dev/YJ7o2wetJ2/19.png new file mode 100644 index 0000000000000000000000000000000000000000..e577d6cadbb25c589597e680e42244a6b4b7b7c5 --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f980dcabf65272f02ce049303bbd689c93c74190f5b73018d5196f22ef4298ab +size 384793 diff --git a/vlm/dev/YJ7o2wetJ2/2.png b/vlm/dev/YJ7o2wetJ2/2.png new file mode 100644 index 0000000000000000000000000000000000000000..d0cb7b864cd04cbee6f2c01a5b2d219c3bce3fe1 --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b46441c71dc994e40dd9f178ee8087c53a68d76ff1e2054d531c17e2c8eec511 +size 589560 diff --git a/vlm/dev/YJ7o2wetJ2/20.png b/vlm/dev/YJ7o2wetJ2/20.png new file mode 100644 index 0000000000000000000000000000000000000000..1bd53df733baa858d447c23c354f739de3cb637c --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a442575c78fe52789634e0a1da13b150a79575bf6caf6d63e80e8cb74466eb2 +size 688650 diff --git a/vlm/dev/YJ7o2wetJ2/21.png b/vlm/dev/YJ7o2wetJ2/21.png new file mode 100644 index 0000000000000000000000000000000000000000..63ee6a9d75fe9fda30a19470dfabb39d1125280b --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b406d05b436ddfb8278b854e7e4af777977f604ef48f7beccf951dee686378be +size 643001 diff --git a/vlm/dev/YJ7o2wetJ2/22.png b/vlm/dev/YJ7o2wetJ2/22.png new file mode 100644 index 0000000000000000000000000000000000000000..f03d04cfedd199d384962a9febfedb573a700a21 --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:833029167932bc476a57d85f414f732a76456af278c0ec6349e27b559add101b +size 539899 diff --git a/vlm/dev/YJ7o2wetJ2/23.png b/vlm/dev/YJ7o2wetJ2/23.png new file mode 100644 index 0000000000000000000000000000000000000000..e55c3d7fef19fc61bebd472e11707fa37b99e2bb --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69f41f2db4dbda0e651af8a3a17e4e68638afecc78e669b8014b6d55c2bd98f7 +size 727590 diff --git a/vlm/dev/YJ7o2wetJ2/24.png b/vlm/dev/YJ7o2wetJ2/24.png new file mode 100644 index 0000000000000000000000000000000000000000..1150d17ac6312686c839f55dd2eb713fd2ba7140 --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a494d13464568e87642073f223ee4636d972df9e18468f7b180ad08aaa2fcf7 +size 812839 diff --git a/vlm/dev/YJ7o2wetJ2/25.png b/vlm/dev/YJ7o2wetJ2/25.png new file mode 100644 index 0000000000000000000000000000000000000000..3c53cf2c5bb62a97f15fbb4963504faa9f2c3a9a --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a15382541e747d09d78a6aeedfd5097d4eb5e4f622378d51b11a267f27fda0eb +size 493982 diff --git a/vlm/dev/YJ7o2wetJ2/26.png b/vlm/dev/YJ7o2wetJ2/26.png new file mode 100644 index 0000000000000000000000000000000000000000..6af86bbfd60317a25e82069d56d8b35f57b71912 --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71e44c9d20dc9bc2e3ea3d0c9ab8f9d47e9de365455a20f999199409bd06f87a +size 523361 diff --git a/vlm/dev/YJ7o2wetJ2/27.png b/vlm/dev/YJ7o2wetJ2/27.png new file mode 100644 index 0000000000000000000000000000000000000000..748b9b1bb74f2e817242dcf2f716feabf4db5d4d --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9362d6457d501712ef3f9738754046d2da3cb377e8a81a2fd7235971c2f8ee84 +size 583887 diff --git a/vlm/dev/YJ7o2wetJ2/28.png b/vlm/dev/YJ7o2wetJ2/28.png new file mode 100644 index 0000000000000000000000000000000000000000..a18d2c335edfb12641f84fdf8a1f0c01b2b1a305 --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c265c148fd19f2fbf2baeb4ea5b34c3c1f5a52f60d98695d5c9fc7bbaa602dd3 +size 518514 diff --git a/vlm/dev/YJ7o2wetJ2/29.png b/vlm/dev/YJ7o2wetJ2/29.png new file mode 100644 index 0000000000000000000000000000000000000000..177f462bf37bbf35a1aabe64083ec933a0aa6088 --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdc83d8c73e7b9ac597c537d1153d72566820de6096c3d71158f79ff586627d7 +size 515835 diff --git a/vlm/dev/YJ7o2wetJ2/3.png b/vlm/dev/YJ7o2wetJ2/3.png new file mode 100644 index 0000000000000000000000000000000000000000..84b448d695dc035c77b6865c742e72bc515c5a8e --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a05d1088650465d98f8c4d2021c9276c7d5e6e29e288766723d39acd6c94bd33 +size 553493 diff --git a/vlm/dev/YJ7o2wetJ2/30.png b/vlm/dev/YJ7o2wetJ2/30.png new file mode 100644 index 0000000000000000000000000000000000000000..38c7b71208dd3430a06fb260e262b3ae2d042396 --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f784840449f23f744a8bb71858ca0e1fadab4c1e751104370feab180675b6bfb +size 493921 diff --git a/vlm/dev/YJ7o2wetJ2/31.png b/vlm/dev/YJ7o2wetJ2/31.png new file mode 100644 index 0000000000000000000000000000000000000000..885b0ab15d7c7947d0a9f183490dddb5e0534d88 --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f783d0e750eff97eeb8d10a4bcd9593606bedb9586d9013a5ddcc9cf091bcd2 +size 624555 diff --git a/vlm/dev/YJ7o2wetJ2/32.png b/vlm/dev/YJ7o2wetJ2/32.png new file mode 100644 index 0000000000000000000000000000000000000000..63c9c9ca7a0dc94ba40fa290bf222dcf39327134 --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b199dec7b745faf1195ed9f06afdb3ce99ea8023ef11597f2e67c82530621071 +size 348928 diff --git a/vlm/dev/YJ7o2wetJ2/33.png b/vlm/dev/YJ7o2wetJ2/33.png new file mode 100644 index 0000000000000000000000000000000000000000..ee9b8f72ebc0a01de6acd098dd4f09e107665bf4 --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8703a7e7ea41f6a2403cf2c380805af63abee99b6ac9b1c26a2155af9a81b48 +size 245717 diff --git a/vlm/dev/YJ7o2wetJ2/4.png b/vlm/dev/YJ7o2wetJ2/4.png new file mode 100644 index 0000000000000000000000000000000000000000..636c3fecc44fcb26ee43f3d663099ed8882a810e --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b2a751e9601d40fa2874591c18ba2903d050e4491940192380ab81a7a8e7f05 +size 646441 diff --git a/vlm/dev/YJ7o2wetJ2/5.png b/vlm/dev/YJ7o2wetJ2/5.png new file mode 100644 index 0000000000000000000000000000000000000000..f6f95cefbd6841d8e793f34a01f63977cbf685e4 --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:141c182c9ffd506bd1ccda53443c9a117206d46d951e405882a173d6808054f7 +size 712335 diff --git a/vlm/dev/YJ7o2wetJ2/6.png b/vlm/dev/YJ7o2wetJ2/6.png new file mode 100644 index 0000000000000000000000000000000000000000..fd0ead885527b09be4c98bcd4731a4b374641433 --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb0479ac9125b8a4424ef854222d30502a2642fb94fa742229617d250a3b0257 +size 613131 diff --git a/vlm/dev/YJ7o2wetJ2/7.png b/vlm/dev/YJ7o2wetJ2/7.png new file mode 100644 index 0000000000000000000000000000000000000000..fac9a90e0b5b97f909a74f95eb22c102c0fecc46 --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2362b550635f6488d0b3bfe7680974bcbf70edf9ebecbe11d1de46b067a0c4f6 +size 696561 diff --git a/vlm/dev/YJ7o2wetJ2/8.png b/vlm/dev/YJ7o2wetJ2/8.png new file mode 100644 index 0000000000000000000000000000000000000000..bcf25b07ba35b3c5c09d567e92c3854a025dd8b8 --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e26263b0035aa5ed6ba6642f7e20d2dd90a78d4feaa9424123977ad90aa60c3f +size 650113 diff --git a/vlm/dev/YJ7o2wetJ2/9.png b/vlm/dev/YJ7o2wetJ2/9.png new file mode 100644 index 0000000000000000000000000000000000000000..e8518c45b5c2051fa91eedb75c25b9febdc311b1 --- /dev/null +++ b/vlm/dev/YJ7o2wetJ2/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cab6c41614babca8a46472e35d30b531d5373ff6a9a0ca16328c3d565c02042d +size 121770 diff --git a/vlm/dev/ZumkmSpY9G4/0.png b/vlm/dev/ZumkmSpY9G4/0.png new file mode 100644 index 0000000000000000000000000000000000000000..9db620e628a3c483ffbe92a964b6e4d10b5b9907 --- /dev/null +++ b/vlm/dev/ZumkmSpY9G4/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:229e31665cf29e3874425508607762f4c65e3704df84165fc8989e14cdd74b35 +size 503615 diff --git a/vlm/dev/ZumkmSpY9G4/1.png b/vlm/dev/ZumkmSpY9G4/1.png new file mode 100644 index 0000000000000000000000000000000000000000..e906dffb292c6918dd261b8cceea057b0ce6c776 --- /dev/null +++ b/vlm/dev/ZumkmSpY9G4/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44937d2631dc3c854dd43e674898105c9aef84b037d9d4ffd2533e9416e44210 +size 515222 diff --git a/vlm/dev/ZumkmSpY9G4/10.png b/vlm/dev/ZumkmSpY9G4/10.png new file mode 100644 index 0000000000000000000000000000000000000000..77b3e7a2590baa89ea3b730b945659db1b0506af --- /dev/null +++ b/vlm/dev/ZumkmSpY9G4/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ddf2720bf735bed57712b86da0f06397ef990937830f9c37035b50c1bf22842 +size 557457 diff --git a/vlm/dev/ZumkmSpY9G4/11.png b/vlm/dev/ZumkmSpY9G4/11.png new file mode 100644 index 0000000000000000000000000000000000000000..2248ca4ccd0bc66f4743c234bcc76fe7efbed824 --- /dev/null +++ b/vlm/dev/ZumkmSpY9G4/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92d2157015203d411a17e6ffb14c361dc846caed9f98fd8d09a449581f81317b +size 242203 diff --git a/vlm/dev/ZumkmSpY9G4/12.png b/vlm/dev/ZumkmSpY9G4/12.png new file mode 100644 index 0000000000000000000000000000000000000000..964e4e475541c40831a48156578c293fca6baa69 --- /dev/null +++ b/vlm/dev/ZumkmSpY9G4/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e2519f05ddd989ae6311afa5aa6cc8a56cdc26f879930b8fbb4a3759c651f50 +size 223298 diff --git a/vlm/dev/ZumkmSpY9G4/14.png b/vlm/dev/ZumkmSpY9G4/14.png new file mode 100644 index 0000000000000000000000000000000000000000..2eb208d4165f3e8ad8cbac801ca0642c7f7b04a8 --- /dev/null +++ b/vlm/dev/ZumkmSpY9G4/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebc866b3744c92993a34ee2f71a066d405c3d4e09483369b2c5e49b5c498e3fb +size 481171 diff --git a/vlm/dev/ZumkmSpY9G4/15.png b/vlm/dev/ZumkmSpY9G4/15.png new file mode 100644 index 0000000000000000000000000000000000000000..91561d5ee1d572471b07df291cf9beece6f0a6c7 --- /dev/null +++ b/vlm/dev/ZumkmSpY9G4/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f818c4670b6f3c8737fd7d6f777c96b00252937b0b7d5cfd1b6d1b7e5f863f03 +size 357597 diff --git a/vlm/dev/ZumkmSpY9G4/17.png b/vlm/dev/ZumkmSpY9G4/17.png new file mode 100644 index 0000000000000000000000000000000000000000..513f128513f9e192887604dab5a07764f9ca6473 --- /dev/null +++ b/vlm/dev/ZumkmSpY9G4/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f59e494f3ef4ae9d854fbe768a860390827b3726c072d5f7350d03d3f3eea46 +size 433830 diff --git a/vlm/dev/ZumkmSpY9G4/2.png b/vlm/dev/ZumkmSpY9G4/2.png new file mode 100644 index 0000000000000000000000000000000000000000..74d51caf5e0881947a1f91bd014197b2d96bf393 --- /dev/null +++ b/vlm/dev/ZumkmSpY9G4/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51cecc2128012db43e46c82062fa8d0dffeaf6e1a25c62b5cae202504ff7833f +size 569254 diff --git a/vlm/dev/ZumkmSpY9G4/3.png b/vlm/dev/ZumkmSpY9G4/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d79904eb1d9ab4d52e394600262c8c8cbc9cef24 --- /dev/null +++ b/vlm/dev/ZumkmSpY9G4/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fdfc219dfb6d4f96c8d5aa6bf3d1379e685dde3d021ec30961e40f64788fb84 +size 535945 diff --git a/vlm/dev/ZumkmSpY9G4/5.png b/vlm/dev/ZumkmSpY9G4/5.png new file mode 100644 index 0000000000000000000000000000000000000000..3b79d1667f687b4f9a06d5941fbdf83acbeb9d6f --- /dev/null +++ b/vlm/dev/ZumkmSpY9G4/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:265ff6d3cc6cd4f9db6db7d4179f4ddf4e832eeab50d568d11926b6759c66e87 +size 612235 diff --git a/vlm/dev/ZumkmSpY9G4/6.png b/vlm/dev/ZumkmSpY9G4/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3ea2762fd5585196692c630ebffd24c81874b8a1 --- /dev/null +++ b/vlm/dev/ZumkmSpY9G4/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfbbbec07c3191fee5d12607fc33f7b6c50061952e23e2c5f23d29971292b511 +size 607177 diff --git a/vlm/dev/ZumkmSpY9G4/9.png b/vlm/dev/ZumkmSpY9G4/9.png new file mode 100644 index 0000000000000000000000000000000000000000..b777d27f4bee30ceb72ff7ca47c8f1de105f43cf --- /dev/null +++ b/vlm/dev/ZumkmSpY9G4/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d544156dec1c244f4f3776f8cef39d54a335bc63cef95ff84b26e209e072da01 +size 529342 diff --git a/vlm/dev/_3ELRdg2sgI/0.png b/vlm/dev/_3ELRdg2sgI/0.png new file mode 100644 index 0000000000000000000000000000000000000000..24011df13907e4afccaa8322f09c776056f0a1f3 --- /dev/null +++ b/vlm/dev/_3ELRdg2sgI/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2e40c0a9de57d25118d0f6d252d3aa3c238e0209beed2f775def40ab56d1bf4 +size 457302 diff --git a/vlm/dev/_3ELRdg2sgI/1.png b/vlm/dev/_3ELRdg2sgI/1.png new file mode 100644 index 0000000000000000000000000000000000000000..0eeb0e5f5820ff61c44de91d703031c7a41d1c68 --- /dev/null +++ b/vlm/dev/_3ELRdg2sgI/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b429228a6bdab97b14dcb9639f7080f83c343d12ba44e59f7579b4488e453cc +size 503807 diff --git a/vlm/dev/_3ELRdg2sgI/10.png b/vlm/dev/_3ELRdg2sgI/10.png new file mode 100644 index 0000000000000000000000000000000000000000..e12247795884af53a700c9f02b20458e8617927a --- /dev/null +++ b/vlm/dev/_3ELRdg2sgI/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5b9f7a82fba347367fa46e30dec01593a958909628022311419e234ec9a4c1a +size 544150 diff --git a/vlm/dev/_3ELRdg2sgI/11.png b/vlm/dev/_3ELRdg2sgI/11.png new file mode 100644 index 0000000000000000000000000000000000000000..821d15ba41adb97d5e38c9994c05ae0930b77477 --- /dev/null +++ b/vlm/dev/_3ELRdg2sgI/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbb80e53a918e6898d7e29cefb330611853d0ce6fd9da0620ab3e689e096aa57 +size 552606 diff --git a/vlm/dev/_3ELRdg2sgI/12.png b/vlm/dev/_3ELRdg2sgI/12.png new file mode 100644 index 0000000000000000000000000000000000000000..3c06644761cbec7c6c937f84431abe9fe7f6b0cb --- /dev/null +++ b/vlm/dev/_3ELRdg2sgI/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e73fd28c6797bcaf40c59d606d127f62630f1b165431d0602b182f42dc78f5ba +size 215996 diff --git a/vlm/dev/_3ELRdg2sgI/2.png b/vlm/dev/_3ELRdg2sgI/2.png new file mode 100644 index 0000000000000000000000000000000000000000..33f73a6de751500b3a2590d0042235e8513853ce --- /dev/null +++ b/vlm/dev/_3ELRdg2sgI/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28d3f741930b399d7124c591cd720dc35f9cb50865f30592a09c06edc7c08e29 +size 642437 diff --git a/vlm/dev/_3ELRdg2sgI/3.png b/vlm/dev/_3ELRdg2sgI/3.png new file mode 100644 index 0000000000000000000000000000000000000000..12cb526229faddf333958d42ce0e944088458df4 --- /dev/null +++ b/vlm/dev/_3ELRdg2sgI/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fceeb2eab0b5617b5b6f12bc0f16c85fece75741cde23de3a9b135622d221120 +size 589441 diff --git a/vlm/dev/_3ELRdg2sgI/4.png b/vlm/dev/_3ELRdg2sgI/4.png new file mode 100644 index 0000000000000000000000000000000000000000..649d24ba6371c6f2d0204d0a106b2e96f84dd183 --- /dev/null +++ b/vlm/dev/_3ELRdg2sgI/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cc3527c4b279b3345220c0fa55dcf284c590fb71753f0d301ba5be40150bd39 +size 588752 diff --git a/vlm/dev/_3ELRdg2sgI/5.png b/vlm/dev/_3ELRdg2sgI/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5603e8ac7b67fc22aae4e85784f76f1d38397c20 --- /dev/null +++ b/vlm/dev/_3ELRdg2sgI/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc6c2bdb79461ba76e29f6dc2ef1b4c22cc90518abcaf10149934879616ddd67 +size 559530 diff --git a/vlm/dev/_3ELRdg2sgI/6.png b/vlm/dev/_3ELRdg2sgI/6.png new file mode 100644 index 0000000000000000000000000000000000000000..1daa3658f0b70081caa427b0f6ef63a3696b83e4 --- /dev/null +++ b/vlm/dev/_3ELRdg2sgI/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6587f3bbb5139bbed0e6d96a548714fed6ffaf52b89b55704a8a89b680de2e9 +size 593250 diff --git a/vlm/dev/_3ELRdg2sgI/7.png b/vlm/dev/_3ELRdg2sgI/7.png new file mode 100644 index 0000000000000000000000000000000000000000..37540aa6a58d5e7a762a456e800c9ca6931d4477 --- /dev/null +++ b/vlm/dev/_3ELRdg2sgI/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5c601467b94da589b3a9066f7752c9eecd34f67d636ce4d16ab445f892a8640 +size 584542 diff --git a/vlm/dev/_3ELRdg2sgI/8.png b/vlm/dev/_3ELRdg2sgI/8.png new file mode 100644 index 0000000000000000000000000000000000000000..9dd474440408dbc9cda82b8c26c898fdc5a6b194 --- /dev/null +++ b/vlm/dev/_3ELRdg2sgI/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb5a1e9fa3acb33d5ddae1282d5aac93f60ea72ba2fa6f86e4cc9dc452e36c0f +size 595118 diff --git a/vlm/dev/_3ELRdg2sgI/9.png b/vlm/dev/_3ELRdg2sgI/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ceec31debf72246eae45a0272a56dd239a295b23 --- /dev/null +++ b/vlm/dev/_3ELRdg2sgI/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6ba36b0a8a6c716d14f4033854979823388ad752806ba09f5b8ff378a120160 +size 576838 diff --git a/vlm/dev/eYciPrLuUhG/12.png b/vlm/dev/eYciPrLuUhG/12.png new file mode 100644 index 0000000000000000000000000000000000000000..c944045a2e9313372e60158d83328df02656f1d6 --- /dev/null +++ b/vlm/dev/eYciPrLuUhG/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f47b62d0443870504aa2166b4c5110e17cdb0e3fea5f12c8aa62db652464d3a6 +size 622184 diff --git a/vlm/dev/eYciPrLuUhG/13.png b/vlm/dev/eYciPrLuUhG/13.png new file mode 100644 index 0000000000000000000000000000000000000000..f15a32b9f3b7a98c15cf22ad0196a6386f2f9be6 --- /dev/null +++ b/vlm/dev/eYciPrLuUhG/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83d7e034c4376c1254f795b2572da7e73eb10c5abf14e94e97e81c915a2c2ebe +size 592595 diff --git a/vlm/dev/eYciPrLuUhG/16.png b/vlm/dev/eYciPrLuUhG/16.png new file mode 100644 index 0000000000000000000000000000000000000000..93ec3d5c467130df7b3da536171102c8f33b983c --- /dev/null +++ b/vlm/dev/eYciPrLuUhG/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f2129aaf46ceb31274dba2b9c88dc08eae3a908804766760a4553b2b456e3c +size 453441 diff --git a/vlm/dev/eYciPrLuUhG/18.png b/vlm/dev/eYciPrLuUhG/18.png new file mode 100644 index 0000000000000000000000000000000000000000..8c47f7ade87f1b1851b55daafad5083271d4e694 --- /dev/null +++ b/vlm/dev/eYciPrLuUhG/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08476b76714e0b818132317c892786425d131f40aa149fbc0fa68775b6c6116e +size 514539 diff --git a/vlm/dev/eYciPrLuUhG/19.png b/vlm/dev/eYciPrLuUhG/19.png new file mode 100644 index 0000000000000000000000000000000000000000..eabb337d11a34c1c7a02813c88b95b65aacead88 --- /dev/null +++ b/vlm/dev/eYciPrLuUhG/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8944966c0b7e42d16ca4316e6047defaeb1a68eba8c777e0208b90e53602f8a9 +size 305140 diff --git a/vlm/dev/eYciPrLuUhG/20.png b/vlm/dev/eYciPrLuUhG/20.png new file mode 100644 index 0000000000000000000000000000000000000000..2597efed817ca59c329e563f609ca5b631d8173e --- /dev/null +++ b/vlm/dev/eYciPrLuUhG/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0310fd3e728a75066a08692e73421fc02fd09bac78ef162a06aa1a392bbed1d +size 508541 diff --git a/vlm/dev/eYciPrLuUhG/22.png b/vlm/dev/eYciPrLuUhG/22.png new file mode 100644 index 0000000000000000000000000000000000000000..5d193718f99bf2b1f37c94a8af0283c7c100d063 --- /dev/null +++ b/vlm/dev/eYciPrLuUhG/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f361ec0ba6394946bc67b5c72c7ea8458f475c14684082bae1216ce30bc9b84d +size 597685 diff --git a/vlm/dev/eYciPrLuUhG/25.png b/vlm/dev/eYciPrLuUhG/25.png new file mode 100644 index 0000000000000000000000000000000000000000..df944d09e5dabf563e055743f701c491f77bf95a --- /dev/null +++ b/vlm/dev/eYciPrLuUhG/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dfdc50b4b109b578b33b6e1770cbd30ec6efebc37ef894c114285d08e34778b +size 402948 diff --git a/vlm/dev/eYciPrLuUhG/26.png b/vlm/dev/eYciPrLuUhG/26.png new file mode 100644 index 0000000000000000000000000000000000000000..8e310056f74fc114b24f72c7c37719d9c802cb2e --- /dev/null +++ b/vlm/dev/eYciPrLuUhG/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1b0cb21c3e038c4c0c0ed26a660b59c2689af669643c3f925a57811f961c416 +size 591796 diff --git a/vlm/dev/eYciPrLuUhG/29.png b/vlm/dev/eYciPrLuUhG/29.png new file mode 100644 index 0000000000000000000000000000000000000000..0e46895f2efbd513c20ed9cd20f1a1dcf1a30e8e --- /dev/null +++ b/vlm/dev/eYciPrLuUhG/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8db5235c5ca1ed5f28b51497497a8a76eb2cac1bfa54aedf381bbf086d29c41 +size 551490 diff --git a/vlm/dev/eYciPrLuUhG/32.png b/vlm/dev/eYciPrLuUhG/32.png new file mode 100644 index 0000000000000000000000000000000000000000..f088d9f85e5804683a2561d93dedf457459714c5 --- /dev/null +++ b/vlm/dev/eYciPrLuUhG/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c9345a90fb94fa9a7613eaf1b39b33723118cb9c062c961032cebc4beebcc47 +size 568956 diff --git a/vlm/dev/eYciPrLuUhG/34.png b/vlm/dev/eYciPrLuUhG/34.png new file mode 100644 index 0000000000000000000000000000000000000000..f973956b539707082a06f53a77932c8ec7fe6ceb --- /dev/null +++ b/vlm/dev/eYciPrLuUhG/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af0204938801cdea12e74f4a50b0022331d9bb1c218d7c57ac95968b21492d4b +size 457938 diff --git a/vlm/dev/eYciPrLuUhG/35.png b/vlm/dev/eYciPrLuUhG/35.png new file mode 100644 index 0000000000000000000000000000000000000000..6e0187f76c3197ef0b9a802391f7e97696ee97cd --- /dev/null +++ b/vlm/dev/eYciPrLuUhG/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cf2f0514181dc13677a58c20cd91245ecec703ed23ef0d5ba220cca95c1d293 +size 476770 diff --git a/vlm/dev/eYciPrLuUhG/39.png b/vlm/dev/eYciPrLuUhG/39.png new file mode 100644 index 0000000000000000000000000000000000000000..6a52d8a93244c98a3c5c429cef369a0ecf21093a --- /dev/null +++ b/vlm/dev/eYciPrLuUhG/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64d0d1a87055d6549e1a03174b35838d93957787f4bb3511808198bbfc60019e +size 440112 diff --git a/vlm/dev/eYciPrLuUhG/4.png b/vlm/dev/eYciPrLuUhG/4.png new file mode 100644 index 0000000000000000000000000000000000000000..35775ecfb4a09cf9f6fea2c13a70cb6f32e4648a --- /dev/null +++ b/vlm/dev/eYciPrLuUhG/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd6feb71f2bf58e0fe82e1e88b0169b1d88aa03fd4b5c92f51b8a1ba32af63b2 +size 610635 diff --git a/vlm/dev/eYciPrLuUhG/41.png b/vlm/dev/eYciPrLuUhG/41.png new file mode 100644 index 0000000000000000000000000000000000000000..f4639fedd74c2e6d6aac510c3c03c9b3addb700c --- /dev/null +++ b/vlm/dev/eYciPrLuUhG/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43b68078b9cad73623c55f9ce845f50ff7b2e49543fd231b289f546182c328be +size 539082 diff --git a/vlm/dev/eYciPrLuUhG/44.png b/vlm/dev/eYciPrLuUhG/44.png new file mode 100644 index 0000000000000000000000000000000000000000..cf29ec46eeb9974ad89634357169f694bc2db3e0 --- /dev/null +++ b/vlm/dev/eYciPrLuUhG/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fe34e6f52854cd04a5406084b591c366941092e63504c596da5ff2d0817f8b1 +size 478766 diff --git a/vlm/dev/eYciPrLuUhG/47.png b/vlm/dev/eYciPrLuUhG/47.png new file mode 100644 index 0000000000000000000000000000000000000000..c015f0e8f42ebc3977b333c3e5cab625cf68314b --- /dev/null +++ b/vlm/dev/eYciPrLuUhG/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e22089a2d0fbb617ab90c8105d2c091b7b6e5a14af52d195fd78757e3a2254e +size 390551 diff --git a/vlm/dev/eYciPrLuUhG/48.png b/vlm/dev/eYciPrLuUhG/48.png new file mode 100644 index 0000000000000000000000000000000000000000..ef2c96d6d6af199baa6d574c98841d0f3543673b --- /dev/null +++ b/vlm/dev/eYciPrLuUhG/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:554cdf587328752cb2202839b0a114d33eba825fd9c07c91e64e915cd78aa3d4 +size 541972 diff --git a/vlm/dev/eYciPrLuUhG/50.png b/vlm/dev/eYciPrLuUhG/50.png new file mode 100644 index 0000000000000000000000000000000000000000..cd9cc62f20b4be7b5971231ed0ad05ca12563559 --- /dev/null +++ b/vlm/dev/eYciPrLuUhG/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6244b6ed7fbaffca989c1f3dc0144e7da4430632a135a9be4d16d5b9cd01d359 +size 163446 diff --git a/vlm/dev/eYciPrLuUhG/7.png b/vlm/dev/eYciPrLuUhG/7.png new file mode 100644 index 0000000000000000000000000000000000000000..3d23dad6a7d9e59e0c1e7a34f92e2743210f9765 --- /dev/null +++ b/vlm/dev/eYciPrLuUhG/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcaaafd9a492e323d8f53c786465bf7071e35f1eb7a431228a8e0d33182a1fc5 +size 618686 diff --git a/vlm/dev/eYciPrLuUhG/8.png b/vlm/dev/eYciPrLuUhG/8.png new file mode 100644 index 0000000000000000000000000000000000000000..c4239b4b3ffb64a8b03200558d963c5d5050cef2 --- /dev/null +++ b/vlm/dev/eYciPrLuUhG/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b02880561c9f4ae1f64a9b1d29197255ba959c7b46327743a85945e17d0b451 +size 556347 diff --git a/vlm/dev/gMS6FVZvmF/0.png b/vlm/dev/gMS6FVZvmF/0.png new file mode 100644 index 0000000000000000000000000000000000000000..5e5ec243c5df30888ed63eca432a337eb4742539 --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eb1b083bb60a453a2aa1efc96f2591acf883102c26a62311ccfaef90b91e20a +size 424259 diff --git a/vlm/dev/gMS6FVZvmF/1.png b/vlm/dev/gMS6FVZvmF/1.png new file mode 100644 index 0000000000000000000000000000000000000000..5baed29385efca91803e3ae1aa6568648a9fc869 --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bf7b9b04a9262f3297fbc1c8dd13ac2d287c8a7214b637f3daaab9f1a766b96 +size 590444 diff --git a/vlm/dev/gMS6FVZvmF/10.png b/vlm/dev/gMS6FVZvmF/10.png new file mode 100644 index 0000000000000000000000000000000000000000..87ccfe6fca1fb9d73f2ac82bfabab028fde3f123 --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e27d10ef1929a925731fe35f989e3baaa2c1760b4c24a92d55ee991852ea58a0 +size 545517 diff --git a/vlm/dev/gMS6FVZvmF/11.png b/vlm/dev/gMS6FVZvmF/11.png new file mode 100644 index 0000000000000000000000000000000000000000..ccf1ad24ab5cb4343921a1c4079b0ea2d310bc2f --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9f811e4f77d976239cef97d16cb0e5270c5e02e07de9d4c6425b5f73dce85bf +size 559626 diff --git a/vlm/dev/gMS6FVZvmF/12.png b/vlm/dev/gMS6FVZvmF/12.png new file mode 100644 index 0000000000000000000000000000000000000000..f330376e7da95831aa3488b83ee497a1e20c0a9b --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b498709a6523f9f6ebb81f49a34fb1f832c065780df624d6ae05e4d27febfdd7 +size 559448 diff --git a/vlm/dev/gMS6FVZvmF/13.png b/vlm/dev/gMS6FVZvmF/13.png new file mode 100644 index 0000000000000000000000000000000000000000..67ab89988ccf74288b9e4d116c0c4ca447783d82 --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a327e76dcdaef17a239b561cb44850424f64d82585b62e580ced87186c9f1c4d +size 468689 diff --git a/vlm/dev/gMS6FVZvmF/14.png b/vlm/dev/gMS6FVZvmF/14.png new file mode 100644 index 0000000000000000000000000000000000000000..c9870bce754d2ed6ddba3862b64194a7f73c31b4 --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6230d7ec35de3b7f45a02b795b1b44221cc28e3952859734f397d1d731cbb07c +size 679470 diff --git a/vlm/dev/gMS6FVZvmF/15.png b/vlm/dev/gMS6FVZvmF/15.png new file mode 100644 index 0000000000000000000000000000000000000000..8f1f1d79222fd3f7f8feff1faacd78104cfaea33 --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0a321f5f200664e8a88ecbcf6b1184bdd4a111d91c270914e215ffd04f5a3c2 +size 467462 diff --git a/vlm/dev/gMS6FVZvmF/16.png b/vlm/dev/gMS6FVZvmF/16.png new file mode 100644 index 0000000000000000000000000000000000000000..5b5181deb57b4edc526d11ce37b871ba716a3d27 --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b19f0cc87ed93bbfa30b86d7bc1bb28a1faafc735c72f72e5f7171238ff99a0c +size 269874 diff --git a/vlm/dev/gMS6FVZvmF/17.png b/vlm/dev/gMS6FVZvmF/17.png new file mode 100644 index 0000000000000000000000000000000000000000..08afd0e7750d270570152118d3a08d667947c664 --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8491f74a7ed66807a9ff11cf7d299b183a630628c2f484b8b3675cf27fd16025 +size 415567 diff --git a/vlm/dev/gMS6FVZvmF/18.png b/vlm/dev/gMS6FVZvmF/18.png new file mode 100644 index 0000000000000000000000000000000000000000..076c1f4a641c92044eef90c63c3f61dfb66563bb --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ca646b4a1bce1a680b381563dac9877c3a8615be79173d18c771c5e985661de +size 436139 diff --git a/vlm/dev/gMS6FVZvmF/19.png b/vlm/dev/gMS6FVZvmF/19.png new file mode 100644 index 0000000000000000000000000000000000000000..70460503b320514bdcb14ac3143e2fd47542ae4c --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cf729e38d925885b188880b8909193f74a5fa4c3379540489c096c2f08a3f44 +size 579343 diff --git a/vlm/dev/gMS6FVZvmF/2.png b/vlm/dev/gMS6FVZvmF/2.png new file mode 100644 index 0000000000000000000000000000000000000000..6675b795ab86df778b3984df12d3c3c359c16af8 --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d379b192438925ea15231acdb759b5669f19d1102a17b9d55c849bb43a83c850 +size 554269 diff --git a/vlm/dev/gMS6FVZvmF/20.png b/vlm/dev/gMS6FVZvmF/20.png new file mode 100644 index 0000000000000000000000000000000000000000..7fa60b9f06646424a32344816e4d1cd034e34a44 --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f27de662fa76a55e164b83541e45bac739d04ec96d9c76b657f6b5f495d0916e +size 380365 diff --git a/vlm/dev/gMS6FVZvmF/21.png b/vlm/dev/gMS6FVZvmF/21.png new file mode 100644 index 0000000000000000000000000000000000000000..57a3d30ca2d5435f93fb9a371594075a5f24dcf2 --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feed5fddd2d7ccfa1bc6ebc1eb099fdb3bd2404533a487852e89ff8091ed4ee4 +size 406344 diff --git a/vlm/dev/gMS6FVZvmF/22.png b/vlm/dev/gMS6FVZvmF/22.png new file mode 100644 index 0000000000000000000000000000000000000000..d351972e1992754eaad9126aa8af5d1f9856e0fa --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd00af9314031acac8e50bd52b4a226672c6b5be0c23bdcc68935c7285ed3371 +size 420322 diff --git a/vlm/dev/gMS6FVZvmF/23.png b/vlm/dev/gMS6FVZvmF/23.png new file mode 100644 index 0000000000000000000000000000000000000000..c3c21924bc45784b6014b00568562120ff73511a --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b873626d557b16d1f41917eab4ee1d39149064fc7156a036eeb686cb169cc57f +size 454707 diff --git a/vlm/dev/gMS6FVZvmF/24.png b/vlm/dev/gMS6FVZvmF/24.png new file mode 100644 index 0000000000000000000000000000000000000000..06d4932438182a88246bbaaeae7f3af43675a18c --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4803977e0cbf2bf2ce5caa96491a21273f81d275d1ec58b539023846e0e13c7 +size 510887 diff --git a/vlm/dev/gMS6FVZvmF/25.png b/vlm/dev/gMS6FVZvmF/25.png new file mode 100644 index 0000000000000000000000000000000000000000..8715e9af367ed1725227079ef3f86bda635d20e3 --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:549352344a17eab7ce97eea8ee52d22b58df6ebfa343174c8dd4a5691922f799 +size 693188 diff --git a/vlm/dev/gMS6FVZvmF/26.png b/vlm/dev/gMS6FVZvmF/26.png new file mode 100644 index 0000000000000000000000000000000000000000..d7f1fc3735dcdaef77eb49b72b3d04393439db0e --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6f28e308bde7b6c3e6c880126d8664528156614a7d964bac3b72f4ca2172ebb +size 478833 diff --git a/vlm/dev/gMS6FVZvmF/27.png b/vlm/dev/gMS6FVZvmF/27.png new file mode 100644 index 0000000000000000000000000000000000000000..95e058a638d6e3d01be37d57ae8109127e390632 --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06d1e2752963524a0366f37c0c15dcae3cb3754393ae8938e90acae938ad107f +size 431801 diff --git a/vlm/dev/gMS6FVZvmF/28.png b/vlm/dev/gMS6FVZvmF/28.png new file mode 100644 index 0000000000000000000000000000000000000000..491686c4853fb772389514b7bb5275adcde1326b --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25e6b5427168e396d224149adc00679e3713d5d86ba1e92179d2a4ff04db0b79 +size 494708 diff --git a/vlm/dev/gMS6FVZvmF/29.png b/vlm/dev/gMS6FVZvmF/29.png new file mode 100644 index 0000000000000000000000000000000000000000..4cd90f05767cfe00f47ea22b0626e797546d8043 --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04f20a9129f93ecadca0c35147d5a551525c1ebe8079cc18eb0aea282de16dc4 +size 479901 diff --git a/vlm/dev/gMS6FVZvmF/3.png b/vlm/dev/gMS6FVZvmF/3.png new file mode 100644 index 0000000000000000000000000000000000000000..e0b3cc6a308e18a4b327f964122b7c86fcfbbcba --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39034345fb77b4752780ea1bce7d2587a2bd8b8687b155408bd0fedd8ba23102 +size 494593 diff --git a/vlm/dev/gMS6FVZvmF/30.png b/vlm/dev/gMS6FVZvmF/30.png new file mode 100644 index 0000000000000000000000000000000000000000..7ce75387021c295df553c22b1833de6610f85731 --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:001c90c68b2cb9c59fdf501f2ced394496c0ca77baf37766ba7a4631428b2c6b +size 387342 diff --git a/vlm/dev/gMS6FVZvmF/31.png b/vlm/dev/gMS6FVZvmF/31.png new file mode 100644 index 0000000000000000000000000000000000000000..c9017104fcb609e091670a32a36649b6f868d704 --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4a6f894bd56c04a5eb6fdc8f112b5075db8dc649d946f9f16cb947fe200687a +size 498892 diff --git a/vlm/dev/gMS6FVZvmF/32.png b/vlm/dev/gMS6FVZvmF/32.png new file mode 100644 index 0000000000000000000000000000000000000000..eb1005ff49c2ebda55a109423448de9aeb5a43f3 --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c7d5eaf5962c6fe45b6c1cd1db1befd83c5b1ed5d5d54d90d9635c8cd3d6b0f +size 501629 diff --git a/vlm/dev/gMS6FVZvmF/33.png b/vlm/dev/gMS6FVZvmF/33.png new file mode 100644 index 0000000000000000000000000000000000000000..fc45bfb424d177af406e690a4b7159d57054f513 --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18e70be5f4589a65e1b72a6634b7001eafd841554dd6fddb927557cf12c788fd +size 171307 diff --git a/vlm/dev/gMS6FVZvmF/4.png b/vlm/dev/gMS6FVZvmF/4.png new file mode 100644 index 0000000000000000000000000000000000000000..85fae4a1ba592812b04bbd54bc5e223f7367b465 --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:944fd4a4e3deaba0144048e58a6dcf51ead492e50453c342cf2e3bfd8f7777fd +size 527322 diff --git a/vlm/dev/gMS6FVZvmF/5.png b/vlm/dev/gMS6FVZvmF/5.png new file mode 100644 index 0000000000000000000000000000000000000000..cad0c75308e8b2880860cbc543ca04be6bc86cb5 --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea854d6875893d707982561c88ca3d6c1fd2c6c6a0f36aa0d6cb59cb67fc307c +size 545046 diff --git a/vlm/dev/gMS6FVZvmF/6.png b/vlm/dev/gMS6FVZvmF/6.png new file mode 100644 index 0000000000000000000000000000000000000000..f1bfdc8b5b8ed42177e63986405db7ae3ca1659c --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17e737a41aed83916a7ec039875b941f347a366c5f02962c8429589d26c3e087 +size 532561 diff --git a/vlm/dev/gMS6FVZvmF/7.png b/vlm/dev/gMS6FVZvmF/7.png new file mode 100644 index 0000000000000000000000000000000000000000..7ac4d46b4e80ee5b57fa01391c32812afbb363c1 --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6b50e8d369c4b584c011e88706b5cf17657b87da56ef917977d04ac9bf723ee +size 439368 diff --git a/vlm/dev/gMS6FVZvmF/8.png b/vlm/dev/gMS6FVZvmF/8.png new file mode 100644 index 0000000000000000000000000000000000000000..34aee713f2cef36ce4a547ce081593c6c44c6a64 --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99664176fbed8099ad1f94677ec24c104392114bade3d7f30bb3f74ff4839277 +size 534306 diff --git a/vlm/dev/gMS6FVZvmF/9.png b/vlm/dev/gMS6FVZvmF/9.png new file mode 100644 index 0000000000000000000000000000000000000000..2250486a8868dc626a9a6545ac9aae290b6ee4b0 --- /dev/null +++ b/vlm/dev/gMS6FVZvmF/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfba9d59899f0d65d95cb160a32980408c35840a8248e0dcb6cf1b409b115834 +size 510828 diff --git a/vlm/dev/gtCPWaY5bNh/0.png b/vlm/dev/gtCPWaY5bNh/0.png new file mode 100644 index 0000000000000000000000000000000000000000..bd4b0267eb77d64defb16ddb0d3db6e5ed1635ae --- /dev/null +++ b/vlm/dev/gtCPWaY5bNh/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5310004918e127ea156717e6d243d9588f46d35b74efe86da65e2f5ae1049634 +size 461847 diff --git a/vlm/dev/gtCPWaY5bNh/1.png b/vlm/dev/gtCPWaY5bNh/1.png new file mode 100644 index 0000000000000000000000000000000000000000..4ecb503e77687ea7cd6075dd46794f027c1eb454 --- /dev/null +++ b/vlm/dev/gtCPWaY5bNh/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5072a0046ac4a3c064d846299ad5d65eef3725bbddc4ee05bee7c9087a472ac +size 589375 diff --git a/vlm/dev/gtCPWaY5bNh/10.png b/vlm/dev/gtCPWaY5bNh/10.png new file mode 100644 index 0000000000000000000000000000000000000000..4d1c3a2fbfbbd03ff6c5bb4f958627bc3106ec98 --- /dev/null +++ b/vlm/dev/gtCPWaY5bNh/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca98b9c45912bb66b0cca47955f1db97702d8ced1b9bf71807fe17d1e87233fa +size 528647 diff --git a/vlm/dev/gtCPWaY5bNh/11.png b/vlm/dev/gtCPWaY5bNh/11.png new file mode 100644 index 0000000000000000000000000000000000000000..88b7fe3d23e3078050fc4d052b6bdae99d8d7ce2 --- /dev/null +++ b/vlm/dev/gtCPWaY5bNh/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11b6cff8a917243b29f1950fb59eefe047dd89c8609a53f213854cf75ea9f650 +size 554331 diff --git a/vlm/dev/gtCPWaY5bNh/12.png b/vlm/dev/gtCPWaY5bNh/12.png new file mode 100644 index 0000000000000000000000000000000000000000..05b684c4ad0b3f1ad0b47abdc23f50e79dee1411 --- /dev/null +++ b/vlm/dev/gtCPWaY5bNh/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c052bc2f5d4a01173e9e61dbb50e1f16ed31db23fbdfcc0c41c5d33fd46035f5 +size 534285 diff --git a/vlm/dev/gtCPWaY5bNh/13.png b/vlm/dev/gtCPWaY5bNh/13.png new file mode 100644 index 0000000000000000000000000000000000000000..6539ca58fb38dc80c832a2430d24be94a185a42b --- /dev/null +++ b/vlm/dev/gtCPWaY5bNh/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6c226e087c6614ad435b31347bf2d6248587ba23186e4bff67dfb392a1b7019 +size 591016 diff --git a/vlm/dev/gtCPWaY5bNh/14.png b/vlm/dev/gtCPWaY5bNh/14.png new file mode 100644 index 0000000000000000000000000000000000000000..976e8627d21bd26fefd82df240a7dc7c7ffce9a6 --- /dev/null +++ b/vlm/dev/gtCPWaY5bNh/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6206a4ba9919cc47debf823775510e93b2aeaa8b1f2c91f82a8b50a65e04b7b +size 586951 diff --git a/vlm/dev/gtCPWaY5bNh/2.png b/vlm/dev/gtCPWaY5bNh/2.png new file mode 100644 index 0000000000000000000000000000000000000000..b9d033cc3018aadebb44cc0163737c191c81d0e5 --- /dev/null +++ b/vlm/dev/gtCPWaY5bNh/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11ec407603aa9d2600e76ec42e4e4a7ba93b19ed593f7321dadce89786bf8f30 +size 563430 diff --git a/vlm/dev/gtCPWaY5bNh/3.png b/vlm/dev/gtCPWaY5bNh/3.png new file mode 100644 index 0000000000000000000000000000000000000000..4c0108a9c5b52e38f3eeb611ccc89f1851f55b67 --- /dev/null +++ b/vlm/dev/gtCPWaY5bNh/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72089dc19d93dcc74fcb9c10eecfc34efd216322f3337137d8134f7235899875 +size 576627 diff --git a/vlm/dev/gtCPWaY5bNh/4.png b/vlm/dev/gtCPWaY5bNh/4.png new file mode 100644 index 0000000000000000000000000000000000000000..0434e2d0bc07317ae8a1894475c592819fa94071 --- /dev/null +++ b/vlm/dev/gtCPWaY5bNh/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3334785fbb5908dd0d19a4c34c8fadcf94baf0a61ea358dead4bc6e5a4684033 +size 600181 diff --git a/vlm/dev/gtCPWaY5bNh/5.png b/vlm/dev/gtCPWaY5bNh/5.png new file mode 100644 index 0000000000000000000000000000000000000000..44622686226509aa171aa2926a499030fda96ddf --- /dev/null +++ b/vlm/dev/gtCPWaY5bNh/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2b0fa411b67ce3503e47825e71e36e542311584416ff9b9983c3c89ce320120 +size 515800 diff --git a/vlm/dev/gtCPWaY5bNh/6.png b/vlm/dev/gtCPWaY5bNh/6.png new file mode 100644 index 0000000000000000000000000000000000000000..8df2f616753f7089326677178209aa8f796e40e5 --- /dev/null +++ b/vlm/dev/gtCPWaY5bNh/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57326ff7a2c4dc7fa360ad2877ebced657c24d3a5a5117ab2608ea78ece7796a +size 685368 diff --git a/vlm/dev/gtCPWaY5bNh/7.png b/vlm/dev/gtCPWaY5bNh/7.png new file mode 100644 index 0000000000000000000000000000000000000000..945b2aec10c2f8dc93e2b3a887d759e7075ff036 --- /dev/null +++ b/vlm/dev/gtCPWaY5bNh/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f71ad9ec62f44fee4e9746056c8198fba19da163dd0c53bdf7caf8968799378 +size 645192 diff --git a/vlm/dev/gtCPWaY5bNh/8.png b/vlm/dev/gtCPWaY5bNh/8.png new file mode 100644 index 0000000000000000000000000000000000000000..43b2d8ed55c9969836f4d942d5cfe52b0bb1383b --- /dev/null +++ b/vlm/dev/gtCPWaY5bNh/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:227ce046845e3a2f39be8bea344409b6a7c937310d06dcaeeace23ad747bb61d +size 665689 diff --git a/vlm/dev/gtCPWaY5bNh/9.png b/vlm/dev/gtCPWaY5bNh/9.png new file mode 100644 index 0000000000000000000000000000000000000000..6e88dffed427cf47a1bbfde081ab698040fff988 --- /dev/null +++ b/vlm/dev/gtCPWaY5bNh/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cac3dbe0c8b6d9b91e2d36b38dbc97e0201f456d8512523dfd9adc7f1d242ff +size 493722 diff --git a/vlm/dev/nXmU89Rfmgg/0.png b/vlm/dev/nXmU89Rfmgg/0.png new file mode 100644 index 0000000000000000000000000000000000000000..8fe06fd3361e7b96b993e65a760e971728c6bab7 --- /dev/null +++ b/vlm/dev/nXmU89Rfmgg/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f629681a60f1e17a2ca8b167c0941790910818dd49a54d43f3e834521383ca7b +size 481785 diff --git a/vlm/dev/nXmU89Rfmgg/1.png b/vlm/dev/nXmU89Rfmgg/1.png new file mode 100644 index 0000000000000000000000000000000000000000..4852226149de98192adcaa185147000976a82ea7 --- /dev/null +++ b/vlm/dev/nXmU89Rfmgg/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebd3596b39d1f0b48689a67ac6b8ef7c68e334ab426cfc14d92dcfb70dc41fe3 +size 523914 diff --git a/vlm/dev/nXmU89Rfmgg/10.png b/vlm/dev/nXmU89Rfmgg/10.png new file mode 100644 index 0000000000000000000000000000000000000000..4b5eea6cff79e67c8d276c0c1a52a563b79fb8c5 --- /dev/null +++ b/vlm/dev/nXmU89Rfmgg/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a27c8c642f90c465594d5169348c8752e439b2bd11423818288706829b7347b5 +size 531854 diff --git a/vlm/dev/nXmU89Rfmgg/11.png b/vlm/dev/nXmU89Rfmgg/11.png new file mode 100644 index 0000000000000000000000000000000000000000..5d9511fc9f2a6c83038faa1858dfa35d3391d4ce --- /dev/null +++ b/vlm/dev/nXmU89Rfmgg/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78a27c2edd2587d8c6f89ec61120c9c636775ce7609330b10838a7ec40523161 +size 479891 diff --git a/vlm/dev/nXmU89Rfmgg/12.png b/vlm/dev/nXmU89Rfmgg/12.png new file mode 100644 index 0000000000000000000000000000000000000000..a0e0c9f35f646d1f797637bc5bf618b00d88bba3 --- /dev/null +++ b/vlm/dev/nXmU89Rfmgg/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a03f6467f4aa9bb155234fc5ae63ccd8d3f434ab803ee7832607bbd4295ae4d5 +size 333553 diff --git a/vlm/dev/nXmU89Rfmgg/13.png b/vlm/dev/nXmU89Rfmgg/13.png new file mode 100644 index 0000000000000000000000000000000000000000..c8ff17bcc1e4d1f349c7fe7823d4d96a65bb8f31 --- /dev/null +++ b/vlm/dev/nXmU89Rfmgg/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95c623d89c3466e32c9939226a1d0785d0ddaa4f78f9693edf2f07c1d78a205f +size 307391 diff --git a/vlm/dev/nXmU89Rfmgg/14.png b/vlm/dev/nXmU89Rfmgg/14.png new file mode 100644 index 0000000000000000000000000000000000000000..49e92465255bc08c3d279419f325e7979d16c792 --- /dev/null +++ b/vlm/dev/nXmU89Rfmgg/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7592ca68908468a3a3d8c18dd27c8a172d33b5946282deb9924a97e4d78c98f4 +size 240621 diff --git a/vlm/dev/nXmU89Rfmgg/2.png b/vlm/dev/nXmU89Rfmgg/2.png new file mode 100644 index 0000000000000000000000000000000000000000..48db83ab5a52206f74228baf5a48245dc840c518 --- /dev/null +++ b/vlm/dev/nXmU89Rfmgg/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:062d7795bea295288bb6360c5699ebe70ea189125325f11497e02c233361155c +size 520426 diff --git a/vlm/dev/nXmU89Rfmgg/3.png b/vlm/dev/nXmU89Rfmgg/3.png new file mode 100644 index 0000000000000000000000000000000000000000..124185f30514fbc280aaea592f6522de3bcfa4ab --- /dev/null +++ b/vlm/dev/nXmU89Rfmgg/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97968f5adcd9a1ecbe24cc49cc4c84f1009462bae1788d8350898249dfb5317b +size 506785 diff --git a/vlm/dev/nXmU89Rfmgg/4.png b/vlm/dev/nXmU89Rfmgg/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3b812d82cbc80573a8c547ba2bb24bd3c5817983 --- /dev/null +++ b/vlm/dev/nXmU89Rfmgg/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d0323ebabdcc80cf39bfe185ac5c288e88a3328b7e625016be8734cac45727d +size 538721 diff --git a/vlm/dev/nXmU89Rfmgg/5.png b/vlm/dev/nXmU89Rfmgg/5.png new file mode 100644 index 0000000000000000000000000000000000000000..f77274f4ce062fd85b6ee2a27492b3c7a89e98e6 --- /dev/null +++ b/vlm/dev/nXmU89Rfmgg/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cf8717e6282ba3f318678ed12deb5f7ffbdb10efd22304e2f639cedc283a3ea +size 460872 diff --git a/vlm/dev/nXmU89Rfmgg/6.png b/vlm/dev/nXmU89Rfmgg/6.png new file mode 100644 index 0000000000000000000000000000000000000000..89f21cd6e2972d031501e6a0807b824af63544fb --- /dev/null +++ b/vlm/dev/nXmU89Rfmgg/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb063f5c272634e35ef5e816e8ac611348ce60010cea2a677e924e04dc07b8af +size 575536 diff --git a/vlm/dev/nXmU89Rfmgg/7.png b/vlm/dev/nXmU89Rfmgg/7.png new file mode 100644 index 0000000000000000000000000000000000000000..00c5d72433e87771923c3a7f4afc846c2c0375df --- /dev/null +++ b/vlm/dev/nXmU89Rfmgg/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fa399ad3625125d54b031679db7aa7b165c9bd1bfd675f90915e961a9ebd506 +size 598244 diff --git a/vlm/dev/nXmU89Rfmgg/8.png b/vlm/dev/nXmU89Rfmgg/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e00ea13ce6373f62030896c09740e6fedfcb82b3 --- /dev/null +++ b/vlm/dev/nXmU89Rfmgg/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1915504ec0db812a04ba1e9e07d2b2c3bb825d949dc18abf0d0dc787a96dfe72 +size 619372 diff --git a/vlm/dev/nXmU89Rfmgg/9.png b/vlm/dev/nXmU89Rfmgg/9.png new file mode 100644 index 0000000000000000000000000000000000000000..484ae5b6c8f47bbb90ad046396bcf41826de74bb --- /dev/null +++ b/vlm/dev/nXmU89Rfmgg/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00d4762a03367615c726c7ea9c11a26c0275918d84f26ac1ce7c35f01ab3138a +size 580752 diff --git a/vlm/dev/p40XRfBX96/0.png b/vlm/dev/p40XRfBX96/0.png new file mode 100644 index 0000000000000000000000000000000000000000..1af16bd3fa70b1bf8ec2c2c364e345b3ced34be3 --- /dev/null +++ b/vlm/dev/p40XRfBX96/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84764d0f65698747f38fe021d3cd58d9fda16af1984e0779b60eb527286715c0 +size 403874 diff --git a/vlm/dev/p40XRfBX96/1.png b/vlm/dev/p40XRfBX96/1.png new file mode 100644 index 0000000000000000000000000000000000000000..d469b580d0271163902cc737d2497d8d5542905b --- /dev/null +++ b/vlm/dev/p40XRfBX96/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4af9689b788ed3baf923365434a1fcba2285c92a12471d4bd027632db8be855e +size 514646 diff --git a/vlm/dev/p40XRfBX96/10.png b/vlm/dev/p40XRfBX96/10.png new file mode 100644 index 0000000000000000000000000000000000000000..981e60050249af9dc598d3c37c6b81b477168d59 --- /dev/null +++ b/vlm/dev/p40XRfBX96/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b69e14aa7ca7403f2caea6e0ef2c46dc2bc7ed31d7a1f59bbf3d6d032f260ae1 +size 591796 diff --git a/vlm/dev/p40XRfBX96/11.png b/vlm/dev/p40XRfBX96/11.png new file mode 100644 index 0000000000000000000000000000000000000000..03f2d423ad4f985aaeffb4c5b5abe3625fe3f2ea --- /dev/null +++ b/vlm/dev/p40XRfBX96/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bf039ae3f3f8485bf5a4fb4cd88f8ed002ebc5fec1050f8b4336efaac42dfec +size 528509 diff --git a/vlm/dev/p40XRfBX96/12.png b/vlm/dev/p40XRfBX96/12.png new file mode 100644 index 0000000000000000000000000000000000000000..cc92e26cdb7a2211c3558e3fa8cd635fa4531c3c --- /dev/null +++ b/vlm/dev/p40XRfBX96/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e3e9b8feced851c26e05a63834224f109d47380fe17003e32633f197eeb5371 +size 469252 diff --git a/vlm/dev/p40XRfBX96/13.png b/vlm/dev/p40XRfBX96/13.png new file mode 100644 index 0000000000000000000000000000000000000000..1e70993397af72fdc631c1d2c924a084466c7c36 --- /dev/null +++ b/vlm/dev/p40XRfBX96/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5c19b964260055c14b4e2bd6ff377636cf2e21f5b1185e2000953778bb58947 +size 509833 diff --git a/vlm/dev/p40XRfBX96/14.png b/vlm/dev/p40XRfBX96/14.png new file mode 100644 index 0000000000000000000000000000000000000000..0f423a75336d2caa15a6e9e16e3699abfe6422c4 --- /dev/null +++ b/vlm/dev/p40XRfBX96/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2faee46303a67bd1397a7fd5f0b6a2b216a7e2c65a0ceabaf35ada4f7ebc76a5 +size 692184 diff --git a/vlm/dev/p40XRfBX96/15.png b/vlm/dev/p40XRfBX96/15.png new file mode 100644 index 0000000000000000000000000000000000000000..795e8360727a4a5253cd615865b96a8ad7716dc9 --- /dev/null +++ b/vlm/dev/p40XRfBX96/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d816d999ec44f0489a1a95ace34b16d146be4e3affb354d4d48e9009e95d1162 +size 550629 diff --git a/vlm/dev/p40XRfBX96/16.png b/vlm/dev/p40XRfBX96/16.png new file mode 100644 index 0000000000000000000000000000000000000000..f0b8c82b9e4116fcf95815426d42dce3c1c5af8a --- /dev/null +++ b/vlm/dev/p40XRfBX96/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72f4f9e29361b39ec38c3e7c48a2d50815a697c18c0cbdec42e23d1a6c5cc6d3 +size 539170 diff --git a/vlm/dev/p40XRfBX96/17.png b/vlm/dev/p40XRfBX96/17.png new file mode 100644 index 0000000000000000000000000000000000000000..a02ea47e8612ee01370b440619bd66d17bda318d --- /dev/null +++ b/vlm/dev/p40XRfBX96/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:904562905d81798c490b02675c9e58f54d6900a069e3fc7edc8db2be7412aca6 +size 416663 diff --git a/vlm/dev/p40XRfBX96/18.png b/vlm/dev/p40XRfBX96/18.png new file mode 100644 index 0000000000000000000000000000000000000000..809b5a0aa83f256c6fd56dec7299098115010217 --- /dev/null +++ b/vlm/dev/p40XRfBX96/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab08f8f8b8a713cf840d4aa6c16a382561617ae467e792b019014ed8b21cd87f +size 315912 diff --git a/vlm/dev/p40XRfBX96/19.png b/vlm/dev/p40XRfBX96/19.png new file mode 100644 index 0000000000000000000000000000000000000000..35507406c4109cdbf7af891f48e78e577b7ceadf --- /dev/null +++ b/vlm/dev/p40XRfBX96/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2d8c2cf811987314ef3b559436a8f57f419c61b96bc67bfb530c630a99e6526 +size 124717 diff --git a/vlm/dev/p40XRfBX96/2.png b/vlm/dev/p40XRfBX96/2.png new file mode 100644 index 0000000000000000000000000000000000000000..5905c54ffb4b67795e2871b6c538915040cf5029 --- /dev/null +++ b/vlm/dev/p40XRfBX96/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b592e79322d62899db2ed42792f179043ea7e47e939eaa3ca52fa5bbc6932f57 +size 546900 diff --git a/vlm/dev/p40XRfBX96/20.png b/vlm/dev/p40XRfBX96/20.png new file mode 100644 index 0000000000000000000000000000000000000000..d4d4a671bc38588c489dc6b09327f696b7ec4605 --- /dev/null +++ b/vlm/dev/p40XRfBX96/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a902bd953d54e68921638859693ff4e131171b3d74133a56c5c01d33636ad899 +size 492597 diff --git a/vlm/dev/p40XRfBX96/21.png b/vlm/dev/p40XRfBX96/21.png new file mode 100644 index 0000000000000000000000000000000000000000..dce871e47dfdbc0a473327efc411a5fd7bbc8e36 --- /dev/null +++ b/vlm/dev/p40XRfBX96/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47177b3486486a2fce797c1df3d61927d0c819f5484ac7fb74e513b04c8e1768 +size 461558 diff --git a/vlm/dev/p40XRfBX96/22.png b/vlm/dev/p40XRfBX96/22.png new file mode 100644 index 0000000000000000000000000000000000000000..22dfaad2c7ae767e6f2aa8bba39b32ace9c49650 --- /dev/null +++ b/vlm/dev/p40XRfBX96/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:417de49b55a82ff3d3d38bcec1024b18daf0155d47c107fb7745b3b85b5794c8 +size 517944 diff --git a/vlm/dev/p40XRfBX96/23.png b/vlm/dev/p40XRfBX96/23.png new file mode 100644 index 0000000000000000000000000000000000000000..a4c4b7bbc1a03eaf0a77e4eca0dcce44d6042d7c --- /dev/null +++ b/vlm/dev/p40XRfBX96/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64130b04ce0a7ae5e9b4395f146970aa3800dc45bb5d3db7ff8bdf3df009cc97 +size 514749 diff --git a/vlm/dev/p40XRfBX96/24.png b/vlm/dev/p40XRfBX96/24.png new file mode 100644 index 0000000000000000000000000000000000000000..a8cc120661e92eba7db5e5cacdde9a43900fb572 --- /dev/null +++ b/vlm/dev/p40XRfBX96/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7d014b09ec321324ee95f1fcb0be9aaaf8ff12ddefe85598bf985cdd9fc478f +size 370230 diff --git a/vlm/dev/p40XRfBX96/25.png b/vlm/dev/p40XRfBX96/25.png new file mode 100644 index 0000000000000000000000000000000000000000..cf1d06007c4c197cd16508fc761825f32103f08a --- /dev/null +++ b/vlm/dev/p40XRfBX96/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b3ce2d1e1dc611a0cdbe47dfe6270d3cd16dfa682578705ebac79356452cffd +size 391660 diff --git a/vlm/dev/p40XRfBX96/26.png b/vlm/dev/p40XRfBX96/26.png new file mode 100644 index 0000000000000000000000000000000000000000..d07ef545eacaf263acc9ccddebec17a234770ff6 --- /dev/null +++ b/vlm/dev/p40XRfBX96/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52517311144acb225e8769b535f554a2bcec9fa08c2af88d538cd0c968e3b375 +size 296507 diff --git a/vlm/dev/p40XRfBX96/27.png b/vlm/dev/p40XRfBX96/27.png new file mode 100644 index 0000000000000000000000000000000000000000..44761b1146c2d5c94447f3fe94f7445fe25e0bc2 --- /dev/null +++ b/vlm/dev/p40XRfBX96/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee4173c20586af99080f5336070d516ebb621c98cce523f1521874493d0ecf7f +size 348545 diff --git a/vlm/dev/p40XRfBX96/28.png b/vlm/dev/p40XRfBX96/28.png new file mode 100644 index 0000000000000000000000000000000000000000..5ad40dcb05dff2ca893a819d83758ba130672d15 --- /dev/null +++ b/vlm/dev/p40XRfBX96/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:998a273afeb165a55562402d44dd97818b6bcc0323b5bd3d9fa8a5786204af80 +size 479394 diff --git a/vlm/dev/p40XRfBX96/29.png b/vlm/dev/p40XRfBX96/29.png new file mode 100644 index 0000000000000000000000000000000000000000..75cc66a2bc55b88d1afe48393fbd57d8f852b354 --- /dev/null +++ b/vlm/dev/p40XRfBX96/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8a970b3cb9bf61a8608e48b5dc6cdddf5a31e8568402557e143e82982546b16 +size 414241 diff --git a/vlm/dev/p40XRfBX96/3.png b/vlm/dev/p40XRfBX96/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b84511f64fc0f848564e6b3718319ac8c64ebf7d --- /dev/null +++ b/vlm/dev/p40XRfBX96/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72c1bc5aae0a290a429eb394be7c13e414ac16e0da10a1af2d418b7ae12ae6a6 +size 484305 diff --git a/vlm/dev/p40XRfBX96/30.png b/vlm/dev/p40XRfBX96/30.png new file mode 100644 index 0000000000000000000000000000000000000000..86b3de55ed5536f007c0af49ded7c1b6af980caa --- /dev/null +++ b/vlm/dev/p40XRfBX96/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:833df64f7eb3fc9e14f8dbd7dc9dc36d7a31107e00e73e25de3bdbc45475d8aa +size 241130 diff --git a/vlm/dev/p40XRfBX96/31.png b/vlm/dev/p40XRfBX96/31.png new file mode 100644 index 0000000000000000000000000000000000000000..b1f013f60bc74ce05c6a4565b06ccafe0d14ee5b --- /dev/null +++ b/vlm/dev/p40XRfBX96/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a76b743cd894a2caebd53e857221c4f7704703ce421aa13c71380697f913882a +size 415450 diff --git a/vlm/dev/p40XRfBX96/32.png b/vlm/dev/p40XRfBX96/32.png new file mode 100644 index 0000000000000000000000000000000000000000..c63516b98c1332896846d56953c3524bd1b26569 --- /dev/null +++ b/vlm/dev/p40XRfBX96/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7fb84441d0a51fc561831af59bc78263a94434169ada5d55a589e25a629af81 +size 476596 diff --git a/vlm/dev/p40XRfBX96/33.png b/vlm/dev/p40XRfBX96/33.png new file mode 100644 index 0000000000000000000000000000000000000000..19b6a02e43faa0a226c03871e9163f6ed633d106 --- /dev/null +++ b/vlm/dev/p40XRfBX96/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c8864bfdd72a20e6acd827490a9757b8922deac5c794569b8d2a9ce6a916e5c +size 452871 diff --git a/vlm/dev/p40XRfBX96/34.png b/vlm/dev/p40XRfBX96/34.png new file mode 100644 index 0000000000000000000000000000000000000000..a6460277af8a3c1bb930b4cd795ae01ee4c05bdd --- /dev/null +++ b/vlm/dev/p40XRfBX96/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23de0f225586a34108ba25fb60b8fb619208b6e6980bdefbcc92b6371fa5d2ed +size 378892 diff --git a/vlm/dev/p40XRfBX96/35.png b/vlm/dev/p40XRfBX96/35.png new file mode 100644 index 0000000000000000000000000000000000000000..9863d1d2ac3073033cde9171e135776491da0d5e --- /dev/null +++ b/vlm/dev/p40XRfBX96/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4766fa2db4ca12973b7472cd9c1ce7cdb90628f0cd2db37b5f56d67681489df2 +size 329352 diff --git a/vlm/dev/p40XRfBX96/36.png b/vlm/dev/p40XRfBX96/36.png new file mode 100644 index 0000000000000000000000000000000000000000..335d104a53858733aca8f37a48591b287eb2bfca --- /dev/null +++ b/vlm/dev/p40XRfBX96/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80b3dd1e42c42c5cfacffeed85d4f0e8f0ae09de0355914b696e8c6b37b9516a +size 314913 diff --git a/vlm/dev/p40XRfBX96/37.png b/vlm/dev/p40XRfBX96/37.png new file mode 100644 index 0000000000000000000000000000000000000000..3136dfd3c3e93a4065bacfd579a552a66a0405c2 --- /dev/null +++ b/vlm/dev/p40XRfBX96/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2651e14711667af8b566cf3b244854d0be7b4a5d9e7d15a921618140e345f9d0 +size 120838 diff --git a/vlm/dev/p40XRfBX96/38.png b/vlm/dev/p40XRfBX96/38.png new file mode 100644 index 0000000000000000000000000000000000000000..6ae2c3358133c6ce9ae4677f960e01dfea354bfa --- /dev/null +++ b/vlm/dev/p40XRfBX96/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b486783fede9f385b1f20ca5f9e68cd42c225b2396b53c8ff2e7e7c698e1128 +size 395989 diff --git a/vlm/dev/p40XRfBX96/39.png b/vlm/dev/p40XRfBX96/39.png new file mode 100644 index 0000000000000000000000000000000000000000..3b698ef0a6e3a9c948e7365bf9344b6c41d968eb --- /dev/null +++ b/vlm/dev/p40XRfBX96/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a29f6cb16b1f1c6d3bcf0e8db36c173598f48f0bc5eea44f8bcc70f91ea75f8 +size 306261 diff --git a/vlm/dev/p40XRfBX96/4.png b/vlm/dev/p40XRfBX96/4.png new file mode 100644 index 0000000000000000000000000000000000000000..d5ffaca2cc9bf2bc983e725046e0f590b3955a8a --- /dev/null +++ b/vlm/dev/p40XRfBX96/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17d3321d940ebaea9b71b5cfc17c1ab3bb709bba7a6c7e663e18f3fe6990b334 +size 504823 diff --git a/vlm/dev/p40XRfBX96/40.png b/vlm/dev/p40XRfBX96/40.png new file mode 100644 index 0000000000000000000000000000000000000000..8f322df33df9e13ab85df214bdb075d289646976 --- /dev/null +++ b/vlm/dev/p40XRfBX96/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf061d79f1eb24f0491e95926e047a5496da1467e913d4c06a924620c9f22132 +size 348576 diff --git a/vlm/dev/p40XRfBX96/41.png b/vlm/dev/p40XRfBX96/41.png new file mode 100644 index 0000000000000000000000000000000000000000..90c6a61f1098a92bea0a7912c01752ce379f7862 --- /dev/null +++ b/vlm/dev/p40XRfBX96/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:820881ff72d7200f5f67ff47697631a9615000fca312267d1329d60c07cb9f84 +size 433629 diff --git a/vlm/dev/p40XRfBX96/42.png b/vlm/dev/p40XRfBX96/42.png new file mode 100644 index 0000000000000000000000000000000000000000..cea6b762c015a8310dc5ddaaaf018ef81359e849 --- /dev/null +++ b/vlm/dev/p40XRfBX96/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f160c1465662787bd61f399c153f57b13ab58c3a9f36e1c3949aafcc761b279 +size 323682 diff --git a/vlm/dev/p40XRfBX96/43.png b/vlm/dev/p40XRfBX96/43.png new file mode 100644 index 0000000000000000000000000000000000000000..b960e5617c1761b12f8438477805208f7e027f77 --- /dev/null +++ b/vlm/dev/p40XRfBX96/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b908f0ccdbb2351b56de0cef9f09c099cb8fb5ad379ebfbd4f9008c0fe452c9 +size 306724 diff --git a/vlm/dev/p40XRfBX96/44.png b/vlm/dev/p40XRfBX96/44.png new file mode 100644 index 0000000000000000000000000000000000000000..9bc8cc3836b96128c47376d809f2c60f5b3ac52d --- /dev/null +++ b/vlm/dev/p40XRfBX96/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11252610ec93a5681dd710e539eaec1bc249c864725b3f8e0222d69ac7544970 +size 407966 diff --git a/vlm/dev/p40XRfBX96/45.png b/vlm/dev/p40XRfBX96/45.png new file mode 100644 index 0000000000000000000000000000000000000000..771b95a9d318a7b437f37236ee6f96f791900853 --- /dev/null +++ b/vlm/dev/p40XRfBX96/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7dc51bb2e1c708588f35befbe73d99265b567360df8c737ef6d5018f35bbb69 +size 138597 diff --git a/vlm/dev/p40XRfBX96/46.png b/vlm/dev/p40XRfBX96/46.png new file mode 100644 index 0000000000000000000000000000000000000000..ea692a7baaaa60f432601d0ab46741d82595efc7 --- /dev/null +++ b/vlm/dev/p40XRfBX96/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2265cd155620deb7201f2f5038e42e33039f06100a665d21241dc5f6aa92d744 +size 364644 diff --git a/vlm/dev/p40XRfBX96/47.png b/vlm/dev/p40XRfBX96/47.png new file mode 100644 index 0000000000000000000000000000000000000000..09e90876a6a81173f28b00ae58637fb3a0288ce1 --- /dev/null +++ b/vlm/dev/p40XRfBX96/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:585e2e953c09f70485d5f30b40a388833c714fd973f09ec514a292859aa1f2e2 +size 365611 diff --git a/vlm/dev/p40XRfBX96/48.png b/vlm/dev/p40XRfBX96/48.png new file mode 100644 index 0000000000000000000000000000000000000000..3f4ea02f53886d43bd9912622001ea8488ff4345 --- /dev/null +++ b/vlm/dev/p40XRfBX96/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a60ddb669c00183206664971e79a4e295ac974f6e507c7922b104656c4df22cb +size 326304 diff --git a/vlm/dev/p40XRfBX96/49.png b/vlm/dev/p40XRfBX96/49.png new file mode 100644 index 0000000000000000000000000000000000000000..cfac58ff6512e9a1a3f687f19b50f07abe073b3c --- /dev/null +++ b/vlm/dev/p40XRfBX96/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68ddb889fe22f33047b8d7a0a467217ea2c6000320eee72966cfcdfe299ed850 +size 390912 diff --git a/vlm/dev/p40XRfBX96/5.png b/vlm/dev/p40XRfBX96/5.png new file mode 100644 index 0000000000000000000000000000000000000000..3ed7b890b09f2e8f36d0a1875dd359a8967d41e3 --- /dev/null +++ b/vlm/dev/p40XRfBX96/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fab58b55b91e97624d1e6fb74257ab0af477e7f0528e5e67e7bff5cf7892214 +size 516452 diff --git a/vlm/dev/p40XRfBX96/50.png b/vlm/dev/p40XRfBX96/50.png new file mode 100644 index 0000000000000000000000000000000000000000..dbaca6f701da20cb0608cefcea9c3fc82fd3bdaa --- /dev/null +++ b/vlm/dev/p40XRfBX96/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9510422a911b9853306590081aaee6d973c1cdd2198a41e0ced7468acd05d35c +size 132247 diff --git a/vlm/dev/p40XRfBX96/51.png b/vlm/dev/p40XRfBX96/51.png new file mode 100644 index 0000000000000000000000000000000000000000..74da545319975ec99363eac686f8c3f5345120f0 --- /dev/null +++ b/vlm/dev/p40XRfBX96/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aefd0b2cd81be0bde517cd506c4f8af8127571fa004d8e0ba0a57de6cdb4498 +size 177779 diff --git a/vlm/dev/p40XRfBX96/52.png b/vlm/dev/p40XRfBX96/52.png new file mode 100644 index 0000000000000000000000000000000000000000..c945e5578b308d6eb94ac7ba1f0eaf734876c684 --- /dev/null +++ b/vlm/dev/p40XRfBX96/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00af75a96ba3627994d25154fcaf8a30945041d0d621f797920c37c649882e7c +size 492545 diff --git a/vlm/dev/p40XRfBX96/53.png b/vlm/dev/p40XRfBX96/53.png new file mode 100644 index 0000000000000000000000000000000000000000..ec3e6019fc2b340ba9514656067fd249bb490a84 --- /dev/null +++ b/vlm/dev/p40XRfBX96/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ecc0835f8c42bc879f40b2bd49d9a6c8c9b29e601898c7f426c4e8907dcb007 +size 454686 diff --git a/vlm/dev/p40XRfBX96/54.png b/vlm/dev/p40XRfBX96/54.png new file mode 100644 index 0000000000000000000000000000000000000000..311b286d2e7188527792b12afa7715d6e29ecd81 --- /dev/null +++ b/vlm/dev/p40XRfBX96/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:628a7693c62f0e69779d37e069bdc272c1237858b32b69c249e55ab9d729bf47 +size 390519 diff --git a/vlm/dev/p40XRfBX96/6.png b/vlm/dev/p40XRfBX96/6.png new file mode 100644 index 0000000000000000000000000000000000000000..a4b4f586dbce13123e40bf27886b7987c046d85f --- /dev/null +++ b/vlm/dev/p40XRfBX96/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff8d73dd429ff4769b5277475c5eefe635598c61c0a71a2d976871e0c142a4da +size 509915 diff --git a/vlm/dev/p40XRfBX96/7.png b/vlm/dev/p40XRfBX96/7.png new file mode 100644 index 0000000000000000000000000000000000000000..259369596096eb237a4a467ec7ccd74e68d49535 --- /dev/null +++ b/vlm/dev/p40XRfBX96/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02cdd0c3798001f2c351c1bb55259c75c293bdf99e44183fed41d18f97edfbc9 +size 495024 diff --git a/vlm/dev/p40XRfBX96/8.png b/vlm/dev/p40XRfBX96/8.png new file mode 100644 index 0000000000000000000000000000000000000000..9f6dc1f0b8f937e5f7da786b0aad0f93d36991e6 --- /dev/null +++ b/vlm/dev/p40XRfBX96/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:406e5182fe50a9285d43f2812f9bd277d2082783e0f97dbeea54a49f59c157e4 +size 530068 diff --git a/vlm/dev/p40XRfBX96/9.png b/vlm/dev/p40XRfBX96/9.png new file mode 100644 index 0000000000000000000000000000000000000000..80853bf15292e96e0a10b3747898451b651aeb00 --- /dev/null +++ b/vlm/dev/p40XRfBX96/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a08e2f5ae7ea86da7589bc2743e2068f32abc9113b47d48ae0592f4fed9893f +size 499496 diff --git a/vlm/dev/u03xn1COsO/0.png b/vlm/dev/u03xn1COsO/0.png new file mode 100644 index 0000000000000000000000000000000000000000..a6586ac3f353cec9b2a052e842a95dc5682fde51 --- /dev/null +++ b/vlm/dev/u03xn1COsO/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49aa3612b5013694c0f41eeb21fc8784f9d0d3f58750876b2f7df9b0e6faf147 +size 699492 diff --git a/vlm/dev/u03xn1COsO/1.png b/vlm/dev/u03xn1COsO/1.png new file mode 100644 index 0000000000000000000000000000000000000000..cf14080d0ef65194f4d1ff0d682061041e23f6d8 --- /dev/null +++ b/vlm/dev/u03xn1COsO/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d300775e919decf0c34d2638098fe3499f7bb0d5bed0920dae1e82168df95bc3 +size 569089 diff --git a/vlm/dev/u03xn1COsO/10.png b/vlm/dev/u03xn1COsO/10.png new file mode 100644 index 0000000000000000000000000000000000000000..bdb38821edb5e7cd4f543bd4db0799b5bad82dcb --- /dev/null +++ b/vlm/dev/u03xn1COsO/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7c0dd3cb1336a00dc7ec2995526270293f84f062d73b82b37c6a945675d3cab +size 898845 diff --git a/vlm/dev/u03xn1COsO/11.png b/vlm/dev/u03xn1COsO/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a456bee3d57e36e61f8564161232a7d8b7eb73ce --- /dev/null +++ b/vlm/dev/u03xn1COsO/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:217fbfab8a116fec890f7e7b477a00ce9ceba5fa473c7c67228fe7c0ebe91abe +size 917381 diff --git a/vlm/dev/u03xn1COsO/12.png b/vlm/dev/u03xn1COsO/12.png new file mode 100644 index 0000000000000000000000000000000000000000..97b1c2543ea0b51a857501e952f76b20c77ba133 --- /dev/null +++ b/vlm/dev/u03xn1COsO/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:298703971d504bc62f37035584217d9f6f4e56d012b22d22fd80fc8aa41a218c +size 701963 diff --git a/vlm/dev/u03xn1COsO/13.png b/vlm/dev/u03xn1COsO/13.png new file mode 100644 index 0000000000000000000000000000000000000000..cd49491d936199bf893a64a70cb863792c501b34 --- /dev/null +++ b/vlm/dev/u03xn1COsO/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5b711215b9f91b44aa905cc539ed46655453b12da96e13a737ad3a6d1cea895 +size 472132 diff --git a/vlm/dev/u03xn1COsO/14.png b/vlm/dev/u03xn1COsO/14.png new file mode 100644 index 0000000000000000000000000000000000000000..80b397b330239e7108de2e90512dfe1dfd12f51a --- /dev/null +++ b/vlm/dev/u03xn1COsO/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05480895033897a2147bbbc40d975d951f54fbb997dadcda214e1305226e492c +size 513545 diff --git a/vlm/dev/u03xn1COsO/15.png b/vlm/dev/u03xn1COsO/15.png new file mode 100644 index 0000000000000000000000000000000000000000..d188cfeb9a9aed72f0526af450bc71ba0775fed8 --- /dev/null +++ b/vlm/dev/u03xn1COsO/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dead2a582e727ab10b68969f563d7d3364f0d273fed0fc6d464ae010f9f4cdd6 +size 525577 diff --git a/vlm/dev/u03xn1COsO/16.png b/vlm/dev/u03xn1COsO/16.png new file mode 100644 index 0000000000000000000000000000000000000000..9f58635ae6f5019bfeaa05e8f0f0d4a3e309c534 --- /dev/null +++ b/vlm/dev/u03xn1COsO/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75b0a6330b560c6afe044c435d891db7571b496377d97485fd4170aad9451327 +size 552329 diff --git a/vlm/dev/u03xn1COsO/17.png b/vlm/dev/u03xn1COsO/17.png new file mode 100644 index 0000000000000000000000000000000000000000..e8c45c4b1a3131661599177990b38adef1cc16c1 --- /dev/null +++ b/vlm/dev/u03xn1COsO/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad3d1cfda680393c8abeb6ea105589facdbd742d28527b3f4acc810b56ffa863 +size 447841 diff --git a/vlm/dev/u03xn1COsO/18.png b/vlm/dev/u03xn1COsO/18.png new file mode 100644 index 0000000000000000000000000000000000000000..21152a0f1f1fad86daf88601a2f0524ceae68283 --- /dev/null +++ b/vlm/dev/u03xn1COsO/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8ee10d959fb600f42fe6b72c0b552264724400fe359551400216a2e1c427e74 +size 439916 diff --git a/vlm/dev/u03xn1COsO/19.png b/vlm/dev/u03xn1COsO/19.png new file mode 100644 index 0000000000000000000000000000000000000000..b3f08a275769d8fa9d25745fb74e2a9d5373e096 --- /dev/null +++ b/vlm/dev/u03xn1COsO/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d573d1e9cf1f3f85b88a0d1e5129e8c8708c506412c56bbb56be9caf276ef53 +size 435029 diff --git a/vlm/dev/u03xn1COsO/2.png b/vlm/dev/u03xn1COsO/2.png new file mode 100644 index 0000000000000000000000000000000000000000..e925c477d63259f096bbc073c7bfa5a958c3cf9b --- /dev/null +++ b/vlm/dev/u03xn1COsO/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79d9dc8816e9e1ed5ec7a3066b172d8332fb6ce0bd580dc361dedeb6514b4470 +size 817965 diff --git a/vlm/dev/u03xn1COsO/20.png b/vlm/dev/u03xn1COsO/20.png new file mode 100644 index 0000000000000000000000000000000000000000..e6b0887067de9db5e904486bf063c3d991da406e --- /dev/null +++ b/vlm/dev/u03xn1COsO/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa174d9982815e590df00fb172905d891d3edf26a85d48b253de8c06b9fb4fd5 +size 532613 diff --git a/vlm/dev/u03xn1COsO/21.png b/vlm/dev/u03xn1COsO/21.png new file mode 100644 index 0000000000000000000000000000000000000000..cd51a4303257696b0a154cd5e5e2278afb31fb12 --- /dev/null +++ b/vlm/dev/u03xn1COsO/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67bf2e20b4fae63cf113ed5568c237f50fb90f9102360faa67cf9edf0ddc6f3d +size 460255 diff --git a/vlm/dev/u03xn1COsO/22.png b/vlm/dev/u03xn1COsO/22.png new file mode 100644 index 0000000000000000000000000000000000000000..ee06ccb95ff0df021ff5fe85600cb1fed9ee084b --- /dev/null +++ b/vlm/dev/u03xn1COsO/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1272ee7d12aa92aef9a0c12c62946d0f31fbbd196e6f9a6b3d43ec63fdfd86d1 +size 482325 diff --git a/vlm/dev/u03xn1COsO/23.png b/vlm/dev/u03xn1COsO/23.png new file mode 100644 index 0000000000000000000000000000000000000000..2a0b5a284c9a55c6338cda62bcf966598dc38fb4 --- /dev/null +++ b/vlm/dev/u03xn1COsO/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f52b2ceea409c77ec74ff0252578cbc7ba3d40723d60e4aef654dbd5b15da6a +size 438491 diff --git a/vlm/dev/u03xn1COsO/24.png b/vlm/dev/u03xn1COsO/24.png new file mode 100644 index 0000000000000000000000000000000000000000..2c3223d356adde110563cb8a865230a95db95519 --- /dev/null +++ b/vlm/dev/u03xn1COsO/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d2cb32fdcb10d1bce890b2fe2977bf745485546bc5ab4b73ed5d47b20c98d0f +size 494329 diff --git a/vlm/dev/u03xn1COsO/25.png b/vlm/dev/u03xn1COsO/25.png new file mode 100644 index 0000000000000000000000000000000000000000..b4e260c0896d16c51ddcf23a40d7cf5304f49e1a --- /dev/null +++ b/vlm/dev/u03xn1COsO/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6834f807cd5122e18ec6491cfb5ce71ff4628523c6c2dab2395e53efc1c7c956 +size 501588 diff --git a/vlm/dev/u03xn1COsO/26.png b/vlm/dev/u03xn1COsO/26.png new file mode 100644 index 0000000000000000000000000000000000000000..b2d1a9a949ea44ba13bb834d2e1dee9149975fd8 --- /dev/null +++ b/vlm/dev/u03xn1COsO/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3e3828ae7bd912d9c6ac8d69a93407e2ef8f013846bbd0180d39303199be764 +size 477216 diff --git a/vlm/dev/u03xn1COsO/27.png b/vlm/dev/u03xn1COsO/27.png new file mode 100644 index 0000000000000000000000000000000000000000..2b7c49fc198c572bdff8c6ed26f5cfa09fbd53fc --- /dev/null +++ b/vlm/dev/u03xn1COsO/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b17799ab93ffb2eb224f9f8fcd8777f3124130f06e62fa8a023bed82766b5a8 +size 497286 diff --git a/vlm/dev/u03xn1COsO/28.png b/vlm/dev/u03xn1COsO/28.png new file mode 100644 index 0000000000000000000000000000000000000000..de157385c42af6bec7c330c746ac6ca5e5448442 --- /dev/null +++ b/vlm/dev/u03xn1COsO/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4981fe0b256e20777163131bd1f45557ee57058f364c97316be364cb197e589 +size 417451 diff --git a/vlm/dev/u03xn1COsO/29.png b/vlm/dev/u03xn1COsO/29.png new file mode 100644 index 0000000000000000000000000000000000000000..2e7e7a11992a2df170f525bf90ffa66bcb641a13 --- /dev/null +++ b/vlm/dev/u03xn1COsO/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4422ee976c7ca6b033083349bec0f00fabc0e2a0f2aa3dd988241bce3949e4d3 +size 346494 diff --git a/vlm/dev/u03xn1COsO/3.png b/vlm/dev/u03xn1COsO/3.png new file mode 100644 index 0000000000000000000000000000000000000000..9e1fe0f8825d93fd795a2b25b07a4b2d9745b470 --- /dev/null +++ b/vlm/dev/u03xn1COsO/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15f5704c076de9daf9c0432fb8b159b6685fd60be635374a2531a3e60bcc0212 +size 861656 diff --git a/vlm/dev/u03xn1COsO/30.png b/vlm/dev/u03xn1COsO/30.png new file mode 100644 index 0000000000000000000000000000000000000000..c6dce93f79312da38a2f843da9f66a6418482557 --- /dev/null +++ b/vlm/dev/u03xn1COsO/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53eb797885b9a0f4394aa0ac6fbc96cd3fad614b13b793b3b456f367ed255507 +size 441482 diff --git a/vlm/dev/u03xn1COsO/31.png b/vlm/dev/u03xn1COsO/31.png new file mode 100644 index 0000000000000000000000000000000000000000..e1cc5874610ffcd86631ea1968b5c9e00828a3dc --- /dev/null +++ b/vlm/dev/u03xn1COsO/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c10eeea1119af06aac091fc60e8e528c0ad20b0b45c493e994910f26ee566d07 +size 171031 diff --git a/vlm/dev/u03xn1COsO/32.png b/vlm/dev/u03xn1COsO/32.png new file mode 100644 index 0000000000000000000000000000000000000000..0c85c0c76a84d0daad4ab2303f07e484f6c27cbc --- /dev/null +++ b/vlm/dev/u03xn1COsO/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba1c8514eec766b2c5fca0a01aa8ffab3d4ae66445c8e2729d739ca0714da4c2 +size 276019 diff --git a/vlm/dev/u03xn1COsO/33.png b/vlm/dev/u03xn1COsO/33.png new file mode 100644 index 0000000000000000000000000000000000000000..4a9898a88eeadc969233f816b836c00542998ed4 --- /dev/null +++ b/vlm/dev/u03xn1COsO/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf79da9f7157a86bca8f5763f8b3a1f139be05c2eba621a72427318e7ee1b471 +size 454620 diff --git a/vlm/dev/u03xn1COsO/34.png b/vlm/dev/u03xn1COsO/34.png new file mode 100644 index 0000000000000000000000000000000000000000..6ed6396d7d4644136fdba522b9145c2dab96073c --- /dev/null +++ b/vlm/dev/u03xn1COsO/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6e0882d272411674cdf84334b8d577e7b97355640260df4c2b44016b2320485 +size 509023 diff --git a/vlm/dev/u03xn1COsO/35.png b/vlm/dev/u03xn1COsO/35.png new file mode 100644 index 0000000000000000000000000000000000000000..71a6995b1df54c6d3ece88beca1494ef2136be58 --- /dev/null +++ b/vlm/dev/u03xn1COsO/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:574886b9c60991d9fdfbc95e530abd26cb60a715927d331c99c4f134c328ea66 +size 563492 diff --git a/vlm/dev/u03xn1COsO/36.png b/vlm/dev/u03xn1COsO/36.png new file mode 100644 index 0000000000000000000000000000000000000000..3c1d132292967bb14173d95243dc064b8566c912 --- /dev/null +++ b/vlm/dev/u03xn1COsO/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64e99d934504a8e6856b060e43f8a8094571e05ec884ac391793308b4473bea9 +size 516662 diff --git a/vlm/dev/u03xn1COsO/37.png b/vlm/dev/u03xn1COsO/37.png new file mode 100644 index 0000000000000000000000000000000000000000..53a2e1e98712ab826fd65eb8f16cf55868fbd2a8 --- /dev/null +++ b/vlm/dev/u03xn1COsO/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57e276db2301b3322d7ec7a0e4bffc3dfe9be1596151841f7a78250bfe5882ff +size 504328 diff --git a/vlm/dev/u03xn1COsO/38.png b/vlm/dev/u03xn1COsO/38.png new file mode 100644 index 0000000000000000000000000000000000000000..5bac3dca9470915335f531c6b645188170ac8eff --- /dev/null +++ b/vlm/dev/u03xn1COsO/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9738ba69fc5371bfec9408721ca24e5d9a70b5d48a81af067e1833f9150f1403 +size 503649 diff --git a/vlm/dev/u03xn1COsO/39.png b/vlm/dev/u03xn1COsO/39.png new file mode 100644 index 0000000000000000000000000000000000000000..c33c19bb698cf520bb08bc832f128cea66178a4d --- /dev/null +++ b/vlm/dev/u03xn1COsO/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0110c6ef1f9dfe0e341ecc58b348ef5c8cba4d31985e1a745aa678ad5ab0ab4 +size 346760 diff --git a/vlm/dev/u03xn1COsO/4.png b/vlm/dev/u03xn1COsO/4.png new file mode 100644 index 0000000000000000000000000000000000000000..6ea42c158a0a1865d5e448f1a1ec35c1c2b382f5 --- /dev/null +++ b/vlm/dev/u03xn1COsO/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:573bf89d02aa93e0f56cef9d326741468c6e10b1f30e2c1f764cb3ceb86756bd +size 658352 diff --git a/vlm/dev/u03xn1COsO/40.png b/vlm/dev/u03xn1COsO/40.png new file mode 100644 index 0000000000000000000000000000000000000000..4d136f0f4a9d6bef7b5fae594f2eb40b2a8c5fa8 --- /dev/null +++ b/vlm/dev/u03xn1COsO/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:723aedc9f826bafedeeb991b9aeb2d84db898d5a90a245f5fc55f2a2f6d86aca +size 376315 diff --git a/vlm/dev/u03xn1COsO/41.png b/vlm/dev/u03xn1COsO/41.png new file mode 100644 index 0000000000000000000000000000000000000000..f4ce41f95223cb486c01a2d1edf6d45b0bd939ea --- /dev/null +++ b/vlm/dev/u03xn1COsO/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdb2577a03032e757bfcc71ca1839e4a6a067470dcdc630b658911d19d329a89 +size 395329 diff --git a/vlm/dev/u03xn1COsO/42.png b/vlm/dev/u03xn1COsO/42.png new file mode 100644 index 0000000000000000000000000000000000000000..f46907efaeea18ac6875095e84c0d9a558fb9ac7 --- /dev/null +++ b/vlm/dev/u03xn1COsO/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:296a28d29afca69cfcc4a4da6be8a03b6ea01d24a6674f8c070e438653f483bc +size 478591 diff --git a/vlm/dev/u03xn1COsO/43.png b/vlm/dev/u03xn1COsO/43.png new file mode 100644 index 0000000000000000000000000000000000000000..5a83cc122fd0ddeadaae6bb1ee35e4faafda80a2 --- /dev/null +++ b/vlm/dev/u03xn1COsO/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06072e295caf16aef99a20405f365b2dc64919dafc684487b5989a389e3b0155 +size 474258 diff --git a/vlm/dev/u03xn1COsO/44.png b/vlm/dev/u03xn1COsO/44.png new file mode 100644 index 0000000000000000000000000000000000000000..56925eaf5ab16fe7a443b28f69c0ef62578f75c0 --- /dev/null +++ b/vlm/dev/u03xn1COsO/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6469a2cf2772a9757d05443a93afb1295f7983d2e40f246a7fd1efae6cbb8c97 +size 325824 diff --git a/vlm/dev/u03xn1COsO/45.png b/vlm/dev/u03xn1COsO/45.png new file mode 100644 index 0000000000000000000000000000000000000000..97bbc05884058a954bfe02cc02923c9bdd87e4a3 --- /dev/null +++ b/vlm/dev/u03xn1COsO/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe333c8786b0a62078ad47df8087f941049c762c9c145632d6b2f3bf1abd23a +size 386215 diff --git a/vlm/dev/u03xn1COsO/5.png b/vlm/dev/u03xn1COsO/5.png new file mode 100644 index 0000000000000000000000000000000000000000..73ef07d1fa8b12bebb81d797eec3fc6c4552a3a9 --- /dev/null +++ b/vlm/dev/u03xn1COsO/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc7514a21e8f4951430a94ade0e4c58fc8123e963835eb04b4ade7e46bab313 +size 654992 diff --git a/vlm/dev/u03xn1COsO/6.png b/vlm/dev/u03xn1COsO/6.png new file mode 100644 index 0000000000000000000000000000000000000000..9867fc73ce668cbfaf43a431aa2ab1df539cea04 --- /dev/null +++ b/vlm/dev/u03xn1COsO/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f71ac7d0180655ca66b2e5d25aa0976e4a53ece3324451fa8ebf26cf31d74594 +size 774171 diff --git a/vlm/dev/u03xn1COsO/7.png b/vlm/dev/u03xn1COsO/7.png new file mode 100644 index 0000000000000000000000000000000000000000..75553e78937a6f8cebfbc792d13cebd3fcbd922e --- /dev/null +++ b/vlm/dev/u03xn1COsO/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e01039e0058010463e698c89a29c3e6c1c5cc80aa5342bdb16a7ded554b19848 +size 689794 diff --git a/vlm/dev/u03xn1COsO/8.png b/vlm/dev/u03xn1COsO/8.png new file mode 100644 index 0000000000000000000000000000000000000000..a3959baaa15fce9fe23b669e4f27354080441e03 --- /dev/null +++ b/vlm/dev/u03xn1COsO/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a491193f4ae65ef375ee8d69cdb47e91d7fca8987d1279a9fac99dc94987152 +size 724645 diff --git a/vlm/dev/u03xn1COsO/9.png b/vlm/dev/u03xn1COsO/9.png new file mode 100644 index 0000000000000000000000000000000000000000..d845cee1ebf37f8145d544eb81caf8f5664caa51 --- /dev/null +++ b/vlm/dev/u03xn1COsO/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6acca7c4821df3d513f3791fe9bb191058036d8d1d20928d2bbbecbf5e35dc50 +size 939319 diff --git a/vlm/dev/uCXNOeL0TG/0.png b/vlm/dev/uCXNOeL0TG/0.png new file mode 100644 index 0000000000000000000000000000000000000000..9c2517edbd04db08a18c63b8ead6eb6f931c7554 --- /dev/null +++ b/vlm/dev/uCXNOeL0TG/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce06f5d414affb8f34cb8fd1e06fb40e619b6de1fad98068c890f1f2dc4fca9e +size 464621 diff --git a/vlm/dev/uCXNOeL0TG/1.png b/vlm/dev/uCXNOeL0TG/1.png new file mode 100644 index 0000000000000000000000000000000000000000..5afe8038065bed60b757bc05097d62c6eede6b3d --- /dev/null +++ b/vlm/dev/uCXNOeL0TG/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2089289e1ed9df70e9275dcdf1fb35c2a6b6dc51a6a85903477067b29965d3a +size 645095 diff --git a/vlm/dev/uCXNOeL0TG/10.png b/vlm/dev/uCXNOeL0TG/10.png new file mode 100644 index 0000000000000000000000000000000000000000..ab44f96ad70d7f6f685f173777aa2be1f2402e54 --- /dev/null +++ b/vlm/dev/uCXNOeL0TG/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:755bc116d2fa909731b8255098981bd6d16afe091a84e14c9641e1e068712ae0 +size 460537 diff --git a/vlm/dev/uCXNOeL0TG/2.png b/vlm/dev/uCXNOeL0TG/2.png new file mode 100644 index 0000000000000000000000000000000000000000..53a688cb9bb1545cc28cb412d25a87aed9ec6c83 --- /dev/null +++ b/vlm/dev/uCXNOeL0TG/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2df9d6b31372abbce5bf38d0c5527c7370e00218d2e879836dbcd5ed7dc508b +size 477023 diff --git a/vlm/dev/uCXNOeL0TG/3.png b/vlm/dev/uCXNOeL0TG/3.png new file mode 100644 index 0000000000000000000000000000000000000000..f6069ac67ea95daee8057a45c5bd2b98c26e8de5 --- /dev/null +++ b/vlm/dev/uCXNOeL0TG/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b385061fc113c80ead3dd362145578128f78645fb928670de571466d7f5b55e +size 482766 diff --git a/vlm/dev/uCXNOeL0TG/4.png b/vlm/dev/uCXNOeL0TG/4.png new file mode 100644 index 0000000000000000000000000000000000000000..96596f44b53dde06b319ef15bf0a5df85072f7d0 --- /dev/null +++ b/vlm/dev/uCXNOeL0TG/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6123054c04ec00b1dadcf07bf73ca5ebb2c48d0283b088d5b4573ac65ac13755 +size 646031 diff --git a/vlm/dev/uCXNOeL0TG/5.png b/vlm/dev/uCXNOeL0TG/5.png new file mode 100644 index 0000000000000000000000000000000000000000..2eb34abc8d44995cd64b88e1cfc2220404a55ae8 --- /dev/null +++ b/vlm/dev/uCXNOeL0TG/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0460fee0c12c1a19a002516d995aa6d12f8af10fe3730e0aa66213e9be059fe +size 584563 diff --git a/vlm/dev/uCXNOeL0TG/6.png b/vlm/dev/uCXNOeL0TG/6.png new file mode 100644 index 0000000000000000000000000000000000000000..555c754d739de52c21a9345383cc81a77daaa272 --- /dev/null +++ b/vlm/dev/uCXNOeL0TG/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a90fd9c67241f14a6109ff6fb629e3b0348ee35bca6b63eba91f5608598e766e +size 498938 diff --git a/vlm/dev/uCXNOeL0TG/7.png b/vlm/dev/uCXNOeL0TG/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a468d853c9496b4c82bd7598539d092c58603e85 --- /dev/null +++ b/vlm/dev/uCXNOeL0TG/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00d23cd60fc92604a304a4ea3ff6944d85f14f90ccacfd667aa453d84eb7f356 +size 635550 diff --git a/vlm/dev/uCXNOeL0TG/8.png b/vlm/dev/uCXNOeL0TG/8.png new file mode 100644 index 0000000000000000000000000000000000000000..8f5d16043d7ffd217ad7bf4cfd60c16edee08038 --- /dev/null +++ b/vlm/dev/uCXNOeL0TG/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bd5e4a826afca8b5f0c835488dd51d0349e1b35719bf14a7fa01e2dfb48fe1e +size 411468 diff --git a/vlm/dev/uCXNOeL0TG/9.png b/vlm/dev/uCXNOeL0TG/9.png new file mode 100644 index 0000000000000000000000000000000000000000..bde5d5b4dc8b7a4be945b2c3719f7076d852318d --- /dev/null +++ b/vlm/dev/uCXNOeL0TG/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91a6fb1f0392d5860d107e6c9e76028c48e217805a5a72032328686423d7f23 +size 569992 diff --git a/vlm/dev/uloenYmLCAo/0.png b/vlm/dev/uloenYmLCAo/0.png new file mode 100644 index 0000000000000000000000000000000000000000..8fad4c902f4336321e20fa4b2801074f70eaefb3 --- /dev/null +++ b/vlm/dev/uloenYmLCAo/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c855f5c4845a8fcc9854cfc88b4f5b849e9e116943e5fa11e6c0fdc3fcec556 +size 434856 diff --git a/vlm/dev/uloenYmLCAo/1.png b/vlm/dev/uloenYmLCAo/1.png new file mode 100644 index 0000000000000000000000000000000000000000..5d5e0bb4991b6a6b3fefb535a8f34afe57bf0d72 --- /dev/null +++ b/vlm/dev/uloenYmLCAo/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d764c97553aa7a726b26826382523d56708943ab52c9b2805956eedb37be7bec +size 505139 diff --git a/vlm/dev/uloenYmLCAo/10.png b/vlm/dev/uloenYmLCAo/10.png new file mode 100644 index 0000000000000000000000000000000000000000..e6be023be45489835114b0af6b04aa5d346388af --- /dev/null +++ b/vlm/dev/uloenYmLCAo/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9895d9e16011b6419b9966703a01b638de2cfe986af8a81aa4cfe3d5e7cf556d +size 513889 diff --git a/vlm/dev/uloenYmLCAo/11.png b/vlm/dev/uloenYmLCAo/11.png new file mode 100644 index 0000000000000000000000000000000000000000..bc0029c733272fe6346897906660889381039061 --- /dev/null +++ b/vlm/dev/uloenYmLCAo/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ba918e348ba6e6b7749ac6f1af836308639b4dfdd8a1c8dff20fe26d937d931 +size 498594 diff --git a/vlm/dev/uloenYmLCAo/12.png b/vlm/dev/uloenYmLCAo/12.png new file mode 100644 index 0000000000000000000000000000000000000000..7f15371ae6e6a54bf9f4c3469c836810dd9e2cd7 --- /dev/null +++ b/vlm/dev/uloenYmLCAo/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2ae8d87407564eb3680fc5a4b7bdaf74596ac4281de1059abbec1041df7b9e4 +size 518668 diff --git a/vlm/dev/uloenYmLCAo/13.png b/vlm/dev/uloenYmLCAo/13.png new file mode 100644 index 0000000000000000000000000000000000000000..001735caea25f04d395a5e18d16bbfde1d2b3df0 --- /dev/null +++ b/vlm/dev/uloenYmLCAo/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfe3b931ae825e252ff9ab69d50a49bd2cfa223b8d9bda24b3266d89b397593f +size 309394 diff --git a/vlm/dev/uloenYmLCAo/2.png b/vlm/dev/uloenYmLCAo/2.png new file mode 100644 index 0000000000000000000000000000000000000000..107e8a56e65d413f1dc0ec57418939c796363398 --- /dev/null +++ b/vlm/dev/uloenYmLCAo/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56308ef873872ed53da878f0afdcc658383a174f4ee55cab2010ad83ba8f5b4b +size 429454 diff --git a/vlm/dev/uloenYmLCAo/3.png b/vlm/dev/uloenYmLCAo/3.png new file mode 100644 index 0000000000000000000000000000000000000000..c99ee3e48edcc43257b042bb2672da61b03dde10 --- /dev/null +++ b/vlm/dev/uloenYmLCAo/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a93b22d8a131c5648355c2f160ac095884a5a9eaae72f9baf0f6583e73684c08 +size 559028 diff --git a/vlm/dev/uloenYmLCAo/4.png b/vlm/dev/uloenYmLCAo/4.png new file mode 100644 index 0000000000000000000000000000000000000000..1bfc233f7005e378563455f661ba0aaa504fdcdd --- /dev/null +++ b/vlm/dev/uloenYmLCAo/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c0c8b0f7ccd4b1a1f8c7cc91341c6ab762e0d7465c1a6e5264a1b8f53293c49 +size 474710 diff --git a/vlm/dev/uloenYmLCAo/5.png b/vlm/dev/uloenYmLCAo/5.png new file mode 100644 index 0000000000000000000000000000000000000000..0adadfc75bd843c861e2f2b5b6098983317c626f --- /dev/null +++ b/vlm/dev/uloenYmLCAo/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd27d42ce1809a0fc2fc56cce0c151c2ddfc3ada9ca0bbb55a0893c3e26fded2 +size 442426 diff --git a/vlm/dev/uloenYmLCAo/6.png b/vlm/dev/uloenYmLCAo/6.png new file mode 100644 index 0000000000000000000000000000000000000000..7f5c06475267da4a1026bb739799aa0b06585c1c --- /dev/null +++ b/vlm/dev/uloenYmLCAo/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cb59b711b3319933877b39dbbed2de2c7341ac7ed2b9504fdc244a15f9af969 +size 536044 diff --git a/vlm/dev/uloenYmLCAo/7.png b/vlm/dev/uloenYmLCAo/7.png new file mode 100644 index 0000000000000000000000000000000000000000..cd646f4763f35cf2a1fe7948a7b9e917da82891d --- /dev/null +++ b/vlm/dev/uloenYmLCAo/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12e85f779cc60ea1c7e27d800b9a08b2bfc3669774d1f19d4ba8ecd529d9ca2b +size 472969 diff --git a/vlm/dev/uloenYmLCAo/8.png b/vlm/dev/uloenYmLCAo/8.png new file mode 100644 index 0000000000000000000000000000000000000000..c207dcd8cbfd6558f23d3765425ed34ee4e90e81 --- /dev/null +++ b/vlm/dev/uloenYmLCAo/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:492429509f43ca85468ae72241268bdeae653244b0fd7b784aa034d053bdac7b +size 513171 diff --git a/vlm/dev/uloenYmLCAo/9.png b/vlm/dev/uloenYmLCAo/9.png new file mode 100644 index 0000000000000000000000000000000000000000..fd0af198f1d9be99fb1aaa7b77bc176979f2a46e --- /dev/null +++ b/vlm/dev/uloenYmLCAo/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f90453bba7cc70085e2c2d6f4eab87fcae17fc8192a4c7e15d1a0e4808ae4abb +size 527771 diff --git a/vlm/dev/vhFu1Acb0xb/0.png b/vlm/dev/vhFu1Acb0xb/0.png new file mode 100644 index 0000000000000000000000000000000000000000..4b1a9fbf30618cc36f4063bf3c5093687a869369 --- /dev/null +++ b/vlm/dev/vhFu1Acb0xb/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8230a65f5525bb622ca013e908f9d9cf8143f87b99e558e600df62d4f38ca4c6 +size 538868 diff --git a/vlm/dev/vhFu1Acb0xb/1.png b/vlm/dev/vhFu1Acb0xb/1.png new file mode 100644 index 0000000000000000000000000000000000000000..a32eeb7e4d3564cfb86c27dc6bcd257a7195df88 --- /dev/null +++ b/vlm/dev/vhFu1Acb0xb/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3671b8a716601c6c49f20bcc2659e3e511d52b94488529c4ccc608a126a4eec +size 474541 diff --git a/vlm/dev/vhFu1Acb0xb/10.png b/vlm/dev/vhFu1Acb0xb/10.png new file mode 100644 index 0000000000000000000000000000000000000000..2916868aae94fd874bf322347cbbcfcf6f112562 --- /dev/null +++ b/vlm/dev/vhFu1Acb0xb/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93cfea186e4d0591000edb48c770bbc41bbf9690ced83592fc67ea02fe2ecfde +size 549039 diff --git a/vlm/dev/vhFu1Acb0xb/11.png b/vlm/dev/vhFu1Acb0xb/11.png new file mode 100644 index 0000000000000000000000000000000000000000..b4b9a27ce52f7e056cfc0d5304bc8b0705b00e25 --- /dev/null +++ b/vlm/dev/vhFu1Acb0xb/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d8e95451b25e355deea326371c0b2c42b097fb0fe4e3062eda400ee384b7869 +size 593300 diff --git a/vlm/dev/vhFu1Acb0xb/14.png b/vlm/dev/vhFu1Acb0xb/14.png new file mode 100644 index 0000000000000000000000000000000000000000..03939fa54ea4a3019751bb7a798958dd408b2bac --- /dev/null +++ b/vlm/dev/vhFu1Acb0xb/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:570732316ecf7493cb25e83676402287a40302a077fd319f4dce708f57858447 +size 296197 diff --git a/vlm/dev/vhFu1Acb0xb/15.png b/vlm/dev/vhFu1Acb0xb/15.png new file mode 100644 index 0000000000000000000000000000000000000000..eaecd43c53a97323e8221cd59975742094625d20 --- /dev/null +++ b/vlm/dev/vhFu1Acb0xb/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49432796fe9b051e424636bf6d58e2d22cbb5a590eef5a7485cd4fa0f268f5a6 +size 258980 diff --git a/vlm/dev/vhFu1Acb0xb/17.png b/vlm/dev/vhFu1Acb0xb/17.png new file mode 100644 index 0000000000000000000000000000000000000000..45456f81850c1d7bbb1460e75443a4403099009b --- /dev/null +++ b/vlm/dev/vhFu1Acb0xb/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b392b60fdc38d1f241a0e1ea963f71f83384a827a98488bd7fa5d053d03f67f +size 256250 diff --git a/vlm/dev/vhFu1Acb0xb/2.png b/vlm/dev/vhFu1Acb0xb/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7ec6d56ee2f0abcabc2280377fc47c4d872a6195 --- /dev/null +++ b/vlm/dev/vhFu1Acb0xb/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04b6e9178872da11af96af5d715c0ccc753174fe841642a6c559c6bed03228a5 +size 596107 diff --git a/vlm/dev/vhFu1Acb0xb/3.png b/vlm/dev/vhFu1Acb0xb/3.png new file mode 100644 index 0000000000000000000000000000000000000000..e5f42feaaf532d7db19e4de824561fa20bbcccf3 --- /dev/null +++ b/vlm/dev/vhFu1Acb0xb/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32e3830abb26e9f3813d56f65726539b66108f102de706c76cfdde4aa4571da7 +size 452344 diff --git a/vlm/dev/vhFu1Acb0xb/5.png b/vlm/dev/vhFu1Acb0xb/5.png new file mode 100644 index 0000000000000000000000000000000000000000..c7246b21c8f5803e38dd6a16b0db058a4359eed3 --- /dev/null +++ b/vlm/dev/vhFu1Acb0xb/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f35c02cba0f2e4038db4a118c6082fa4102f987449308edf07d678ecc15ecd89 +size 602168 diff --git a/vlm/dev/vhFu1Acb0xb/6.png b/vlm/dev/vhFu1Acb0xb/6.png new file mode 100644 index 0000000000000000000000000000000000000000..16bfce4c05ba329a2da609304f7a896fc62e7d75 --- /dev/null +++ b/vlm/dev/vhFu1Acb0xb/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ded1678b14e993900d87d21b9613d755fa278c5ee5e805704f7cb737081d1e1 +size 408612 diff --git a/vlm/dev/vhFu1Acb0xb/9.png b/vlm/dev/vhFu1Acb0xb/9.png new file mode 100644 index 0000000000000000000000000000000000000000..c3094a96e7c149945511e72d07e3b8cb5a3e2ffb --- /dev/null +++ b/vlm/dev/vhFu1Acb0xb/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3388da124197c73139f9dd50a6bdc23b262f449c9dc4defa1051d38d0d52865 +size 248129